From c2affb00ff404613f45b51cd97b50773982fde5f Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 11 Nov 2022 15:47:19 +0100 Subject: Minor changes --- simulations/.gitignore | 8 + simulations/Makefile | 19 + simulations/README.md | 17 + simulations/libs/setup.sh | 12 + simulations/parser.awk | 63 + simulations/results/180sec.pdf | Bin 0 -> 10343 bytes simulations/results/60sec.pdf | Bin 0 -> 10611 bytes simulations/results/CCGrid2021_paper_250.pdf | Bin 0 -> 251744 bytes simulations/results/analysis.R | 148 + simulations/results/analysis2.R | 167 + simulations/results/avgDataTimeRcv.png | Bin 0 -> 76308 bytes simulations/results/ccgrid.csv | 17 + simulations/results/energy-180sec.png | Bin 0 -> 198488 bytes simulations/results/energy-60sec.png | Bin 0 -> 192889 bytes simulations/results/energy.png | Bin 0 -> 257803 bytes simulations/results/err_rcv_accuptime.png | Bin 0 -> 122047 bytes simulations/results/err_receiver_energy.png | Bin 0 -> 118194 bytes simulations/results/err_sender_accuptime.png | Bin 0 -> 163377 bytes simulations/results/err_sender_energy.png | Bin 0 -> 138912 bytes simulations/results/nWakeUpRcv.png | Bin 0 -> 78750 bytes simulations/results/nWakeUpSender.png | Bin 0 -> 81978 bytes simulations/results/paper.sh | 134 + simulations/results/paper_.sh | 89 + simulations/results/results.csv | 41614 ++++++++++++++++ simulations/results/scenarios/baseline.json | 58 + simulations/results/scenarios/extended.json | 58 + simulations/results/scenarios/hint.json | 58 + simulations/results/scenarios/hint_extended.json | 58 + simulations/results/scenarios/scenario.sh | 52 + simulations/results/scheduler/a.png | Bin 0 -> 199953 bytes simulations/results/scheduler/analysis.sh | 18 + simulations/results/scheduler/data.awk | 15 + simulations/results/scheduler/data.csv | 13 + simulations/results/scheduler/hint.awk | 15 + simulations/results/scheduler/hint.csv | 18 + simulations/results/scheduler/hint_fw.awk | 15 + simulations/results/scheduler/hint_fw.csv | 12 + simulations/results/scheduler/j | 54358 ++++++++++++++++++++ simulations/results/scheduler/j2 | 54364 +++++++++++++++++++++ simulations/results/scheduler/log.txt | 54348 ++++++++++++++++++++ simulations/results/scheduler/wakeup.R | 65 + simulations/results/scheduler/wakeup.awk | 43 + simulations/results/scheduler/wakeup.csv | 326 + simulations/results/success-180sec.png | Bin 0 -> 78377 bytes simulations/results/success-60sec.png | Bin 0 -> 78347 bytes simulations/results/success.png | Bin 0 -> 177781 bytes simulations/results/tables-energy.org | 33 + simulations/results/tables-stats.org | 33 + simulations/scenarios | Bin 0 -> 107064 bytes simulations/src/Inputs.cc | 184 + simulations/src/Inputs.hpp | 84 + simulations/src/scenarios.cc | 100 + simulations/src/simulator.cc | 354 + 53 files changed, 206970 insertions(+) create mode 100644 simulations/.gitignore create mode 100644 simulations/Makefile create mode 100644 simulations/README.md create mode 100755 simulations/libs/setup.sh create mode 100755 simulations/parser.awk create mode 100644 simulations/results/180sec.pdf create mode 100644 simulations/results/60sec.pdf create mode 100644 simulations/results/CCGrid2021_paper_250.pdf create mode 100644 simulations/results/analysis.R create mode 100644 simulations/results/analysis2.R create mode 100644 simulations/results/avgDataTimeRcv.png create mode 100644 simulations/results/ccgrid.csv create mode 100644 simulations/results/energy-180sec.png create mode 100644 simulations/results/energy-60sec.png create mode 100644 simulations/results/energy.png create mode 100644 simulations/results/err_rcv_accuptime.png create mode 100644 simulations/results/err_receiver_energy.png create mode 100644 simulations/results/err_sender_accuptime.png create mode 100644 simulations/results/err_sender_energy.png create mode 100644 simulations/results/nWakeUpRcv.png create mode 100644 simulations/results/nWakeUpSender.png create mode 100755 simulations/results/paper.sh create mode 100755 simulations/results/paper_.sh create mode 100644 simulations/results/results.csv create mode 100644 simulations/results/scenarios/baseline.json create mode 100644 simulations/results/scenarios/extended.json create mode 100644 simulations/results/scenarios/hint.json create mode 100644 simulations/results/scenarios/hint_extended.json create mode 100755 simulations/results/scenarios/scenario.sh create mode 100644 simulations/results/scheduler/a.png create mode 100755 simulations/results/scheduler/analysis.sh create mode 100755 simulations/results/scheduler/data.awk create mode 100644 simulations/results/scheduler/data.csv create mode 100755 simulations/results/scheduler/hint.awk create mode 100644 simulations/results/scheduler/hint.csv create mode 100755 simulations/results/scheduler/hint_fw.awk create mode 100644 simulations/results/scheduler/hint_fw.csv create mode 100644 simulations/results/scheduler/j create mode 100644 simulations/results/scheduler/j2 create mode 100644 simulations/results/scheduler/log.txt create mode 100644 simulations/results/scheduler/wakeup.R create mode 100755 simulations/results/scheduler/wakeup.awk create mode 100644 simulations/results/scheduler/wakeup.csv create mode 100644 simulations/results/success-180sec.png create mode 100644 simulations/results/success-60sec.png create mode 100644 simulations/results/success.png create mode 100644 simulations/results/tables-energy.org create mode 100644 simulations/results/tables-stats.org create mode 100755 simulations/scenarios create mode 100644 simulations/src/Inputs.cc create mode 100644 simulations/src/Inputs.hpp create mode 100644 simulations/src/scenarios.cc create mode 100644 simulations/src/simulator.cc (limited to 'simulations') diff --git a/simulations/.gitignore b/simulations/.gitignore new file mode 100644 index 0000000..d564e43 --- /dev/null +++ b/simulations/.gitignore @@ -0,0 +1,8 @@ +simulator +libs/simgrid +libs/rapidjson +compile_commands.json +platform.xml +./scenarios +inputs.json +results/logs diff --git a/simulations/Makefile b/simulations/Makefile new file mode 100644 index 0000000..3ed792d --- /dev/null +++ b/simulations/Makefile @@ -0,0 +1,19 @@ +EXEC := simulator +LIBS := ./libs/simgrid/build/lib +INCLUDES := ./libs/simgrid/build/include ./libs/simgrid/include libs/rapidjson/include +SCENARIOS := src/scenarios.cc +CC := g++ $(addprefix -L , $(LIBS)) $(addprefix -I , $(INCLUDES)) + +all: $(EXEC) $(basename $(notdir $(SCENARIOS))) + +$(EXEC): $(filter-out $(SCENARIOS), $(wildcard src/*)) + $(CC) -lsimgrid $^ -o $@ + +$(basename $(notdir $(SCENARIOS))): $(SCENARIOS) + $(CC) $^ -o $@ + +run: $(EXEC) + export LD_LIBRARY_PATH=$(addprefix :, $(LIBS)) && ./$(EXEC) 10 --cfg=network/bandwidth-factor:1.05 --cfg=network/model:CM02 -–cfg=network/crosstraffic:0 + +clean: + -rm $(EXEC) $(basename $(notdir $(SCENARIOS))) \ No newline at end of file diff --git a/simulations/README.md b/simulations/README.md new file mode 100644 index 0000000..627c787 --- /dev/null +++ b/simulations/README.md @@ -0,0 +1,17 @@ +# Impact of loosely coupled data dissemination policies for resource challenged environements + +### Setup +- First you need [Boost](https://www.boost.org/) +- From the project root folder run `cd ./libs && ./setup.sh && cd -` +- And `make` +- If the project compiles successfully, you are ready to run the simulations! +### Paper's Simulations +- To run all the simulations presented in the paper simply run `./results/paper.sh` +this will create the file `results/results.csv` containing all the results. This will also create an +`inputs.json` that you can modify at your convenience +### Simulations +- The file `inputs.json` controls the inputs to the simulator. You should only care about this file +if you want custom simulations +- To run the simulation just run `make run` This will also generate a file called `platform.xml` corresponding to the simulated platform +- To generate a *csv* output from the simulation results you can use: + `make run 2>&1|./parser.awk` diff --git a/simulations/libs/setup.sh b/simulations/libs/setup.sh new file mode 100755 index 0000000..395a11e --- /dev/null +++ b/simulations/libs/setup.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +set -e + +[ ! -e "simgrid" ] && git clone https://framagit.org/simgrid/simgrid +[ ! -e "rapidjson"] && git clone https://github.com/Tencent/rapidjson + +cd simgrid +mkdir -p build +cd build +cmake ../ +make -j4 diff --git a/simulations/parser.awk b/simulations/parser.awk new file mode 100755 index 0000000..f146bfd --- /dev/null +++ b/simulations/parser.awk @@ -0,0 +1,63 @@ +#!/usr/bin/awk -f + +BEGIN { + RS="\n" + FS=" " + CSV_HEADER="" + CSV_DATA="" + # ENERGY created below +} + +/LOG2PARSE/{ + # First extract what we need + split($0,fields," ") + to_parse=fields[8] + gsub(/\[LOG2PARSE\]\(/,"",to_parse) + gsub(/\)/,"",to_parse) + split(to_parse,tokens,"|") + + # Check if we have to build the csv header + if(CSV_HEADER==""){ + for(i = 1; i<=length(tokens);i++){ + split(tokens[i],h,":") + if(CSV_HEADER=="") + CSV_HEADER=h[1] + else + CSV_HEADER=CSV_HEADER","h[1] + } + } + + # Build a row + row="" + for(i = 1; i<=length(tokens);i++){ + split(tokens[i],h,":") + if(row=="") + row=h[2] + else + row=row","h[2] + } + + # Add the row to the csv data + if(CSV_DATA=="") + CSV_DATA=row + else + CSV_DATA=CSV_DATA"\n"row +} + + +/\[surf_energy\/INFO\] Energy/ { + $7=substr($7, 1, length($7)-1) + ENERGY[$7]=$8 +} + + +END { + print(CSV_HEADER",energy"); + + # Print data and add up energy values + split(CSV_DATA,rows, "\n") + for(i=1;i<=length(rows);i++){ + split(rows[i],fields, ",") + print(rows[i]","ENERGY[fields[1]]) + } +} \ No newline at end of file diff --git a/simulations/results/180sec.pdf b/simulations/results/180sec.pdf new file mode 100644 index 0000000..aeeaa76 Binary files /dev/null and b/simulations/results/180sec.pdf differ diff --git a/simulations/results/60sec.pdf b/simulations/results/60sec.pdf new file mode 100644 index 0000000..38da5ac Binary files /dev/null and b/simulations/results/60sec.pdf differ diff --git a/simulations/results/CCGrid2021_paper_250.pdf b/simulations/results/CCGrid2021_paper_250.pdf new file mode 100644 index 0000000..2a8cf80 Binary files /dev/null and b/simulations/results/CCGrid2021_paper_250.pdf differ diff --git a/simulations/results/analysis.R b/simulations/results/analysis.R new file mode 100644 index 0000000..362ad49 --- /dev/null +++ b/simulations/results/analysis.R @@ -0,0 +1,148 @@ +library("tidyverse") +library("knitr") + +data=read_csv("results.csv") +ccgrid=read_csv("ccgrid.csv") + + +r_=function(x){round(x,digits=2)} + +finalEnergy=data%>%group_by(simkey,wireless,wakeupfor)%>%summarize(wireless=first(wireless),sd=sd(energy),wakeupfor=first(wakeupfor),energy=mean(energy)) +#finalStats=data%>%group_by(simkey,wireless,wakeupfor,seed)%>% + # summarise(success=sum(nSend))%>% + # ungroup()%>%group_by(simkey,wireless,wakeupfor)%>% + # summarise(sd_success=sd(success),success=mean(success)) + +# Success +finalStats=data%>%filter(isSender!=0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(sd_success=sd(nSend),success=mean(nSend)) + +# Hint Added +#hintAdded=data%>%filter(isSender==0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(hint_added=mean(hint_added)) +#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),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")) + +# J per success +finalStats=finalStats%>%mutate(senderJPS=senderEnergy/success) +finalStats=finalStats%>%mutate(receiverJPS=receiverEnergy/success) + +# Uptime +senderUptime=data%>%filter(isSender!=0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(senderUptime=mean(totalUptime)) +receiverUptime=data%>%filter(isSender==0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(receiverUptime=mean(totalUptime)) +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)) +finalStats=finalStats%>%mutate(receiverEnergy_err=abs(r_((receiverEnergy-receiverEnergy_ccgrid)/receiverEnergy)*100)) +finalStats=finalStats%>%mutate(senderUptime_err=abs(r_((senderUptime-senderUptime_ccgrid)/senderUptime)*100)) +finalStats=finalStats%>%mutate(receiverUptime_err=abs(r_((receiverUptime-receiverUptime_ccgrid)/receiverUptime)*100)) + +# Add nSendFail to stats +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) + +ggplot(finalStats,aes(x=simkey,receiverEnergy_err,color=wireless,group=wireless))+geom_point()+geom_line()+facet_wrap(~wakeupfor)+xlab("Scenarios") + ylab("Receiver Energy Relative Error (%)") + expand_limits(x = 0, y = 0) +ggsave("err_receiver_energy.png",width=7,height = 5) + +ggplot(finalStats,aes(x=simkey,senderUptime_err,color=wireless,group=wireless))+geom_point()+geom_line()+facet_wrap(~wakeupfor)+xlab("Scenarios") + ylab("Sender AccUptime Energy Relative Error (%)") + expand_limits(x = 0, y = 0) +ggsave("err_sender_accuptime.png",width=7,height = 5) + +ggplot(finalStats,aes(x=simkey,receiverUptime_err,color=wireless,group=wireless))+geom_point()+geom_line()+facet_wrap(~wakeupfor)+xlab("Scenarios") + ylab("Receiver AccUptime Energy Relative Error (%)") + expand_limits(x = 0, y = 0) +ggsave("err_rcv_accuptime.png",width=7,height = 5) + + +# Generate plots +ggplot(finalEnergy,aes(x=simkey,y=energy,fill=wireless))+ + geom_bar(stat="identity",position=position_dodge())+ + xlab("Scenarios")+ylab("Energy (J)")+ + geom_errorbar(position=position_dodge(0.9),aes(ymin=energy-sd, ymax=energy+sd),width=0.5,size=1.5,) + + facet_wrap(~ wakeupfor) + + 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",width=13,height = 6) + +ggplot(finalStats,aes(x=simkey,y=success,fill=wireless))+ + geom_bar(stat="identity",position=position_dodge())+ + 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))+ + geom_text(aes(label = r_(success), y= success/2),fontface="bold",colour="white",position=position_dodge(0.9))+ + 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) +for(wake in unique(data$wakeupfor)){ + write(kable(finalEnergy%>%filter(wireless=="lora",wakeupfor==wake)),file=tf,append=TRUE) + write("\n",file=tf,append=TRUE) + write(kable(finalEnergy%>%filter(wireless=="nbiot",wakeupfor==wake)),file=tf,append=TRUE) + write("\n",file=tf,append=TRUE) +} + +tf="tables-stats.org" +write("",file=tf) +for(wake in unique(data$wakeupfor)){ + write(kable(finalStats%>%filter(wireless=="lora",wakeupfor==wake)),file=tf,append=TRUE) + write("\n",file=tf,append=TRUE) + write(kable(finalStats%>%filter(wireless=="nbiot",wakeupfor==wake)),file=tf,append=TRUE) + write("\n",file=tf,append=TRUE) +} + diff --git a/simulations/results/analysis2.R b/simulations/results/analysis2.R new file mode 100644 index 0000000..952db12 --- /dev/null +++ b/simulations/results/analysis2.R @@ -0,0 +1,167 @@ +library("tidyverse") +library("gridExtra") +library("patchwork") +library(RColorBrewer) + +data=read_csv("results.csv") +r_=function(x){round(x,digits=1)} +color=function(){scale_fill_manual(values = c("#00AFBB", "#E7B800", "#FC4E07"))} +color2=function(){scale_fill_brewer(palette = "Dark2")} +nolegend=function(){theme(legend.position="none")} +simkeys=unique(data$simkey) +nsimkeys=length(simkeys) +s_=function(x){if(x<0){return("")}else{return("+")}} +simkey_rename=function(key){ + if(key=="hint") + return("Hints") + if(key=="baseline") + return("Baseline") + if(key=="extended") + return("Extended") + if(key=="hintandextended") + return("Hints+Extended") + return(key) +} +dformat=function(data){ + data%>%rowwise()%>%mutate(simkey=simkey_rename(simkey))%>%mutate(wireless=ifelse(wireless=="lora","LoRa","NbIoT")) +} +g_legend <- function(a.gplot){ + tmp <- ggplot_gtable(ggplot_build(a.gplot)) + leg <- which(sapply(tmp$grobs, function(x) x$name) == "guide-box") + legend <- tmp$grobs[[leg]] + legend +} + +energy60=data%>%filter(wakeupfor==60) +energy60Snd=energy60%>%filter(isSender==1)%>%group_by(simkey,wireless)%>%summarise(sd=sd(energy),energy=mean(energy),type="Sender") +energy60Rcv=energy60%>%filter(isSender==0)%>%group_by(simkey,wireless)%>%summarise(sd=sd(energy),energy=mean(energy),type="Receiver") +energy60=energy60Snd%>%ungroup()%>%rbind(energy60Rcv) +energy60=energy60%>%mutate(sd_min=energy-sd,sd_max=energy+sd)%>%mutate(sd_min_txt=paste0("-",r_(sd_min)))%>%mutate(sd_max_txt=paste0("+",r_(sd_max))) +energy60Baseline=energy60%>%filter(simkey=="baseline")%>%uncount(nsimkeys,.id="id")%>%mutate(simkey=simkeys[id]) +energy60=energy60%>%left_join(energy60Baseline,by=c("simkey","wireless","type"),suffix = c("","_baseline")) +energy60=energy60%>%mutate(ovhd=energy*100/energy_baseline-100) +energy60=energy60%>%rowwise()%>%mutate(ovhd_txt=paste0("(",s_(ovhd),r_(ovhd),"%)")) +success60Snd=data%>%filter(wakeupfor==60)%>%filter(isSender!=0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(success_orig=mean(nSend),success=mean(nSend),type="Sender") +success60Rcv=data%>%filter(wakeupfor==60)%>%filter(isSender!=0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(success_orig=mean(nSend),success=mean(nSend),type="Receiver") +success60=rbind(success60Snd,success60Rcv) +success60=success60%>%rowwise()%>%mutate(success_txt=paste0("[",r_(success),"]")) +energy60=energy60%>%left_join(success60)%>%rowwise()%>%mutate(infos=paste0(ovhd_txt,"\n{",r_(energy/success_orig),"}")) +energy60=energy60%>%mutate(type=factor(type,levels = c("Sender","Receiver"))) + + +energy60P=ggplot(energy60%>%dformat,aes(x=simkey,y=energy,fill=type))+ + geom_bar(colour="black", stat="identity",position=position_dodge())+ + geom_errorbar(position=position_dodge(0.9),aes(ymin=energy-sd, ymax=energy+sd),width=0.3,size=1)+ + geom_text(aes(label = r_(sd_max), y= sd_max),vjust=-0.4,position=position_dodge(0.9))+ + geom_text(aes(label = r_(sd_min), y= sd_min),vjust=+1.5,position=position_dodge(0.9))+ + geom_text(aes(label = paste0(r_(energy),"\n",infos), y= min(energy)/2),fontface="bold",colour="white",position=position_dodge(0.9))+ + geom_label(data=success60%>%dformat(),aes(label = success_txt, y=35),label.padding=unit(0.35,"lines"),label.r=unit(0.09,"lines"),fill="#f0f0f0",label.size=0.5,fontface="bold",colour="black",position=position_dodge(0.9))+ + facet_wrap(~wireless)+ + xlab(element_blank())+ylab("Energy consumption (J)")+ + labs(fill="Energy:")+theme(legend.position="top")+color()+coord_cartesian(ylim=c(0,1200)) +#ggsave("energy-60sec.png",width = 12,height=4.8) + +energy180=data%>%filter(wakeupfor==180) +energy180Snd=energy180%>%filter(isSender==1)%>%group_by(simkey,wireless)%>%summarise(sd=sd(energy),energy=mean(energy),type="Sender") +energy180Rcv=energy180%>%filter(isSender==0)%>%group_by(simkey,wireless)%>%summarise(sd=sd(energy),energy=mean(energy),type="Receiver") +energy180=energy180Snd%>%ungroup()%>%rbind(energy180Rcv)%>%mutate(type=factor(type,levels = c("Sender","Receiver"))) +energy180=energy180%>%mutate(sd_min=energy-sd,sd_max=energy+sd)%>%mutate(sd_min_txt=paste0("-",r_(sd_min)))%>%mutate(sd_max_txt=paste0("+",r_(sd_max))) +energy180Baseline=energy180%>%filter(simkey=="baseline")%>%uncount(nsimkeys,.id="id")%>%mutate(simkey=simkeys[id]) +energy180=energy180%>%left_join(energy180Baseline,by=c("simkey","wireless","type"),suffix = c("","_baseline")) +energy180=energy180%>%mutate(ovhd=energy*100/energy_baseline-100) +energy180=energy180%>%rowwise()%>%mutate(ovhd_txt=paste0("(",s_(ovhd),r_(ovhd),"%)")) +success180Snd=data%>%filter(wakeupfor==180)%>%filter(isSender!=0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(success_orig=mean(nSend),success=mean(nSend),type="Sender") +success180Rcv=data%>%filter(wakeupfor==180)%>%filter(isSender!=0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(success_orig=mean(nSend),success=mean(nSend),type="Receiver") +success180=rbind(success180Snd,success180Rcv) +success180=success180%>%rowwise()%>%mutate(success_txt=paste0("[",r_(success),"]")) +energy180=energy180%>%left_join(success180)%>%rowwise()%>%mutate(infos=paste0(ovhd_txt,"\n{",r_(energy/success_orig),"}")) +energy180=energy180%>%mutate(type=factor(type,levels = c("Sender","Receiver"))) + +energy180P=ggplot(energy180%>%dformat,aes(x=simkey,y=energy,fill=type))+ + geom_bar(colour="black",stat="identity",position=position_dodge())+ + geom_errorbar(position=position_dodge(0.9),aes(ymin=energy-sd, ymax=energy+sd),width=0.3,size=1)+ + geom_text(aes(label = r_(sd_max), y= sd_max),vjust=-0.4,position=position_dodge(0.9))+ + geom_text(aes(label = r_(sd_min), y= sd_min),vjust=+1.5,position=position_dodge(0.9))+ + geom_text(aes(label = paste0(r_(energy),"\n",infos), y= min(energy)/2),fontface="bold",colour="white",position=position_dodge(0.9))+ + geom_label(data=success180%>%dformat(),aes(label = success_txt, y=100),label.padding=unit(0.35,"lines"),label.r=unit(0.09,"lines"),fill="#f0f0f0",label.size=0.5,fontface="bold",colour="black",position=position_dodge(0.9))+ + facet_wrap(~wireless)+ + xlab(element_blank())+ylab("Energy consumption (J)")+ + labs(fill="Energy:")+theme(legend.position="top")+color()+coord_cartesian(ylim=c(0,2600)) +#ggsave("energy-180sec.png",width = 12,height=4.8) + +totalUptime60=data%>%filter(wakeupfor==60) +totalUptime60Snd=totalUptime60%>%filter(isSender==1)%>%group_by(simkey,wireless)%>%summarise(sd=sd(totalUptime),totalUptime=mean(totalUptime),type="Sender") +totalUptime60Rcv=totalUptime60%>%filter(isSender==0)%>%group_by(simkey,wireless)%>%summarise(sd=sd(totalUptime),totalUptime=mean(totalUptime),type="Receiver") +totalUptime60=totalUptime60Snd%>%ungroup()%>%rbind(totalUptime60Rcv)%>%mutate(type=factor(type,levels = c("Sender","Receiver"))) +totalUptime60=totalUptime60%>%mutate(sd_min=totalUptime-sd,sd_max=totalUptime+sd)%>%mutate(sd_min_txt=paste0("-",r_(sd_min)))%>%mutate(sd_max_txt=paste0("+",r_(sd_max))) +totalUptime60Baseline=totalUptime60%>%filter(simkey=="baseline")%>%uncount(nsimkeys,.id="id")%>%mutate(simkey=simkeys[id]) +totalUptime60=totalUptime60%>%left_join(totalUptime60Baseline,by=c("simkey","wireless","type"),suffix = c("","_baseline")) +totalUptime60=totalUptime60%>%mutate(ovhd=totalUptime-totalUptime_baseline) +totalUptime60=totalUptime60%>%rowwise()%>%mutate(ovhd_txt=paste0("(",s_(ovhd),r_(ovhd),")")) +totalUptime60=totalUptime60%>%mutate(type=factor(type,levels = c("Sender","Receiver"))) + +totalUptime60P=ggplot(totalUptime60%>%dformat,aes(x=simkey,y=totalUptime,fill=type))+ + geom_bar(colour="black", stat="identity",position=position_dodge())+ + geom_errorbar(position=position_dodge(0.9),aes(ymin=totalUptime-sd, ymax=totalUptime+sd),width=0.3,size=1)+ + geom_text(aes(label = r_(sd_max), y= sd_max),vjust=-0.4,position=position_dodge(0.9))+ + geom_text(aes(label = r_(sd_min), y= sd_min),vjust=+1.5,position=position_dodge(0.9))+ + geom_text(aes(label = paste0(r_(totalUptime),"\n",ovhd_txt), y= min(totalUptime)/2),fontface="bold",colour="white",position=position_dodge(0.9))+ + facet_wrap(~wireless)+ + xlab("Policy")+ylab("Accumulated uptime (s)")+ + labs(fill="Total uptime:")+color2()+theme(legend.position="top")+coord_cartesian(ylim=c(0,2500)) + +totalUptime180=data%>%filter(wakeupfor==180) +totalUptime180Snd=totalUptime180%>%filter(isSender==1)%>%group_by(simkey,wireless)%>%summarise(sd=sd(totalUptime),totalUptime=mean(totalUptime),type="Sender") +totalUptime180Rcv=totalUptime180%>%filter(isSender==0)%>%group_by(simkey,wireless)%>%summarise(sd=sd(totalUptime),totalUptime=mean(totalUptime),type="Receiver") +totalUptime180=totalUptime180Snd%>%ungroup()%>%rbind(totalUptime180Rcv)%>%mutate(type=factor(type,levels = c("Sender","Receiver"))) +totalUptime180=totalUptime180%>%mutate(sd_min=totalUptime-sd,sd_max=totalUptime+sd)%>%mutate(sd_min_txt=paste0("-",r_(sd_min)))%>%mutate(sd_max_txt=paste0("+",r_(sd_max))) +totalUptime180Baseline=totalUptime180%>%filter(simkey=="baseline")%>%uncount(nsimkeys,.id="id")%>%mutate(simkey=simkeys[id]) +totalUptime180=totalUptime180%>%left_join(totalUptime180Baseline,by=c("simkey","wireless","type"),suffix = c("","_baseline")) +totalUptime180=totalUptime180%>%mutate(ovhd=totalUptime-totalUptime_baseline) +totalUptime180=totalUptime180%>%rowwise()%>%mutate(ovhd_txt=paste0("(",s_(ovhd),r_(ovhd),")")) +totalUptime180=totalUptime180%>%mutate(type=factor(type,levels = c("Sender","Receiver"))) + +totalUptime180P=ggplot(totalUptime180%>%dformat,aes(x=simkey,y=totalUptime,fill=type))+ + geom_bar(colour="black",stat="identity",position=position_dodge())+ + geom_errorbar(position=position_dodge(0.9),aes(ymin=totalUptime-sd, ymax=totalUptime+sd),width=0.3,size=1)+ + geom_text(aes(label = r_(sd_max), y= sd_max),vjust=-0.4,position=position_dodge(0.9))+ + geom_text(aes(label = r_(sd_min), y= sd_min),vjust=+1.5,position=position_dodge(0.9))+ + geom_text(aes(label = paste0(r_(totalUptime),"\n",ovhd_txt), y= min(totalUptime)/2),fontface="bold",colour="white",position=position_dodge(0.9))+ + facet_wrap(~wireless)+ + xlab("Policy")+ylab("Accumulated uptime (s)")+ + labs(fill="Total uptime:")+theme(legend.position="top")+color2()+coord_cartesian(ylim=c(0,5600)) + +success60=data%>%filter(wakeupfor==60) +success60=success60%>%filter(isSender==1)%>%group_by(simkey,wireless)%>%summarise(sd=sd(nSend),success=mean(nSend)) +success60=success60%>%mutate(sd_min=success-sd,sd_max=success+sd) + +success60P=ggplot(success60%>%dformat,aes(x=simkey,y=success))+ + geom_bar(stat="identity",position=position_dodge(),fill="gray50")+ + geom_errorbar(position=position_dodge(0.9),aes(ymin=success-sd, ymax=success+sd),width=0.2,size=1)+ + geom_text(aes(label = r_(sd_max), y= sd_max),vjust=-0.4,position=position_dodge(0.9))+ + geom_text(aes(label = r_(sd_min), y= sd_min),vjust=+1.5,position=position_dodge(0.9))+ + geom_text(aes(label = r_(success), y= success/2),fontface="bold",colour="white",position=position_dodge(0.9))+ + facet_wrap(~wireless)+ + xlab("Policy")+ylab("Number of success")+ + labs(fill="Node type")+theme(legend.position="none")+color()+coord_cartesian(ylim=c(0,11)) +#ggsave("success-60sec.png",width = 5.8,height=4.2) + +success180=data%>%filter(wakeupfor==180) +success180=success180%>%filter(isSender==1)%>%group_by(simkey,wireless)%>%summarise(sd=sd(nSend),success=mean(nSend)) +success180=success180%>%mutate(sd_min=success-sd,sd_max=success+sd) + +success180P=ggplot(success180%>%dformat,aes(x=simkey,y=success))+ + geom_bar(stat="identity",position=position_dodge(),fill="gray50")+ + geom_errorbar(position=position_dodge(0.9),aes(ymin=success-sd, ymax=success+sd),width=0.2,size=1)+ + geom_text(aes(label = r_(sd_max), y= sd_max),vjust=-0.4,position=position_dodge(0.9))+ + geom_text(aes(label = r_(sd_min), y= sd_min),vjust=+1.5,position=position_dodge(0.9))+ + geom_text(aes(label = r_(success), y= success/2),fontface="bold",colour="white",position=position_dodge(0.9))+ + facet_wrap(~wireless)+ + xlab("Policy")+ylab("Number of success")+ + labs(fill="Node type")+theme(legend.position="none")+color()+coord_cartesian(ylim=c(0,13)) +#ggsave("success-180sec.png",width = 5.8,height=4.2) + + +ggsave("60sec.pdf",plot=(energy60P)/(totalUptime60P)+ plot_layout(guides = "collect")&theme(legend.position = "top"),width=12,height=7) +ggsave("180sec.pdf",plot=(energy180P)/(totalUptime180P)+ plot_layout(guides = "collect")&theme(legend.position = "top"),width=12,height=7) + diff --git a/simulations/results/avgDataTimeRcv.png b/simulations/results/avgDataTimeRcv.png new file mode 100644 index 0000000..ef9e918 Binary files /dev/null and b/simulations/results/avgDataTimeRcv.png differ diff --git a/simulations/results/ccgrid.csv b/simulations/results/ccgrid.csv new file mode 100644 index 0000000..b31148e --- /dev/null +++ b/simulations/results/ccgrid.csv @@ -0,0 +1,17 @@ +simkey,wireless,wakeupfor,sd_success,success,senderEnergy,receiverEnergy,senderUptime,receiverUptime +baseline,lora,60,0,0,619.73,579.84,1440,1440 +extended,lora,60,2,7.70,1207.61,627.35,2564.53,1523.52 +hint,lora,60,0,0,753.42,957.64,1440,2354.94 +hintandextended,lora,60,2.20,9.80,1397.98,663.58,2904.50,1602.39 +baseline,nbiot,60,1.12,1.27,749.69,591.07,1440,1440 +extended,nbiot,60,1.80,7.16,946.39,599.13,1788.32,1447.54 +hint,nbiot,60,3.45,9.72,1007.06,702.59,1440,1666.51 +hintandextended,nbiot,60,2.36,9.41,1066.66,623.30,1901.47,1492.53 +baseline,lora,180,1.40,1.91,2026.23,1755.92,4320,4320 +extended,lora,180,0.70,11.45,2692.46,1772.35,6038.78,4364.27 +hint,lora,180,0,12, 2094.09,2169.50,4320,5344.86 +hintandextended,lora,180,0.24,11.94,2757.79,1867.34,6155.50,4600.09 +baseline,nbiot,180,1.33,9.90,2117.65,1761.78,4320,4320 +extended,nbiot,180,0.87,11.23,2311.52,1760.92,4868.78,4323.71 +hint,nbiot,180,0.37,11.92,2180.07,1868.54,4320,4576.83 +hintandextended,nbiot,180,0.41,11.88,2151.14,1822.44,4906.10,4473.32 diff --git a/simulations/results/energy-180sec.png b/simulations/results/energy-180sec.png new file mode 100644 index 0000000..3684cf4 Binary files /dev/null and b/simulations/results/energy-180sec.png differ diff --git a/simulations/results/energy-60sec.png b/simulations/results/energy-60sec.png new file mode 100644 index 0000000..b1435cc Binary files /dev/null and b/simulations/results/energy-60sec.png differ diff --git a/simulations/results/energy.png b/simulations/results/energy.png new file mode 100644 index 0000000..a33cd41 Binary files /dev/null and b/simulations/results/energy.png differ diff --git a/simulations/results/err_rcv_accuptime.png b/simulations/results/err_rcv_accuptime.png new file mode 100644 index 0000000..5e14690 Binary files /dev/null and b/simulations/results/err_rcv_accuptime.png differ diff --git a/simulations/results/err_receiver_energy.png b/simulations/results/err_receiver_energy.png new file mode 100644 index 0000000..ac67b0c Binary files /dev/null and b/simulations/results/err_receiver_energy.png differ diff --git a/simulations/results/err_sender_accuptime.png b/simulations/results/err_sender_accuptime.png new file mode 100644 index 0000000..3fe0b9b Binary files /dev/null and b/simulations/results/err_sender_accuptime.png differ diff --git a/simulations/results/err_sender_energy.png b/simulations/results/err_sender_energy.png new file mode 100644 index 0000000..d5acbf3 Binary files /dev/null and b/simulations/results/err_sender_energy.png differ diff --git a/simulations/results/nWakeUpRcv.png b/simulations/results/nWakeUpRcv.png new file mode 100644 index 0000000..fcc5e7d Binary files /dev/null and b/simulations/results/nWakeUpRcv.png differ diff --git a/simulations/results/nWakeUpSender.png b/simulations/results/nWakeUpSender.png new file mode 100644 index 0000000..9455e8c Binary files /dev/null and b/simulations/results/nWakeUpSender.png differ diff --git a/simulations/results/paper.sh b/simulations/results/paper.sh new file mode 100755 index 0000000..0d486bf --- /dev/null +++ b/simulations/results/paper.sh @@ -0,0 +1,134 @@ +#!/usr/bin/env bash + +set -e + +wai=$(dirname $(readlink -f "$0")) +scenarios="${wai}/../scenarios" +inputs="${wai}/../inputs.json" +simulator="make -C ${wai}/../ run" +sched="${wai}/scheduler/analysis.sh" +parser="${wai}/../parser.awk" +results="${wai}/results.csv" +aheaders="simkey,wireless,wakeupfor" +avalues="none,none,none" +log_file="${wai}/logs/$(date +%s).org" && mkdir -p "${wai}/logs/" +gen_log=0 # Should we generate logs ? + +run-simulation () { + exit 0 + # Generate inputs + $scenarios $seed $simtime $wakeupevery $wakeupfor $n_nodes $extended $hint $poff $pon $prx $ptx $datasize $bitrate $hintsize $latency > "$inputs" + + # 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 + tmp=$(mktemp) + $simulator &> $tmp + [ $gen_log -eq 1 ] && cp $tmp "${log_file}" + + # Gen csv + [ ! -e "$results" ] && { cat $tmp | $parser | sed "1 s/$/,${aheaders}/g" | sed "2,\$s/$/,${avalues}/" > "$results"; } + [ -e "$results" ] && { cat $tmp | $parser | sed 1d | sed "s/$/,${avalues}/" >> "$results"; } + + # Gen scheduler analysis + [ $seed -eq 1 ] && $sched $tmp "logs/$(echo ${avalues}|tr ',' '_')_hint${hint}_extended${extended}.png" + + # Clear tmp + rm $tmp +} + +# Default Parameters +seed=0 +simtime=86400 # One day +wakeupevery=3600 +wakeupfor=60 +n_nodes=13 +extended="false" +hint="false" +poff=0 +pon=0.4 +prx=0.16 +ptx=0.16 +datasize=1000000 # 1Mb +hintsize=8 # Integer +latency=0 # in Seconds +bitrate="100kbps" + + + +run-scenarios() { + # Configure number of seed per scenarios + nseed=200 + + # Baseline + avalues="baseline,$wireless,$wakeupfor" + for seed in $(seq 1 $nseed) + do + printf "\rBaseline...${seed}" + run-simulation + done + echo + + # Hint + hint="true" + avalues="hint,$wireless,$wakeupfor" + for seed in $(seq 1 $nseed) + do + printf "\rHint...${seed}" + run-simulation + done + 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 +[ -e "${results}" ] && rm "${results}" + +for wakeupfor in 60 180 +do + + # Lora + echo "----- Run Lora (wakeupfor=$wakeupfor) -----" + wireless="lora" + bitrate="50kbps" + pon=0.4 + prx=0.16 + ptx=0.16 + latency=0 + run-scenarios + + # NbIot + echo "----- Run NbIoT (wakeupfor=$wakeupfor) -----" + wireless="nbiot" + bitrate="200kbps" + pon=0.4 + prx=0.65 + ptx=0.65 + latency=0 + run-scenarios +done diff --git a/simulations/results/paper_.sh b/simulations/results/paper_.sh new file mode 100755 index 0000000..7d7f240 --- /dev/null +++ b/simulations/results/paper_.sh @@ -0,0 +1,89 @@ +#!/usr/bin/env bash + +set -e + +wai=$(dirname $(readlink -f "$0")) +scenarios="${wai}/../scenarios" +inputs="${wai}/../inputs.json" +simulator="make -C ${wai}/../ run" +sched="${wai}/scheduler/analysis.sh" +parser="${wai}/../parser.awk" +results="${wai}/results.csv" +aheaders="simkey,wireless,wakeupfor" +avalues="none,none,none" +log_file="${wai}/logs/$(date +%s).org" && mkdir -p "${wai}/logs/" +gen_log=0 # Should we generate logs ? + +run-simulation () { + # Generate inputs + $scenarios $seed $simtime $wakeupevery $wakeupfor $n_nodes $extended $hint $poff $pon $prx $ptx $datasize $bitrate $hintsize $latency > "$inputs" + + # 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 + tmp=$(mktemp) + $simulator &> $tmp + [ $gen_log -eq 1 ] && cp $tmp "${log_file}" + + # Gen csv + [ ! -e "$results" ] && { cat $tmp | $parser | sed "1 s/$/,${aheaders}/g" | sed "2,\$s/$/,${avalues}/" > "$results"; } + [ -e "$results" ] && { cat $tmp | $parser | sed 1d | sed "s/$/,${avalues}/" >> "$results"; } + + # Gen scheduler analysis + #[ $seed -eq 1 ] && $sched $tmp "logs/$(echo ${avalues}|tr ',' '_')_hint${hint}_extended${extended}.png" + + # Clear tmp + cat $tmp + rm $tmp +} + +# Default Parameters +seed=0 +simtime=86400 # One day +wakeupevery=3600 +wakeupfor=60 +n_nodes=13 +extended="false" +hint="false" +poff=0 +pon=0.4 +prx=0.16 +ptx=0.16 +datasize=1000000 # 1Mb +hintsize=8 # Integer +latency=0 # in Seconds +bitrate="100kbps" + + + +run-scenarios() { + # Configure number of seed per scenarios + nseed=200 + + # Baseline + avalues="baseline,$wireless,$wakeupfor" + for seed in 17 + do + printf "\rBaseline...${seed}" + run-simulation + done + echo +} + +# Clean previous runs +[ -e "${results}" ] && rm "${results}" + +for wakeupfor in 60 +do + + # Lora + echo "----- Run Lora (wakeupfor=$wakeupfor) -----" + wireless="lora" + bitrate="50kbps" + pon=0.4 + prx=0.16 + ptx=0.16 + latency=0 + run-scenarios +done \ No newline at end of file diff --git a/simulations/results/results.csv b/simulations/results/results.csv new file mode 100644 index 0000000..f4d969c --- /dev/null +++ b/simulations/results/results.csv @@ -0,0 +1,41614 @@ +node,isSender,nSend,nWakeUp,nDataRcv,nSendFail,nRcvFail,totalUptime,seed,hint_added,timeDataRcv,energy,simkey,wireless,wakeupfor +on3,0,0,24,0,0,1340,1440.000000,1,0,-1.000000,594.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,1,0,-1.000000,639.360000,baseline,lora,60 +on8,0,0,24,0,0,1342,1440.000000,1,0,-1.000000,592.320000,baseline,lora,60 +on2,0,0,24,0,0,1413,1440.000000,1,0,-1.000000,580.480000,baseline,lora,60 +on1,0,0,24,0,0,1403,1440.000000,1,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1363,1440.000000,1,0,-1.000000,591.360000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1394,1440.000000,1,0,-1.000000,593.120000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1340,1440.000000,1,0,-1.000000,594.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,1,0,-1.000000,639.360000,baseline,lora,60 +on8,0,0,24,0,0,1342,1440.000000,1,0,-1.000000,592.320000,baseline,lora,60 +on2,0,0,24,0,0,1413,1440.000000,1,0,-1.000000,580.480000,baseline,lora,60 +on1,0,0,24,0,0,1403,1440.000000,1,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1363,1440.000000,1,0,-1.000000,591.360000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1394,1440.000000,1,0,-1.000000,593.120000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1435,1440.000000,2,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,2,0,-1.000000,602.400000,baseline,lora,60 +on1,0,0,24,0,0,1389,1440.000000,2,0,-1.000000,585.600000,baseline,lora,60 +on10,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 +on4,0,0,24,0,0,1427,1440.000000,2,0,-1.000000,578.240000,baseline,lora,60 +on2,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,2,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1396,1440.000000,2,0,-1.000000,583.200000,baseline,lora,60 +on4,0,0,24,0,0,1430,1440.000000,3,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1417,1440.000000,3,0,-1.000000,579.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,3,0,-1.000000,604.640000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1396,1440.000000,3,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1382,1440.000000,3,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1435,1440.000000,3,0,-1.000000,576.960000,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,1407,1440.000000,3,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1343,1440.000000,4,0,-1.000000,604.800000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,4,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 +on10,0,0,24,0,0,1396,1440.000000,4,0,-1.000000,583.200000,baseline,lora,60 +on5,0,0,24,0,0,1392,1440.000000,4,0,-1.000000,583.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,4,0,-1.000000,625.120000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1422,1440.000000,4,0,-1.000000,579.040000,baseline,lora,60 +on7,0,0,24,0,0,1359,1440.000000,4,0,-1.000000,589.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1430,1440.000000,4,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1389,1440.000000,5,0,-1.000000,584.320000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1343,1440.000000,5,0,-1.000000,599.680000,baseline,lora,60 +on6,0,0,24,0,0,1387,1440.000000,5,0,-1.000000,584.640000,baseline,lora,60 +on11,0,0,24,0,0,1396,1440.000000,5,0,-1.000000,583.200000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1435,1440.000000,5,0,-1.000000,582.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,5,0,-1.000000,617.600000,baseline,lora,60 +on10,0,0,24,0,0,1438,1440.000000,5,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1427,1440.000000,6,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1380,1440.000000,6,0,-1.000000,587.360000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1435,1440.000000,6,0,-1.000000,576.960000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on9,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 +on12,0,0,24,0,0,1419,1440.000000,6,0,-1.000000,579.520000,baseline,lora,60 +on8,0,0,24,0,0,1430,1440.000000,6,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1407,1440.000000,6,0,-1.000000,581.440000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,6,0,-1.000000,604.320000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1413,1440.000000,6,0,-1.000000,580.480000,baseline,lora,60 +on5,0,0,24,0,0,1354,1440.000000,7,0,-1.000000,603.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,7,0,-1.000000,620.960000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,7,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 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1393,1440.000000,7,0,-1.000000,583.680000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1436,1440.000000,7,0,-1.000000,583.840000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1304,1440.000000,7,0,-1.000000,598.400000,baseline,lora,60 +on10,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,8,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1405,1440.000000,8,0,-1.000000,581.760000,baseline,lora,60 +on8,0,0,24,0,0,1387,1440.000000,8,0,-1.000000,594.400000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,8,0,-1.000000,632.000000,baseline,lora,60 +on9,0,0,24,0,0,1384,1440.000000,8,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1383,1440.000000,8,0,-1.000000,591.680000,baseline,lora,60 +on10,0,0,24,0,0,1324,1440.000000,8,0,-1.000000,594.880000,baseline,lora,60 +on6,0,0,24,0,0,1416,1440.000000,8,0,-1.000000,580.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1403,1440.000000,9,0,-1.000000,582.080000,baseline,lora,60 +on12,0,0,24,0,0,1385,1440.000000,9,0,-1.000000,589.600000,baseline,lora,60 +on8,0,0,24,0,0,1387,1440.000000,9,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1419,1440.000000,9,0,-1.000000,583.360000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,9,0,-1.000000,603.360000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on7,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 +on6,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on5,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,622.720000,baseline,lora,60 +on8,0,0,24,0,0,1369,1440.000000,10,0,-1.000000,597.920000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1391,1440.000000,10,0,-1.000000,584.160000,baseline,lora,60 +on4,0,0,24,0,0,1384,1440.000000,10,0,-1.000000,592.800000,baseline,lora,60 +on1,0,0,24,0,0,1384,1440.000000,10,0,-1.000000,585.120000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1389,1440.000000,10,0,-1.000000,584.320000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,11,0,-1.000000,614.720000,baseline,lora,60 +on4,0,0,24,0,0,1386,1440.000000,11,0,-1.000000,584.800000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1382,1440.000000,11,0,-1.000000,585.440000,baseline,lora,60 +on2,0,0,24,0,0,1407,1440.000000,11,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1418,1440.000000,11,0,-1.000000,579.680000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1371,1440.000000,11,0,-1.000000,589.280000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1340,1440.000000,12,0,-1.000000,595.200000,baseline,lora,60 +on2,0,0,24,0,0,1433,1440.000000,12,0,-1.000000,581.600000,baseline,lora,60 +on10,0,0,24,0,0,1374,1440.000000,12,0,-1.000000,592.960000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1418,1440.000000,12,0,-1.000000,579.680000,baseline,lora,60 +on7,0,0,24,0,0,1392,1440.000000,12,0,-1.000000,584.000000,baseline,lora,60 +on4,0,0,24,0,0,1423,1440.000000,12,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1389,1440.000000,12,0,-1.000000,584.320000,baseline,lora,60 +on6,0,0,24,0,0,1384,1440.000000,12,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1413,1440.000000,12,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1434,1440.000000,12,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1439,1440.000000,12,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,12,0,-1.000000,642.400000,baseline,lora,60 +on11,0,0,24,0,0,1346,1440.000000,13,0,-1.000000,593.440000,baseline,lora,60 +on2,0,0,24,0,0,1384,1440.000000,13,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1413,1440.000000,13,0,-1.000000,580.640000,baseline,lora,60 +on3,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 +on7,0,0,24,0,0,1392,1440.000000,13,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,13,0,-1.000000,642.560000,baseline,lora,60 +on4,0,0,24,0,0,1430,1440.000000,13,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1304,1440.000000,13,0,-1.000000,604.000000,baseline,lora,60 +on12,0,0,24,0,0,1434,1440.000000,13,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1413,1440.000000,13,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1421,1440.000000,14,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1391,1440.000000,14,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1339,1440.000000,14,0,-1.000000,592.480000,baseline,lora,60 +on3,0,0,24,0,0,1398,1440.000000,14,0,-1.000000,582.880000,baseline,lora,60 +on6,0,0,24,0,0,1394,1440.000000,14,0,-1.000000,583.520000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,14,0,-1.000000,652.160000,baseline,lora,60 +on11,0,0,24,0,0,1433,1440.000000,14,0,-1.000000,577.280000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1398,1440.000000,14,0,-1.000000,582.880000,baseline,lora,60 +on10,0,0,24,0,0,1316,1440.000000,14,0,-1.000000,602.560000,baseline,lora,60 +on9,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 +on4,0,0,24,0,0,1408,1440.000000,14,0,-1.000000,588.800000,baseline,lora,60 +on8,0,0,24,0,0,1387,1440.000000,15,0,-1.000000,584.800000,baseline,lora,60 +on6,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,614.240000,baseline,lora,60 +on9,0,0,24,0,0,1430,1440.000000,15,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1406,1440.000000,15,0,-1.000000,584.800000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.160000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1405,1440.000000,15,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1433,1440.000000,15,0,-1.000000,577.280000,baseline,lora,60 +on5,0,0,24,0,0,1390,1440.000000,15,0,-1.000000,584.320000,baseline,lora,60 +on10,0,0,24,0,0,1404,1440.000000,15,0,-1.000000,581.920000,baseline,lora,60 +on1,0,0,24,0,0,1437,1440.000000,15,0,-1.000000,576.640000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1401,1440.000000,16,0,-1.000000,582.400000,baseline,lora,60 +on9,0,0,24,0,0,1426,1440.000000,16,0,-1.000000,585.600000,baseline,lora,60 +on3,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,591.840000,baseline,lora,60 +on6,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 +on8,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 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,lora,60 +on4,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 +on2,0,0,24,0,0,1397,1440.000000,16,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,17,0,-1.000000,601.760000,baseline,lora,60 +on5,0,0,24,0,0,1397,1440.000000,17,0,-1.000000,583.040000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1435,1440.000000,17,0,-1.000000,576.960000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1410,1440.000000,17,0,-1.000000,580.960000,baseline,lora,60 +on3,0,0,24,0,0,1425,1440.000000,17,0,-1.000000,585.760000,baseline,lora,60 +on6,0,0,24,0,0,1407,1440.000000,17,0,-1.000000,581.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1413,1440.000000,17,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1434,1440.000000,18,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1423,1440.000000,18,0,-1.000000,586.560000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,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,622.880000,baseline,lora,60 +on1,0,0,24,0,0,1426,1440.000000,18,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1358,1440.000000,18,0,-1.000000,592.800000,baseline,lora,60 +on12,0,0,24,0,0,1424,1440.000000,18,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1389,1440.000000,18,0,-1.000000,584.320000,baseline,lora,60 +on9,0,0,24,0,0,1396,1440.000000,18,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1387,1440.000000,18,0,-1.000000,584.640000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1396,1440.000000,19,0,-1.000000,583.200000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,19,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,19,0,-1.000000,596.800000,baseline,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1437,1440.000000,19,0,-1.000000,576.640000,baseline,lora,60 +on8,0,0,24,0,0,1391,1440.000000,19,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1436,1440.000000,20,0,-1.000000,576.800000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1393,1440.000000,20,0,-1.000000,587.360000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,20,0,-1.000000,613.120000,baseline,lora,60 +on9,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 +on8,0,0,24,0,0,1413,1440.000000,20,0,-1.000000,580.480000,baseline,lora,60 +on1,0,0,24,0,0,1395,1440.000000,20,0,-1.000000,583.360000,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,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1350,1440.000000,20,0,-1.000000,592.160000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1429,1440.000000,20,0,-1.000000,577.920000,baseline,lora,60 +on1,0,0,24,0,0,1426,1440.000000,21,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,lora,60 +on2,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,614.720000,baseline,lora,60 +on5,0,0,24,0,0,1426,1440.000000,21,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1358,1440.000000,21,0,-1.000000,597.600000,baseline,lora,60 +on12,0,0,24,0,0,1421,1440.000000,21,0,-1.000000,579.200000,baseline,lora,60 +on7,0,0,24,0,0,1385,1440.000000,21,0,-1.000000,585.600000,baseline,lora,60 +on6,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 +on3,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1390,1440.000000,21,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1347,1440.000000,22,0,-1.000000,596.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1436,1440.000000,22,0,-1.000000,595.200000,baseline,lora,60 +on6,0,0,24,0,0,1391,1440.000000,22,0,-1.000000,593.760000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1381,1440.000000,22,0,-1.000000,591.360000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,22,0,-1.000000,640.480000,baseline,lora,60 +on9,0,0,24,0,0,1431,1440.000000,22,0,-1.000000,577.600000,baseline,lora,60 +on5,0,0,24,0,0,1426,1440.000000,22,0,-1.000000,578.400000,baseline,lora,60 +on12,0,0,24,0,0,1359,1440.000000,22,0,-1.000000,593.440000,baseline,lora,60 +on4,0,0,24,0,0,1419,1440.000000,22,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1383,1440.000000,22,0,-1.000000,585.440000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.160000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1393,1440.000000,23,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1412,1440.000000,23,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1428,1440.000000,23,0,-1.000000,578.080000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,23,0,-1.000000,602.720000,baseline,lora,60 +on1,0,0,24,0,0,1400,1440.000000,23,0,-1.000000,582.560000,baseline,lora,60 +on12,0,0,24,0,0,1433,1440.000000,23,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1414,1440.000000,23,0,-1.000000,580.320000,baseline,lora,60 +on3,0,0,24,0,0,1414,1440.000000,24,0,-1.000000,580.320000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,24,0,-1.000000,600.800000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1424,1440.000000,24,0,-1.000000,578.720000,baseline,lora,60 +on5,0,0,24,0,0,1427,1440.000000,24,0,-1.000000,585.760000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1415,1440.000000,24,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1439,1440.000000,24,0,-1.000000,576.320000,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,1379,1440.000000,24,0,-1.000000,586.080000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1436,1440.000000,24,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1368,1440.000000,25,0,-1.000000,595.200000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1432,1440.000000,25,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1433,1440.000000,25,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1427,1440.000000,25,0,-1.000000,578.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,25,0,-1.000000,624.640000,baseline,lora,60 +on12,0,0,24,0,0,1315,1440.000000,25,0,-1.000000,599.360000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1373,1440.000000,25,0,-1.000000,594.880000,baseline,lora,60 +on2,0,0,24,0,0,1439,1440.000000,25,0,-1.000000,576.320000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1403,1440.000000,26,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1387,1440.000000,26,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1401,1440.000000,26,0,-1.000000,582.560000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.160000,baseline,lora,60 +on12,0,0,24,0,0,1437,1440.000000,26,0,-1.000000,576.640000,baseline,lora,60 +on7,0,0,24,0,0,1435,1440.000000,26,0,-1.000000,576.960000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,26,0,-1.000000,625.120000,baseline,lora,60 +on4,0,0,24,0,0,1387,1440.000000,26,0,-1.000000,584.800000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1385,1440.000000,26,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1427,1440.000000,26,0,-1.000000,578.240000,baseline,lora,60 +on3,0,0,24,0,0,1402,1440.000000,26,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,27,0,-1.000000,641.440000,baseline,lora,60 +on2,0,0,24,0,0,1380,1440.000000,27,0,-1.000000,592.960000,baseline,lora,60 +on11,0,0,24,0,0,1409,1440.000000,27,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1405,1440.000000,27,0,-1.000000,581.760000,baseline,lora,60 +on1,0,0,24,0,0,1357,1440.000000,27,0,-1.000000,589.600000,baseline,lora,60 +on8,0,0,24,0,0,1389,1440.000000,27,0,-1.000000,584.320000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1386,1440.000000,27,0,-1.000000,584.800000,baseline,lora,60 +on10,0,0,24,0,0,1383,1440.000000,27,0,-1.000000,585.280000,baseline,lora,60 +on12,0,0,24,0,0,1420,1440.000000,27,0,-1.000000,579.360000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1433,1440.000000,27,0,-1.000000,580.320000,baseline,lora,60 +on4,0,0,24,0,0,1391,1440.000000,28,0,-1.000000,584.000000,baseline,lora,60 +on11,0,0,24,0,0,1432,1440.000000,28,0,-1.000000,577.440000,baseline,lora,60 +on9,0,0,24,0,0,1415,1440.000000,28,0,-1.000000,580.160000,baseline,lora,60 +on10,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 +on6,0,0,24,0,0,1378,1440.000000,28,0,-1.000000,593.440000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,28,0,-1.000000,629.440000,baseline,lora,60 +on2,0,0,24,0,0,1269,1440.000000,28,0,-1.000000,613.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1431,1440.000000,28,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1386,1440.000000,29,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1427,1440.000000,29,0,-1.000000,578.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,29,0,-1.000000,644.000000,baseline,lora,60 +on9,0,0,24,0,0,1351,1440.000000,29,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1377,1440.000000,29,0,-1.000000,586.400000,baseline,lora,60 +on4,0,0,24,0,0,1387,1440.000000,29,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1416,1440.000000,29,0,-1.000000,580.160000,baseline,lora,60 +on3,0,0,24,0,0,1405,1440.000000,29,0,-1.000000,585.440000,baseline,lora,60 +on1,0,0,24,0,0,1391,1440.000000,29,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1408,1440.000000,29,0,-1.000000,595.200000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,30,0,-1.000000,579.520000,baseline,lora,60 +on11,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 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,30,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 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1419,1440.000000,30,0,-1.000000,579.520000,baseline,lora,60 +on6,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,31,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1393,1440.000000,31,0,-1.000000,585.600000,baseline,lora,60 +on1,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,595.040000,baseline,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1397,1440.000000,31,0,-1.000000,590.080000,baseline,lora,60 +on9,0,0,24,0,0,1415,1440.000000,31,0,-1.000000,580.160000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1425,1440.000000,32,0,-1.000000,578.560000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1387,1440.000000,32,0,-1.000000,584.640000,baseline,lora,60 +on9,0,0,24,0,0,1383,1440.000000,32,0,-1.000000,585.280000,baseline,lora,60 +on7,0,0,24,0,0,1388,1440.000000,32,0,-1.000000,592.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1403,1440.000000,32,0,-1.000000,582.080000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,32,0,-1.000000,624.800000,baseline,lora,60 +on8,0,0,24,0,0,1385,1440.000000,32,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1412,1440.000000,32,0,-1.000000,580.640000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1375,1440.000000,33,0,-1.000000,586.720000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1392,1440.000000,33,0,-1.000000,583.840000,baseline,lora,60 +on1,0,0,24,0,0,1332,1440.000000,33,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,33,0,-1.000000,623.360000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1415,1440.000000,33,0,-1.000000,580.160000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1397,1440.000000,33,0,-1.000000,583.040000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1406,1440.000000,34,0,-1.000000,581.760000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1424,1440.000000,34,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1414,1440.000000,34,0,-1.000000,580.320000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,34,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 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1356,1440.000000,34,0,-1.000000,593.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,34,0,-1.000000,602.880000,baseline,lora,60 +on3,0,0,24,0,0,1377,1440.000000,35,0,-1.000000,586.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,35,0,-1.000000,621.280000,baseline,lora,60 +on5,0,0,24,0,0,1351,1440.000000,35,0,-1.000000,591.680000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1382,1440.000000,35,0,-1.000000,594.720000,baseline,lora,60 +on2,0,0,24,0,0,1396,1440.000000,35,0,-1.000000,583.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1436,1440.000000,35,0,-1.000000,576.800000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1424,1440.000000,35,0,-1.000000,585.600000,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,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1411,1440.000000,36,0,-1.000000,580.800000,baseline,lora,60 +on4,0,0,24,0,0,1382,1440.000000,36,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1414,1440.000000,36,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,36,0,-1.000000,612.640000,baseline,lora,60 +on2,0,0,24,0,0,1395,1440.000000,36,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1428,1440.000000,36,0,-1.000000,578.080000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1387,1440.000000,36,0,-1.000000,584.640000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1379,1440.000000,37,0,-1.000000,594.880000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,37,0,-1.000000,632.000000,baseline,lora,60 +on5,0,0,24,0,0,1427,1440.000000,37,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1410,1440.000000,37,0,-1.000000,590.560000,baseline,lora,60 +on10,0,0,24,0,0,1343,1440.000000,37,0,-1.000000,593.760000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1434,1440.000000,37,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1402,1440.000000,37,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1382,1440.000000,37,0,-1.000000,585.440000,baseline,lora,60 +on7,0,0,24,0,0,1408,1440.000000,37,0,-1.000000,581.280000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1437,1440.000000,37,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1394,1440.000000,38,0,-1.000000,583.680000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1433,1440.000000,38,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,38,0,-1.000000,584.960000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on9,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,39,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,39,0,-1.000000,626.080000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1400,1440.000000,39,0,-1.000000,582.560000,baseline,lora,60 +on10,0,0,24,0,0,1379,1440.000000,39,0,-1.000000,589.440000,baseline,lora,60 +on5,0,0,24,0,0,1404,1440.000000,39,0,-1.000000,581.920000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,585.600000,baseline,lora,60 +on9,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 +on11,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1335,1440.000000,39,0,-1.000000,602.080000,baseline,lora,60 +on8,0,0,24,0,0,1379,1440.000000,39,0,-1.000000,594.240000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,39,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 +on11,0,0,24,0,0,1397,1440.000000,40,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1408,1440.000000,40,0,-1.000000,581.280000,baseline,lora,60 +on1,0,0,24,0,0,1431,1440.000000,40,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1376,1440.000000,40,0,-1.000000,587.680000,baseline,lora,60 +on6,0,0,24,0,0,1387,1440.000000,40,0,-1.000000,584.640000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1395,1440.000000,40,0,-1.000000,583.360000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,40,0,-1.000000,626.080000,baseline,lora,60 +on12,0,0,24,0,0,1430,1440.000000,40,0,-1.000000,582.560000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1392,1440.000000,40,0,-1.000000,583.840000,baseline,lora,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1390,1440.000000,41,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1409,1440.000000,41,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,41,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 +on0,1,0,24,0,0,0,1440.000000,41,0,-1.000000,615.360000,baseline,lora,60 +on6,0,0,24,0,0,1337,1440.000000,41,0,-1.000000,593.440000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1433,1440.000000,41,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1392,1440.000000,41,0,-1.000000,585.600000,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 +on2,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1428,1440.000000,42,0,-1.000000,578.080000,baseline,lora,60 +on8,0,0,24,0,0,1382,1440.000000,42,0,-1.000000,592.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,42,0,-1.000000,612.960000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1385,1440.000000,42,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1386,1440.000000,42,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1400,1440.000000,42,0,-1.000000,582.560000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1436,1440.000000,42,0,-1.000000,576.800000,baseline,lora,60 +on5,0,0,24,0,0,1406,1440.000000,43,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1398,1440.000000,43,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1391,1440.000000,43,0,-1.000000,584.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1427,1440.000000,43,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,43,0,-1.000000,620.960000,baseline,lora,60 +on7,0,0,24,0,0,1389,1440.000000,43,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1391,1440.000000,43,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1404,1440.000000,43,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1351,1440.000000,44,0,-1.000000,597.600000,baseline,lora,60 +on7,0,0,24,0,0,1396,1440.000000,44,0,-1.000000,583.200000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1429,1440.000000,44,0,-1.000000,578.080000,baseline,lora,60 +on9,0,0,24,0,0,1363,1440.000000,44,0,-1.000000,588.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,44,0,-1.000000,635.840000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1411,1440.000000,44,0,-1.000000,587.200000,baseline,lora,60 +on11,0,0,24,0,0,1381,1440.000000,44,0,-1.000000,586.400000,baseline,lora,60 +on8,0,0,24,0,0,1389,1440.000000,44,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1382,1440.000000,45,0,-1.000000,588.640000,baseline,lora,60 +on5,0,0,24,0,0,1416,1440.000000,45,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1401,1440.000000,45,0,-1.000000,582.400000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1424,1440.000000,45,0,-1.000000,585.600000,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,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,598.880000,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 +on6,0,0,24,0,0,1399,1440.000000,46,0,-1.000000,592.320000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,46,0,-1.000000,623.200000,baseline,lora,60 +on9,0,0,24,0,0,1357,1440.000000,46,0,-1.000000,595.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1414,1440.000000,46,0,-1.000000,580.320000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1412,1440.000000,46,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1415,1440.000000,46,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1357,1440.000000,46,0,-1.000000,593.120000,baseline,lora,60 +on12,0,0,24,0,0,1426,1440.000000,47,0,-1.000000,578.400000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1353,1440.000000,47,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1352,1440.000000,47,0,-1.000000,594.880000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,47,0,-1.000000,630.560000,baseline,lora,60 +on8,0,0,24,0,0,1392,1440.000000,47,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1396,1440.000000,47,0,-1.000000,583.200000,baseline,lora,60 +on5,0,0,24,0,0,1418,1440.000000,47,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1412,1440.000000,47,0,-1.000000,585.120000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1422,1440.000000,48,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1404,1440.000000,48,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1393,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 +on3,0,0,24,0,0,1439,1440.000000,48,0,-1.000000,576.320000,baseline,lora,60 +on12,0,0,24,0,0,1392,1440.000000,48,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,48,0,-1.000000,627.680000,baseline,lora,60 +on7,0,0,24,0,0,1385,1440.000000,48,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1422,1440.000000,48,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1395,1440.000000,48,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1395,1440.000000,48,0,-1.000000,590.880000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1393,1440.000000,49,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1409,1440.000000,49,0,-1.000000,581.120000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,49,0,-1.000000,600.160000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on5,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 +on9,0,0,24,0,0,1405,1440.000000,49,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1407,1440.000000,49,0,-1.000000,581.440000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on2,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,50,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1385,1440.000000,50,0,-1.000000,586.080000,baseline,lora,60 +on7,0,0,24,0,0,1420,1440.000000,50,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1425,1440.000000,50,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1325,1440.000000,50,0,-1.000000,599.680000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,50,0,-1.000000,614.240000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1439,1440.000000,50,0,-1.000000,576.480000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1416,1440.000000,50,0,-1.000000,580.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1422,1440.000000,51,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1410,1440.000000,51,0,-1.000000,580.960000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1430,1440.000000,51,0,-1.000000,577.760000,baseline,lora,60 +on9,0,0,24,0,0,1361,1440.000000,51,0,-1.000000,593.280000,baseline,lora,60 +on8,0,0,24,0,0,1365,1440.000000,51,0,-1.000000,588.960000,baseline,lora,60 +on10,0,0,24,0,0,1428,1440.000000,51,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1341,1440.000000,51,0,-1.000000,595.360000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,51,0,-1.000000,629.440000,baseline,lora,60 +on7,0,0,24,0,0,1401,1440.000000,52,0,-1.000000,582.720000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,52,0,-1.000000,598.880000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1381,1440.000000,52,0,-1.000000,585.760000,baseline,lora,60 +on4,0,0,24,0,0,1402,1440.000000,52,0,-1.000000,586.720000,baseline,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1402,1440.000000,53,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1420,1440.000000,53,0,-1.000000,579.360000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,53,0,-1.000000,632.160000,baseline,lora,60 +on4,0,0,24,0,0,1350,1440.000000,53,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1388,1440.000000,53,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1383,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 +on11,0,0,24,0,0,1435,1440.000000,53,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1402,1440.000000,53,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1398,1440.000000,53,0,-1.000000,582.880000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1391,1440.000000,54,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,54,0,-1.000000,626.880000,baseline,lora,60 +on7,0,0,24,0,0,1397,1440.000000,54,0,-1.000000,583.040000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1362,1440.000000,54,0,-1.000000,592.960000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1340,1440.000000,54,0,-1.000000,598.880000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1404,1440.000000,54,0,-1.000000,599.520000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1438,1440.000000,55,0,-1.000000,576.480000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1375,1440.000000,55,0,-1.000000,586.720000,baseline,lora,60 +on10,0,0,24,0,0,1386,1440.000000,55,0,-1.000000,584.800000,baseline,lora,60 +on2,0,0,24,0,0,1402,1440.000000,55,0,-1.000000,589.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,55,0,-1.000000,630.720000,baseline,lora,60 +on7,0,0,24,0,0,1387,1440.000000,55,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1361,1440.000000,55,0,-1.000000,588.960000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1399,1440.000000,55,0,-1.000000,582.720000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1395,1440.000000,56,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,56,0,-1.000000,633.280000,baseline,lora,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1339,1440.000000,56,0,-1.000000,595.040000,baseline,lora,60 +on2,0,0,24,0,0,1437,1440.000000,56,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1405,1440.000000,56,0,-1.000000,581.760000,baseline,lora,60 +on3,0,0,24,0,0,1415,1440.000000,56,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1395,1440.000000,56,0,-1.000000,583.360000,baseline,lora,60 +on5,0,0,24,0,0,1358,1440.000000,56,0,-1.000000,594.560000,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,1428,1440.000000,56,0,-1.000000,578.080000,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 +on0,1,0,24,0,0,0,1440.000000,57,0,-1.000000,633.120000,baseline,lora,60 +on3,0,0,24,0,0,1306,1440.000000,57,0,-1.000000,600.480000,baseline,lora,60 +on10,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 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1435,1440.000000,57,0,-1.000000,576.960000,baseline,lora,60 +on11,0,0,24,0,0,1399,1440.000000,57,0,-1.000000,591.520000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1388,1440.000000,57,0,-1.000000,592.800000,baseline,lora,60 +on8,0,0,24,0,0,1326,1440.000000,57,0,-1.000000,599.680000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1436,1440.000000,58,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1429,1440.000000,58,0,-1.000000,577.920000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,58,0,-1.000000,598.400000,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,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1433,1440.000000,58,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1345,1440.000000,58,0,-1.000000,592.480000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1434,1440.000000,58,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1431,1440.000000,58,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1382,1440.000000,59,0,-1.000000,585.600000,baseline,lora,60 +on6,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,615.520000,baseline,lora,60 +on5,0,0,24,0,0,1438,1440.000000,59,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1408,1440.000000,59,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1395,1440.000000,59,0,-1.000000,583.360000,baseline,lora,60 +on7,0,0,24,0,0,1388,1440.000000,59,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1427,1440.000000,59,0,-1.000000,578.240000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1402,1440.000000,59,0,-1.000000,582.240000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on7,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 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1431,1440.000000,60,0,-1.000000,577.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,60,0,-1.000000,584.640000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1405,1440.000000,60,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1434,1440.000000,60,0,-1.000000,577.120000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.160000,baseline,lora,60 +on10,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 +on10,0,0,24,0,0,1392,1440.000000,61,0,-1.000000,583.840000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1400,1440.000000,61,0,-1.000000,582.560000,baseline,lora,60 +on6,0,0,24,0,0,1341,1440.000000,61,0,-1.000000,599.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,61,0,-1.000000,639.200000,baseline,lora,60 +on8,0,0,24,0,0,1340,1440.000000,61,0,-1.000000,604.800000,baseline,lora,60 +on9,0,0,24,0,0,1430,1440.000000,61,0,-1.000000,577.760000,baseline,lora,60 +on7,0,0,24,0,0,1420,1440.000000,61,0,-1.000000,585.600000,baseline,lora,60 +on2,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 +on1,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1419,1440.000000,61,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1395,1440.000000,61,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1394,1440.000000,62,0,-1.000000,583.520000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,62,0,-1.000000,612.960000,baseline,lora,60 +on1,0,0,24,0,0,1393,1440.000000,62,0,-1.000000,583.680000,baseline,lora,60 +on5,0,0,24,0,0,1405,1440.000000,62,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1421,1440.000000,62,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1417,1440.000000,62,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on12,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 +on3,0,0,24,0,0,1385,1440.000000,62,0,-1.000000,584.960000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1364,1440.000000,63,0,-1.000000,588.960000,baseline,lora,60 +on4,0,0,24,0,0,1418,1440.000000,63,0,-1.000000,579.680000,baseline,lora,60 +on5,0,0,24,0,0,1409,1440.000000,63,0,-1.000000,581.120000,baseline,lora,60 +on6,0,0,24,0,0,1398,1440.000000,63,0,-1.000000,604.800000,baseline,lora,60 +on2,0,0,24,0,0,1418,1440.000000,63,0,-1.000000,579.680000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1403,1440.000000,63,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1373,1440.000000,63,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1397,1440.000000,63,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1413,1440.000000,63,0,-1.000000,580.480000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,63,0,-1.000000,637.280000,baseline,lora,60 +on8,0,0,24,0,0,1438,1440.000000,63,0,-1.000000,576.480000,baseline,lora,60 +on2,0,0,24,0,0,1373,1440.000000,64,0,-1.000000,587.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on8,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 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,64,0,-1.000000,608.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1381,1440.000000,64,0,-1.000000,593.760000,baseline,lora,60 +on12,0,0,24,0,0,1404,1440.000000,64,0,-1.000000,595.200000,baseline,lora,60 +on4,0,0,24,0,0,1409,1440.000000,64,0,-1.000000,581.120000,baseline,lora,60 +on3,0,0,24,0,0,1425,1440.000000,65,0,-1.000000,578.560000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1431,1440.000000,65,0,-1.000000,577.600000,baseline,lora,60 +on2,0,0,24,0,0,1343,1440.000000,65,0,-1.000000,591.840000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1399,1440.000000,65,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1398,1440.000000,65,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,65,0,-1.000000,617.760000,baseline,lora,60 +on7,0,0,24,0,0,1390,1440.000000,65,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,65,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 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1321,1440.000000,66,0,-1.000000,595.520000,baseline,lora,60 +on8,0,0,24,0,0,1433,1440.000000,66,0,-1.000000,577.280000,baseline,lora,60 +on5,0,0,24,0,0,1402,1440.000000,66,0,-1.000000,582.240000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on10,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 +on6,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,66,0,-1.000000,603.040000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1408,1440.000000,67,0,-1.000000,585.600000,baseline,lora,60 +on3,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,610.080000,baseline,lora,60 +on9,0,0,24,0,0,1430,1440.000000,67,0,-1.000000,586.240000,baseline,lora,60 +on10,0,0,24,0,0,1408,1440.000000,67,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1410,1440.000000,67,0,-1.000000,581.120000,baseline,lora,60 +on2,0,0,24,0,0,1339,1440.000000,67,0,-1.000000,595.040000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,lora,60 +on8,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 +on4,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,lora,60 +on6,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,68,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,68,0,-1.000000,604.800000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1382,1440.000000,68,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1399,1440.000000,68,0,-1.000000,589.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1425,1440.000000,68,0,-1.000000,595.200000,baseline,lora,60 +on6,0,0,24,0,0,1397,1440.000000,68,0,-1.000000,586.400000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1425,1440.000000,68,0,-1.000000,578.560000,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 +on11,0,0,24,0,0,1403,1440.000000,69,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,69,0,-1.000000,644.800000,baseline,lora,60 +on10,0,0,24,0,0,1359,1440.000000,69,0,-1.000000,591.200000,baseline,lora,60 +on12,0,0,24,0,0,1386,1440.000000,69,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1364,1440.000000,69,0,-1.000000,588.480000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1373,1440.000000,69,0,-1.000000,587.040000,baseline,lora,60 +on5,0,0,24,0,0,1387,1440.000000,69,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1435,1440.000000,69,0,-1.000000,576.960000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1395,1440.000000,69,0,-1.000000,590.560000,baseline,lora,60 +on10,0,0,24,0,0,1366,1440.000000,70,0,-1.000000,591.520000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1384,1440.000000,70,0,-1.000000,585.120000,baseline,lora,60 +on1,0,0,24,0,0,1393,1440.000000,70,0,-1.000000,583.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,70,0,-1.000000,632.480000,baseline,lora,60 +on6,0,0,24,0,0,1433,1440.000000,70,0,-1.000000,577.280000,baseline,lora,60 +on12,0,0,24,0,0,1384,1440.000000,70,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1408,1440.000000,70,0,-1.000000,585.600000,baseline,lora,60 +on7,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 +on3,0,0,24,0,0,1397,1440.000000,70,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1412,1440.000000,70,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 +on0,1,0,24,0,0,0,1440.000000,71,0,-1.000000,627.040000,baseline,lora,60 +on2,0,0,24,0,0,1374,1440.000000,71,0,-1.000000,587.520000,baseline,lora,60 +on3,0,0,24,0,0,1404,1440.000000,71,0,-1.000000,585.600000,baseline,lora,60 +on8,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 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1411,1440.000000,71,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1403,1440.000000,71,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1335,1440.000000,71,0,-1.000000,596.000000,baseline,lora,60 +on5,0,0,24,0,0,1404,1440.000000,71,0,-1.000000,595.200000,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,1431,1440.000000,72,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,72,0,-1.000000,624.320000,baseline,lora,60 +on6,0,0,24,0,0,1382,1440.000000,72,0,-1.000000,586.400000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1399,1440.000000,72,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1399,1440.000000,72,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1403,1440.000000,72,0,-1.000000,582.080000,baseline,lora,60 +on1,0,0,24,0,0,1332,1440.000000,72,0,-1.000000,593.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1405,1440.000000,73,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1437,1440.000000,73,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,73,0,-1.000000,618.400000,baseline,lora,60 +on1,0,0,24,0,0,1370,1440.000000,73,0,-1.000000,587.520000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1390,1440.000000,73,0,-1.000000,588.160000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1401,1440.000000,73,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1412,1440.000000,73,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1409,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 +on5,0,0,24,0,0,1414,1440.000000,74,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on9,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 +on11,0,0,24,0,0,1371,1440.000000,74,0,-1.000000,590.400000,baseline,lora,60 +on12,0,0,24,0,0,1381,1440.000000,74,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1428,1440.000000,74,0,-1.000000,578.080000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,74,0,-1.000000,616.640000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,74,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1384,1440.000000,74,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1422,1440.000000,75,0,-1.000000,579.040000,baseline,lora,60 +on8,0,0,24,0,0,1403,1440.000000,75,0,-1.000000,592.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,75,0,-1.000000,612.160000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1433,1440.000000,75,0,-1.000000,577.280000,baseline,lora,60 +on2,0,0,24,0,0,1336,1440.000000,75,0,-1.000000,593.120000,baseline,lora,60 +on12,0,0,24,0,0,1412,1440.000000,75,0,-1.000000,580.800000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1418,1440.000000,75,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1391,1440.000000,76,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1409,1440.000000,76,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,76,0,-1.000000,609.760000,baseline,lora,60 +on4,0,0,24,0,0,1405,1440.000000,76,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1430,1440.000000,76,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1361,1440.000000,76,0,-1.000000,595.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on10,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 +on7,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1396,1440.000000,77,0,-1.000000,583.200000,baseline,lora,60 +on2,0,0,24,0,0,1412,1440.000000,77,0,-1.000000,585.600000,baseline,lora,60 +on9,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,1393,1440.000000,77,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1424,1440.000000,77,0,-1.000000,578.720000,baseline,lora,60 +on8,0,0,24,0,0,1342,1440.000000,77,0,-1.000000,604.160000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,77,0,-1.000000,621.600000,baseline,lora,60 +on3,0,0,24,0,0,1396,1440.000000,77,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1372,1440.000000,78,0,-1.000000,591.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,78,0,-1.000000,625.760000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1434,1440.000000,78,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1422,1440.000000,78,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1372,1440.000000,78,0,-1.000000,595.200000,baseline,lora,60 +on9,0,0,24,0,0,1401,1440.000000,78,0,-1.000000,588.480000,baseline,lora,60 +on5,0,0,24,0,0,1386,1440.000000,78,0,-1.000000,584.800000,baseline,lora,60 +on12,0,0,24,0,0,1405,1440.000000,78,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1428,1440.000000,78,0,-1.000000,578.080000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,78,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 +on4,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on12,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 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1404,1440.000000,79,0,-1.000000,581.920000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1374,1440.000000,79,0,-1.000000,586.880000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,79,0,-1.000000,592.800000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1433,1440.000000,80,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1358,1440.000000,80,0,-1.000000,594.080000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,80,0,-1.000000,616.160000,baseline,lora,60 +on9,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 +on7,0,0,24,0,0,1353,1440.000000,80,0,-1.000000,590.240000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1409,1440.000000,80,0,-1.000000,590.400000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1407,1440.000000,80,0,-1.000000,581.440000,baseline,lora,60 +on10,0,0,24,0,0,1377,1440.000000,81,0,-1.000000,600.480000,baseline,lora,60 +on9,0,0,24,0,0,1429,1440.000000,81,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1411,1440.000000,81,0,-1.000000,585.600000,baseline,lora,60 +on5,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 +on11,0,0,24,0,0,1397,1440.000000,81,0,-1.000000,583.040000,baseline,lora,60 +on2,0,0,24,0,0,1369,1440.000000,81,0,-1.000000,592.320000,baseline,lora,60 +on4,0,0,24,0,0,1391,1440.000000,81,0,-1.000000,585.600000,baseline,lora,60 +on8,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,622.080000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1429,1440.000000,81,0,-1.000000,577.920000,baseline,lora,60 +on3,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,82,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1384,1440.000000,82,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on10,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,594.400000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1384,1440.000000,82,0,-1.000000,585.120000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1392,1440.000000,83,0,-1.000000,584.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,83,0,-1.000000,626.240000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1407,1440.000000,83,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1387,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 +on6,0,0,24,0,0,1352,1440.000000,83,0,-1.000000,604.320000,baseline,lora,60 +on10,0,0,24,0,0,1386,1440.000000,83,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1411,1440.000000,83,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,84,0,-1.000000,579.840000,baseline,lora,60 +on3,0,0,24,0,0,1407,1440.000000,84,0,-1.000000,581.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,84,0,-1.000000,631.520000,baseline,lora,60 +on10,0,0,24,0,0,1405,1440.000000,84,0,-1.000000,589.120000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.160000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1409,1440.000000,84,0,-1.000000,581.120000,baseline,lora,60 +on2,0,0,24,0,0,1430,1440.000000,84,0,-1.000000,577.760000,baseline,lora,60 +on8,0,0,24,0,0,1239,1440.000000,84,0,-1.000000,616.160000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,85,0,-1.000000,628.000000,baseline,lora,60 +on2,0,0,24,0,0,1395,1440.000000,85,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1362,1440.000000,85,0,-1.000000,590.560000,baseline,lora,60 +on3,0,0,24,0,0,1429,1440.000000,85,0,-1.000000,577.920000,baseline,lora,60 +on10,0,0,24,0,0,1413,1440.000000,85,0,-1.000000,580.480000,baseline,lora,60 +on4,0,0,24,0,0,1409,1440.000000,85,0,-1.000000,581.120000,baseline,lora,60 +on9,0,0,24,0,0,1402,1440.000000,85,0,-1.000000,590.240000,baseline,lora,60 +on11,0,0,24,0,0,1406,1440.000000,85,0,-1.000000,581.600000,baseline,lora,60 +on8,0,0,24,0,0,1413,1440.000000,85,0,-1.000000,580.480000,baseline,lora,60 +on12,0,0,24,0,0,1433,1440.000000,85,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1425,1440.000000,85,0,-1.000000,578.560000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,86,0,-1.000000,609.920000,baseline,lora,60 +on3,0,0,24,0,0,1400,1440.000000,86,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1426,1440.000000,86,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1394,1440.000000,86,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1402,1440.000000,86,0,-1.000000,582.400000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1380,1440.000000,86,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1434,1440.000000,86,0,-1.000000,577.120000,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,1440,1440.000000,86,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,87,0,-1.000000,613.120000,baseline,lora,60 +on5,0,0,24,0,0,1403,1440.000000,87,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1358,1440.000000,87,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1409,1440.000000,87,0,-1.000000,581.120000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1386,1440.000000,87,0,-1.000000,588.320000,baseline,lora,60 +on1,0,0,24,0,0,1419,1440.000000,87,0,-1.000000,579.520000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1372,1440.000000,88,0,-1.000000,595.040000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1381,1440.000000,88,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1302,1440.000000,88,0,-1.000000,598.720000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,88,0,-1.000000,640.320000,baseline,lora,60 +on8,0,0,24,0,0,1375,1440.000000,88,0,-1.000000,601.280000,baseline,lora,60 +on7,0,0,24,0,0,1403,1440.000000,88,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1417,1440.000000,88,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on1,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 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1429,1440.000000,89,0,-1.000000,577.920000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1413,1440.000000,89,0,-1.000000,580.480000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,89,0,-1.000000,590.400000,baseline,lora,60 +on11,0,0,24,0,0,1425,1440.000000,89,0,-1.000000,578.560000,baseline,lora,60 +on6,0,0,24,0,0,1420,1440.000000,89,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1428,1440.000000,89,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1422,1440.000000,90,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1419,1440.000000,90,0,-1.000000,579.520000,baseline,lora,60 +on1,0,0,24,0,0,1395,1440.000000,90,0,-1.000000,590.720000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1422,1440.000000,90,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1401,1440.000000,90,0,-1.000000,595.200000,baseline,lora,60 +on6,0,0,24,0,0,1388,1440.000000,90,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,90,0,-1.000000,638.080000,baseline,lora,60 +on3,0,0,24,0,0,1390,1440.000000,90,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1399,1440.000000,90,0,-1.000000,582.720000,baseline,lora,60 +on12,0,0,24,0,0,1353,1440.000000,90,0,-1.000000,593.920000,baseline,lora,60 +on10,0,0,24,0,0,1438,1440.000000,90,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1399,1440.000000,91,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1439,1440.000000,91,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1387,1440.000000,91,0,-1.000000,588.960000,baseline,lora,60 +on6,0,0,24,0,0,1370,1440.000000,91,0,-1.000000,595.200000,baseline,lora,60 +on9,0,0,24,0,0,1409,1440.000000,91,0,-1.000000,581.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,91,0,-1.000000,624.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 +on3,0,0,24,0,0,1401,1440.000000,91,0,-1.000000,582.400000,baseline,lora,60 +on4,0,0,24,0,0,1413,1440.000000,91,0,-1.000000,581.760000,baseline,lora,60 +on12,0,0,24,0,0,1412,1440.000000,91,0,-1.000000,580.640000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,91,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 +on4,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 +on7,0,0,24,0,0,1383,1440.000000,92,0,-1.000000,585.440000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,92,0,-1.000000,606.400000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1375,1440.000000,92,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1396,1440.000000,92,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1428,1440.000000,92,0,-1.000000,578.080000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1435,1440.000000,92,0,-1.000000,583.200000,baseline,lora,60 +on6,0,0,24,0,0,1400,1440.000000,93,0,-1.000000,582.720000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1437,1440.000000,93,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1430,1440.000000,93,0,-1.000000,577.760000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,93,0,-1.000000,593.440000,baseline,lora,60 +on5,0,0,24,0,0,1395,1440.000000,93,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.160000,baseline,lora,60 +on3,0,0,24,0,0,1436,1440.000000,93,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1413,1440.000000,94,0,-1.000000,580.480000,baseline,lora,60 +on5,0,0,24,0,0,1389,1440.000000,94,0,-1.000000,587.360000,baseline,lora,60 +on10,0,0,24,0,0,1382,1440.000000,94,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1395,1440.000000,94,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on1,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,609.280000,baseline,lora,60 +on4,0,0,24,0,0,1421,1440.000000,94,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1439,1440.000000,94,0,-1.000000,576.320000,baseline,lora,60 +on12,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 +on6,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1349,1440.000000,95,0,-1.000000,591.360000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1425,1440.000000,95,0,-1.000000,578.560000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1391,1440.000000,95,0,-1.000000,584.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1368,1440.000000,95,0,-1.000000,590.720000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,95,0,-1.000000,613.280000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1423,1440.000000,96,0,-1.000000,578.880000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on2,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,1427,1440.000000,96,0,-1.000000,578.240000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1401,1440.000000,96,0,-1.000000,582.400000,baseline,lora,60 +on10,0,0,24,0,0,1399,1440.000000,96,0,-1.000000,591.680000,baseline,lora,60 +on7,0,0,24,0,0,1398,1440.000000,96,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,96,0,-1.000000,607.680000,baseline,lora,60 +on6,0,0,24,0,0,1401,1440.000000,96,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1403,1440.000000,97,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1406,1440.000000,97,0,-1.000000,581.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1389,1440.000000,97,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1388,1440.000000,97,0,-1.000000,584.480000,baseline,lora,60 +on6,0,0,24,0,0,1429,1440.000000,97,0,-1.000000,577.920000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,97,0,-1.000000,616.480000,baseline,lora,60 +on3,0,0,24,0,0,1385,1440.000000,97,0,-1.000000,584.960000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1434,1440.000000,97,0,-1.000000,580.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,98,0,-1.000000,606.240000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1417,1440.000000,98,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1388,1440.000000,98,0,-1.000000,595.200000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1382,1440.000000,98,0,-1.000000,585.440000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1405,1440.000000,98,0,-1.000000,581.920000,baseline,lora,60 +on5,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 +on3,0,0,24,0,0,1426,1440.000000,98,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1435,1440.000000,99,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1383,1440.000000,99,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1393,1440.000000,99,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1389,1440.000000,99,0,-1.000000,592.160000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1406,1440.000000,99,0,-1.000000,581.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1381,1440.000000,99,0,-1.000000,593.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,99,0,-1.000000,634.880000,baseline,lora,60 +on6,0,0,24,0,0,1356,1440.000000,99,0,-1.000000,592.800000,baseline,lora,60 +on12,0,0,24,0,0,1420,1440.000000,99,0,-1.000000,579.360000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1397,1440.000000,100,0,-1.000000,583.040000,baseline,lora,60 +on8,0,0,24,0,0,1405,1440.000000,100,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1437,1440.000000,100,0,-1.000000,576.640000,baseline,lora,60 +on3,0,0,24,0,0,1433,1440.000000,100,0,-1.000000,585.600000,baseline,lora,60 +on5,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,612.000000,baseline,lora,60 +on12,0,0,24,0,0,1385,1440.000000,100,0,-1.000000,585.600000,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,1405,1440.000000,100,0,-1.000000,588.800000,baseline,lora,60 +on10,0,0,24,0,0,1401,1440.000000,100,0,-1.000000,582.400000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1394,1440.000000,101,0,-1.000000,583.520000,baseline,lora,60 +on1,0,0,24,0,0,1415,1440.000000,101,0,-1.000000,585.600000,baseline,lora,60 +on4,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,615.840000,baseline,lora,60 +on8,0,0,24,0,0,1396,1440.000000,101,0,-1.000000,589.440000,baseline,lora,60 +on3,0,0,24,0,0,1406,1440.000000,101,0,-1.000000,581.600000,baseline,lora,60 +on5,0,0,24,0,0,1401,1440.000000,101,0,-1.000000,586.720000,baseline,lora,60 +on2,0,0,24,0,0,1403,1440.000000,101,0,-1.000000,582.080000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on11,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 +on7,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1425,1440.000000,101,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1424,1440.000000,102,0,-1.000000,578.720000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,102,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 +on9,0,0,24,0,0,1382,1440.000000,102,0,-1.000000,585.440000,baseline,lora,60 +on5,0,0,24,0,0,1368,1440.000000,102,0,-1.000000,598.080000,baseline,lora,60 +on12,0,0,24,0,0,1396,1440.000000,102,0,-1.000000,583.200000,baseline,lora,60 +on4,0,0,24,0,0,1426,1440.000000,102,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,102,0,-1.000000,621.760000,baseline,lora,60 +on2,0,0,24,0,0,1409,1440.000000,102,0,-1.000000,581.280000,baseline,lora,60 +on3,0,0,24,0,0,1426,1440.000000,102,0,-1.000000,581.920000,baseline,lora,60 +on7,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 +on6,0,0,24,0,0,1414,1440.000000,102,0,-1.000000,585.600000,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,1440,1440.000000,103,0,-1.000000,576.160000,baseline,lora,60 +on11,0,0,24,0,0,1408,1440.000000,103,0,-1.000000,581.280000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1433,1440.000000,103,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1437,1440.000000,103,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1406,1440.000000,103,0,-1.000000,581.600000,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,598.560000,baseline,lora,60 +on9,0,0,24,0,0,1407,1440.000000,103,0,-1.000000,581.600000,baseline,lora,60 +on8,0,0,24,0,0,1416,1440.000000,103,0,-1.000000,580.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1355,1440.000000,104,0,-1.000000,594.080000,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,1379,1440.000000,104,0,-1.000000,586.080000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,104,0,-1.000000,620.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1430,1440.000000,104,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1388,1440.000000,104,0,-1.000000,588.320000,baseline,lora,60 +on1,0,0,24,0,0,1403,1440.000000,104,0,-1.000000,582.080000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1419,1440.000000,104,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1439,1440.000000,105,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1436,1440.000000,105,0,-1.000000,576.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,105,0,-1.000000,603.040000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1413,1440.000000,105,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1386,1440.000000,105,0,-1.000000,584.800000,baseline,lora,60 +on5,0,0,24,0,0,1411,1440.000000,105,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1413,1440.000000,105,0,-1.000000,580.480000,baseline,lora,60 +on4,0,0,24,0,0,1420,1440.000000,105,0,-1.000000,579.360000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1333,1440.000000,106,0,-1.000000,593.440000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,106,0,-1.000000,651.200000,baseline,lora,60 +on4,0,0,24,0,0,1413,1440.000000,106,0,-1.000000,581.120000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,582.720000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1401,1440.000000,106,0,-1.000000,582.400000,baseline,lora,60 +on9,0,0,24,0,0,1332,1440.000000,106,0,-1.000000,600.960000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1397,1440.000000,106,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1421,1440.000000,106,0,-1.000000,584.160000,baseline,lora,60 +on6,0,0,24,0,0,1326,1440.000000,106,0,-1.000000,594.560000,baseline,lora,60 +on1,0,0,24,0,0,1389,1440.000000,107,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1433,1440.000000,107,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on4,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 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,107,0,-1.000000,586.880000,baseline,lora,60 +on7,0,0,24,0,0,1433,1440.000000,107,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on6,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 +on2,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 +on4,0,0,24,0,0,1425,1440.000000,108,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1439,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 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1382,1440.000000,108,0,-1.000000,585.600000,baseline,lora,60 +on1,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 +on10,0,0,24,0,0,1398,1440.000000,108,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1431,1440.000000,108,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,108,0,-1.000000,596.800000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1415,1440.000000,109,0,-1.000000,580.160000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1419,1440.000000,109,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on12,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 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1401,1440.000000,109,0,-1.000000,582.400000,baseline,lora,60 +on7,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,603.200000,baseline,lora,60 +on11,0,0,24,0,0,1360,1440.000000,109,0,-1.000000,590.720000,baseline,lora,60 +on1,0,0,24,0,0,1410,1440.000000,110,0,-1.000000,594.560000,baseline,lora,60 +on9,0,0,24,0,0,1365,1440.000000,110,0,-1.000000,588.320000,baseline,lora,60 +on5,0,0,24,0,0,1395,1440.000000,110,0,-1.000000,583.360000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1402,1440.000000,110,0,-1.000000,582.240000,baseline,lora,60 +on3,0,0,24,0,0,1402,1440.000000,110,0,-1.000000,582.240000,baseline,lora,60 +on12,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 +on0,1,0,24,0,0,0,1440.000000,110,0,-1.000000,644.480000,baseline,lora,60 +on2,0,0,24,0,0,1378,1440.000000,110,0,-1.000000,594.080000,baseline,lora,60 +on4,0,0,24,0,0,1391,1440.000000,110,0,-1.000000,584.160000,baseline,lora,60 +on10,0,0,24,0,0,1427,1440.000000,110,0,-1.000000,582.080000,baseline,lora,60 +on11,0,0,24,0,0,1376,1440.000000,110,0,-1.000000,586.560000,baseline,lora,60 +on2,0,0,24,0,0,1393,1440.000000,111,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,111,0,-1.000000,600.960000,baseline,lora,60 +on4,0,0,24,0,0,1382,1440.000000,111,0,-1.000000,585.440000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1399,1440.000000,111,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1434,1440.000000,111,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on1,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 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1429,1440.000000,112,0,-1.000000,595.200000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1371,1440.000000,112,0,-1.000000,587.360000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1410,1440.000000,112,0,-1.000000,583.520000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1341,1440.000000,112,0,-1.000000,599.840000,baseline,lora,60 +on2,0,0,24,0,0,1412,1440.000000,112,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,112,0,-1.000000,624.960000,baseline,lora,60 +on6,0,0,24,0,0,1431,1440.000000,112,0,-1.000000,577.600000,baseline,lora,60 +on7,0,0,24,0,0,1392,1440.000000,112,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1423,1440.000000,113,0,-1.000000,578.880000,baseline,lora,60 +on2,0,0,24,0,0,1384,1440.000000,113,0,-1.000000,585.120000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1399,1440.000000,113,0,-1.000000,585.440000,baseline,lora,60 +on10,0,0,24,0,0,1436,1440.000000,113,0,-1.000000,576.800000,baseline,lora,60 +on4,0,0,24,0,0,1402,1440.000000,113,0,-1.000000,582.240000,baseline,lora,60 +on11,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,601.760000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1405,1440.000000,114,0,-1.000000,581.760000,baseline,lora,60 +on5,0,0,24,0,0,1438,1440.000000,114,0,-1.000000,576.480000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,114,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 +on3,0,0,24,0,0,1410,1440.000000,114,0,-1.000000,580.960000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1394,1440.000000,114,0,-1.000000,583.520000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,114,0,-1.000000,598.080000,baseline,lora,60 +on6,0,0,24,0,0,1420,1440.000000,114,0,-1.000000,579.360000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1392,1440.000000,115,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1400,1440.000000,115,0,-1.000000,582.560000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1407,1440.000000,115,0,-1.000000,583.840000,baseline,lora,60 +on11,0,0,24,0,0,1387,1440.000000,115,0,-1.000000,584.640000,baseline,lora,60 +on1,0,0,24,0,0,1381,1440.000000,115,0,-1.000000,585.760000,baseline,lora,60 +on7,0,0,24,0,0,1417,1440.000000,115,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1425,1440.000000,115,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1400,1440.000000,115,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1376,1440.000000,115,0,-1.000000,599.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,115,0,-1.000000,638.240000,baseline,lora,60 +on1,0,0,24,0,0,1400,1440.000000,116,0,-1.000000,584.160000,baseline,lora,60 +on6,0,0,24,0,0,1415,1440.000000,116,0,-1.000000,580.160000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on3,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 +on5,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1358,1440.000000,116,0,-1.000000,592.960000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,116,0,-1.000000,618.560000,baseline,lora,60 +on7,0,0,24,0,0,1387,1440.000000,116,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1416,1440.000000,116,0,-1.000000,580.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1407,1440.000000,116,0,-1.000000,581.600000,baseline,lora,60 +on4,0,0,24,0,0,1365,1440.000000,117,0,-1.000000,588.320000,baseline,lora,60 +on2,0,0,24,0,0,1397,1440.000000,117,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1426,1440.000000,117,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,117,0,-1.000000,624.960000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1404,1440.000000,117,0,-1.000000,595.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1412,1440.000000,117,0,-1.000000,580.640000,baseline,lora,60 +on5,0,0,24,0,0,1339,1440.000000,117,0,-1.000000,594.880000,baseline,lora,60 +on2,0,0,24,0,0,1338,1440.000000,118,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1418,1440.000000,118,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,lora,60 +on7,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 +on5,0,0,24,0,0,1417,1440.000000,118,0,-1.000000,579.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,118,0,-1.000000,628.800000,baseline,lora,60 +on8,0,0,24,0,0,1385,1440.000000,118,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1324,1440.000000,118,0,-1.000000,596.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1437,1440.000000,118,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1427,1440.000000,119,0,-1.000000,578.240000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1359,1440.000000,119,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1387,1440.000000,119,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,119,0,-1.000000,614.560000,baseline,lora,60 +on8,0,0,24,0,0,1419,1440.000000,119,0,-1.000000,579.520000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,119,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1397,1440.000000,119,0,-1.000000,583.040000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,120,0,-1.000000,590.240000,baseline,lora,60 +on4,0,0,24,0,0,1422,1440.000000,120,0,-1.000000,579.040000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on9,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 +on5,0,0,24,0,0,1420,1440.000000,120,0,-1.000000,579.360000,baseline,lora,60 +on6,0,0,24,0,0,1433,1440.000000,120,0,-1.000000,577.280000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1427,1440.000000,120,0,-1.000000,578.240000,baseline,lora,60 +on7,0,0,24,0,0,1414,1440.000000,120,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1398,1440.000000,121,0,-1.000000,582.880000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1402,1440.000000,121,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,121,0,-1.000000,589.120000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1334,1440.000000,122,0,-1.000000,593.280000,baseline,lora,60 +on8,0,0,24,0,0,1424,1440.000000,122,0,-1.000000,578.720000,baseline,lora,60 +on1,0,0,24,0,0,1405,1440.000000,122,0,-1.000000,590.880000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1424,1440.000000,122,0,-1.000000,578.720000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1429,1440.000000,122,0,-1.000000,577.920000,baseline,lora,60 +on10,0,0,24,0,0,1402,1440.000000,122,0,-1.000000,582.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,122,0,-1.000000,623.360000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1384,1440.000000,122,0,-1.000000,585.120000,baseline,lora,60 +on7,0,0,24,0,0,1432,1440.000000,122,0,-1.000000,585.600000,baseline,lora,60 +on8,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 +on6,0,0,24,0,0,1354,1440.000000,123,0,-1.000000,590.080000,baseline,lora,60 +on5,0,0,24,0,0,1404,1440.000000,123,0,-1.000000,581.920000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on10,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 +on9,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 +on1,0,0,24,0,0,1345,1440.000000,123,0,-1.000000,592.480000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,123,0,-1.000000,611.520000,baseline,lora,60 +on10,0,0,24,0,0,1405,1440.000000,124,0,-1.000000,581.760000,baseline,lora,60 +on8,0,0,24,0,0,1439,1440.000000,124,0,-1.000000,576.320000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,124,0,-1.000000,617.760000,baseline,lora,60 +on6,0,0,24,0,0,1388,1440.000000,124,0,-1.000000,584.480000,baseline,lora,60 +on11,0,0,24,0,0,1418,1440.000000,124,0,-1.000000,579.680000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1393,1440.000000,124,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1392,1440.000000,124,0,-1.000000,587.840000,baseline,lora,60 +on2,0,0,24,0,0,1399,1440.000000,124,0,-1.000000,582.720000,baseline,lora,60 +on1,0,0,24,0,0,1434,1440.000000,124,0,-1.000000,584.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1424,1440.000000,125,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,125,0,-1.000000,622.080000,baseline,lora,60 +on12,0,0,24,0,0,1382,1440.000000,125,0,-1.000000,591.040000,baseline,lora,60 +on5,0,0,24,0,0,1437,1440.000000,125,0,-1.000000,576.640000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1383,1440.000000,125,0,-1.000000,593.440000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1400,1440.000000,125,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1367,1440.000000,125,0,-1.000000,594.080000,baseline,lora,60 +on4,0,0,24,0,0,1412,1440.000000,125,0,-1.000000,580.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,126,0,-1.000000,612.480000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1386,1440.000000,126,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1397,1440.000000,126,0,-1.000000,583.040000,baseline,lora,60 +on10,0,0,24,0,0,1434,1440.000000,126,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1400,1440.000000,126,0,-1.000000,582.560000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1413,1440.000000,126,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1388,1440.000000,126,0,-1.000000,584.480000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1421,1440.000000,127,0,-1.000000,579.360000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1407,1440.000000,127,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1387,1440.000000,127,0,-1.000000,584.640000,baseline,lora,60 +on2,0,0,24,0,0,1419,1440.000000,127,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1380,1440.000000,127,0,-1.000000,590.560000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1416,1440.000000,127,0,-1.000000,586.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,127,0,-1.000000,626.080000,baseline,lora,60 +on8,0,0,24,0,0,1350,1440.000000,127,0,-1.000000,594.400000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1423,1440.000000,128,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1395,1440.000000,128,0,-1.000000,585.600000,baseline,lora,60 +on4,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 +on5,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1411,1440.000000,128,0,-1.000000,580.800000,baseline,lora,60 +on10,0,0,24,0,0,1392,1440.000000,128,0,-1.000000,583.840000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1430,1440.000000,128,0,-1.000000,577.760000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1382,1440.000000,128,0,-1.000000,585.440000,baseline,lora,60 +on12,0,0,24,0,0,1360,1440.000000,128,0,-1.000000,601.440000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,128,0,-1.000000,623.360000,baseline,lora,60 +on8,0,0,24,0,0,1412,1440.000000,129,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,129,0,-1.000000,623.200000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1423,1440.000000,129,0,-1.000000,578.880000,baseline,lora,60 +on4,0,0,24,0,0,1386,1440.000000,129,0,-1.000000,591.680000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1370,1440.000000,129,0,-1.000000,587.520000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1408,1440.000000,129,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1404,1440.000000,129,0,-1.000000,581.920000,baseline,lora,60 +on1,0,0,24,0,0,1393,1440.000000,129,0,-1.000000,601.120000,baseline,lora,60 +on9,0,0,24,0,0,1388,1440.000000,130,0,-1.000000,595.200000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1366,1440.000000,130,0,-1.000000,595.200000,baseline,lora,60 +on8,0,0,24,0,0,1409,1440.000000,130,0,-1.000000,581.120000,baseline,lora,60 +on10,0,0,24,0,0,1406,1440.000000,130,0,-1.000000,581.600000,baseline,lora,60 +on11,0,0,24,0,0,1400,1440.000000,130,0,-1.000000,595.040000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,130,0,-1.000000,637.600000,baseline,lora,60 +on5,0,0,24,0,0,1373,1440.000000,130,0,-1.000000,594.720000,baseline,lora,60 +on12,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,582.080000,baseline,lora,60 +on7,0,0,24,0,0,1402,1440.000000,130,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1408,1440.000000,131,0,-1.000000,581.440000,baseline,lora,60 +on4,0,0,24,0,0,1401,1440.000000,131,0,-1.000000,585.600000,baseline,lora,60 +on10,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 +on0,1,0,24,0,0,0,1440.000000,131,0,-1.000000,626.240000,baseline,lora,60 +on11,0,0,24,0,0,1335,1440.000000,131,0,-1.000000,595.200000,baseline,lora,60 +on8,0,0,24,0,0,1420,1440.000000,131,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1431,1440.000000,131,0,-1.000000,577.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1404,1440.000000,131,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1431,1440.000000,131,0,-1.000000,577.600000,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,1387,1440.000000,131,0,-1.000000,584.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,132,0,-1.000000,610.080000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1406,1440.000000,132,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1412,1440.000000,132,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1390,1440.000000,132,0,-1.000000,584.160000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1344,1440.000000,132,0,-1.000000,595.200000,baseline,lora,60 +on8,0,0,24,0,0,1409,1440.000000,133,0,-1.000000,581.120000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1349,1440.000000,133,0,-1.000000,604.800000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1436,1440.000000,133,0,-1.000000,576.800000,baseline,lora,60 +on4,0,0,24,0,0,1363,1440.000000,133,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,133,0,-1.000000,632.000000,baseline,lora,60 +on6,0,0,24,0,0,1397,1440.000000,133,0,-1.000000,583.040000,baseline,lora,60 +on12,0,0,24,0,0,1394,1440.000000,133,0,-1.000000,590.400000,baseline,lora,60 +on1,0,0,24,0,0,1434,1440.000000,133,0,-1.000000,577.120000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1400,1440.000000,133,0,-1.000000,582.560000,baseline,lora,60 +on7,0,0,24,0,0,1397,1440.000000,134,0,-1.000000,589.280000,baseline,lora,60 +on5,0,0,24,0,0,1412,1440.000000,134,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,134,0,-1.000000,598.400000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1435,1440.000000,134,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1382,1440.000000,134,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1438,1440.000000,135,0,-1.000000,576.480000,baseline,lora,60 +on11,0,0,24,0,0,1413,1440.000000,135,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,135,0,-1.000000,609.280000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1402,1440.000000,135,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1384,1440.000000,135,0,-1.000000,588.480000,baseline,lora,60 +on2,0,0,24,0,0,1410,1440.000000,135,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1392,1440.000000,135,0,-1.000000,583.840000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1395,1440.000000,136,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1384,1440.000000,136,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1374,1440.000000,136,0,-1.000000,592.800000,baseline,lora,60 +on2,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,626.560000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1411,1440.000000,136,0,-1.000000,580.800000,baseline,lora,60 +on10,0,0,24,0,0,1385,1440.000000,136,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1383,1440.000000,136,0,-1.000000,587.840000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,137,0,-1.000000,598.880000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1335,1440.000000,137,0,-1.000000,593.120000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1436,1440.000000,137,0,-1.000000,576.800000,baseline,lora,60 +on2,0,0,24,0,0,1411,1440.000000,137,0,-1.000000,585.760000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1403,1440.000000,138,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1423,1440.000000,138,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1421,1440.000000,138,0,-1.000000,588.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,138,0,-1.000000,611.520000,baseline,lora,60 +on7,0,0,24,0,0,1405,1440.000000,138,0,-1.000000,581.760000,baseline,lora,60 +on2,0,0,24,0,0,1389,1440.000000,138,0,-1.000000,584.320000,baseline,lora,60 +on4,0,0,24,0,0,1422,1440.000000,138,0,-1.000000,579.040000,baseline,lora,60 +on1,0,0,24,0,0,1403,1440.000000,138,0,-1.000000,582.080000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1439,1440.000000,139,0,-1.000000,576.320000,baseline,lora,60 +on3,0,0,24,0,0,1399,1440.000000,139,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,lora,60 +on9,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 +on0,1,0,24,0,0,0,1440.000000,139,0,-1.000000,618.880000,baseline,lora,60 +on6,0,0,24,0,0,1311,1440.000000,139,0,-1.000000,601.920000,baseline,lora,60 +on7,0,0,24,0,0,1420,1440.000000,139,0,-1.000000,579.360000,baseline,lora,60 +on4,0,0,24,0,0,1413,1440.000000,139,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1398,1440.000000,139,0,-1.000000,582.880000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,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 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1385,1440.000000,140,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1436,1440.000000,140,0,-1.000000,576.800000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on3,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 +on6,0,0,24,0,0,1397,1440.000000,140,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1399,1440.000000,140,0,-1.000000,582.720000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,140,0,-1.000000,599.520000,baseline,lora,60 +on4,0,0,24,0,0,1391,1440.000000,141,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1425,1440.000000,141,0,-1.000000,578.560000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1375,1440.000000,141,0,-1.000000,586.720000,baseline,lora,60 +on2,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,609.920000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1439,1440.000000,141,0,-1.000000,585.600000,baseline,lora,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1379,1440.000000,141,0,-1.000000,587.520000,baseline,lora,60 +on1,0,0,24,0,0,1427,1440.000000,141,0,-1.000000,578.240000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1419,1440.000000,142,0,-1.000000,585.600000,baseline,lora,60 +on7,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,1413,1440.000000,142,0,-1.000000,580.480000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,142,0,-1.000000,612.160000,baseline,lora,60 +on12,0,0,24,0,0,1416,1440.000000,142,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1388,1440.000000,142,0,-1.000000,584.480000,baseline,lora,60 +on11,0,0,24,0,0,1398,1440.000000,142,0,-1.000000,595.200000,baseline,lora,60 +on5,0,0,24,0,0,1430,1440.000000,142,0,-1.000000,577.760000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1398,1440.000000,142,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1385,1440.000000,143,0,-1.000000,585.120000,baseline,lora,60 +on6,0,0,24,0,0,1433,1440.000000,143,0,-1.000000,577.280000,baseline,lora,60 +on1,0,0,24,0,0,1383,1440.000000,143,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1377,1440.000000,143,0,-1.000000,586.400000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1420,1440.000000,143,0,-1.000000,586.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,143,0,-1.000000,625.440000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1384,1440.000000,143,0,-1.000000,585.120000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1400,1440.000000,143,0,-1.000000,595.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1415,1440.000000,144,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,144,0,-1.000000,627.840000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1403,1440.000000,144,0,-1.000000,590.400000,baseline,lora,60 +on6,0,0,24,0,0,1376,1440.000000,144,0,-1.000000,586.560000,baseline,lora,60 +on7,0,0,24,0,0,1435,1440.000000,144,0,-1.000000,576.960000,baseline,lora,60 +on2,0,0,24,0,0,1417,1440.000000,144,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1384,1440.000000,144,0,-1.000000,585.120000,baseline,lora,60 +on12,0,0,24,0,0,1418,1440.000000,144,0,-1.000000,579.680000,baseline,lora,60 +on11,0,0,24,0,0,1413,1440.000000,144,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1388,1440.000000,144,0,-1.000000,595.200000,baseline,lora,60 +on5,0,0,24,0,0,1423,1440.000000,145,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1424,1440.000000,145,0,-1.000000,587.040000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1403,1440.000000,145,0,-1.000000,582.080000,baseline,lora,60 +on2,0,0,24,0,0,1419,1440.000000,145,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1393,1440.000000,145,0,-1.000000,590.880000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1423,1440.000000,145,0,-1.000000,579.040000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,145,0,-1.000000,602.240000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1424,1440.000000,146,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1417,1440.000000,146,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1386,1440.000000,146,0,-1.000000,585.120000,baseline,lora,60 +on2,0,0,24,0,0,1414,1440.000000,146,0,-1.000000,580.320000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1396,1440.000000,146,0,-1.000000,583.200000,baseline,lora,60 +on10,0,0,24,0,0,1396,1440.000000,146,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,146,0,-1.000000,619.360000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,146,0,-1.000000,590.080000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,146,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1422,1440.000000,147,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1426,1440.000000,147,0,-1.000000,578.400000,baseline,lora,60 +on6,0,0,24,0,0,1382,1440.000000,147,0,-1.000000,585.600000,baseline,lora,60 +on2,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,615.040000,baseline,lora,60 +on5,0,0,24,0,0,1424,1440.000000,147,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1432,1440.000000,147,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1416,1440.000000,147,0,-1.000000,586.560000,baseline,lora,60 +on10,0,0,24,0,0,1411,1440.000000,147,0,-1.000000,580.800000,baseline,lora,60 +on12,0,0,24,0,0,1386,1440.000000,147,0,-1.000000,584.800000,baseline,lora,60 +on7,0,0,24,0,0,1427,1440.000000,147,0,-1.000000,578.240000,baseline,lora,60 +on12,0,0,24,0,0,1392,1440.000000,148,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1381,1440.000000,148,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,148,0,-1.000000,606.560000,baseline,lora,60 +on3,0,0,24,0,0,1405,1440.000000,148,0,-1.000000,581.760000,baseline,lora,60 +on4,0,0,24,0,0,1418,1440.000000,148,0,-1.000000,579.840000,baseline,lora,60 +on2,0,0,24,0,0,1419,1440.000000,148,0,-1.000000,579.520000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1367,1440.000000,149,0,-1.000000,600.800000,baseline,lora,60 +on10,0,0,24,0,0,1432,1440.000000,149,0,-1.000000,577.440000,baseline,lora,60 +on11,0,0,24,0,0,1430,1440.000000,149,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1433,1440.000000,149,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1394,1440.000000,149,0,-1.000000,583.520000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1291,1440.000000,149,0,-1.000000,608.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,149,0,-1.000000,624.640000,baseline,lora,60 +on2,0,0,24,0,0,1434,1440.000000,150,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1401,1440.000000,150,0,-1.000000,595.200000,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,1421,1440.000000,150,0,-1.000000,579.200000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1386,1440.000000,150,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1417,1440.000000,150,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1393,1440.000000,150,0,-1.000000,583.680000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,150,0,-1.000000,615.520000,baseline,lora,60 +on1,0,0,24,0,0,1389,1440.000000,150,0,-1.000000,584.320000,baseline,lora,60 +on11,0,0,24,0,0,1428,1440.000000,151,0,-1.000000,578.080000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1397,1440.000000,151,0,-1.000000,587.200000,baseline,lora,60 +on10,0,0,24,0,0,1405,1440.000000,151,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,151,0,-1.000000,596.320000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1409,1440.000000,151,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1393,1440.000000,152,0,-1.000000,583.680000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1415,1440.000000,152,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1430,1440.000000,152,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1350,1440.000000,152,0,-1.000000,592.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,152,0,-1.000000,617.440000,baseline,lora,60 +on4,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 +on12,0,0,24,0,0,1394,1440.000000,152,0,-1.000000,583.520000,baseline,lora,60 +on7,0,0,24,0,0,1412,1440.000000,152,0,-1.000000,580.800000,baseline,lora,60 +on11,0,0,24,0,0,1436,1440.000000,152,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1425,1440.000000,153,0,-1.000000,581.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,153,0,-1.000000,636.480000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1337,1440.000000,153,0,-1.000000,602.240000,baseline,lora,60 +on4,0,0,24,0,0,1416,1440.000000,153,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1410,1440.000000,153,0,-1.000000,587.040000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1396,1440.000000,153,0,-1.000000,583.200000,baseline,lora,60 +on3,0,0,24,0,0,1420,1440.000000,153,0,-1.000000,579.360000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1428,1440.000000,153,0,-1.000000,578.080000,baseline,lora,60 +on2,0,0,24,0,0,1372,1440.000000,153,0,-1.000000,589.920000,baseline,lora,60 +on9,0,0,24,0,0,1392,1440.000000,153,0,-1.000000,583.840000,baseline,lora,60 +on9,0,0,24,0,0,1420,1440.000000,154,0,-1.000000,579.360000,baseline,lora,60 +on8,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,622.240000,baseline,lora,60 +on6,0,0,24,0,0,1354,1440.000000,154,0,-1.000000,590.880000,baseline,lora,60 +on5,0,0,24,0,0,1409,1440.000000,154,0,-1.000000,595.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1418,1440.000000,154,0,-1.000000,579.680000,baseline,lora,60 +on4,0,0,24,0,0,1420,1440.000000,154,0,-1.000000,579.360000,baseline,lora,60 +on7,0,0,24,0,0,1390,1440.000000,154,0,-1.000000,585.600000,baseline,lora,60 +on3,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,1390,1440.000000,154,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1430,1440.000000,155,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1416,1440.000000,155,0,-1.000000,580.160000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,155,0,-1.000000,610.080000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1381,1440.000000,155,0,-1.000000,588.160000,baseline,lora,60 +on6,0,0,24,0,0,1381,1440.000000,155,0,-1.000000,585.600000,baseline,lora,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1386,1440.000000,155,0,-1.000000,584.800000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,156,0,-1.000000,602.240000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1427,1440.000000,156,0,-1.000000,578.240000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1400,1440.000000,156,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1387,1440.000000,156,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1422,1440.000000,156,0,-1.000000,588.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1407,1440.000000,156,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1328,1440.000000,157,0,-1.000000,594.560000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1386,1440.000000,157,0,-1.000000,592.800000,baseline,lora,60 +on8,0,0,24,0,0,1439,1440.000000,157,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1416,1440.000000,157,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,157,0,-1.000000,627.040000,baseline,lora,60 +on12,0,0,24,0,0,1425,1440.000000,157,0,-1.000000,578.720000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1338,1440.000000,157,0,-1.000000,600.800000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1411,1440.000000,158,0,-1.000000,585.600000,baseline,lora,60 +on9,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 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1430,1440.000000,158,0,-1.000000,577.760000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1439,1440.000000,158,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1345,1440.000000,158,0,-1.000000,591.520000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,158,0,-1.000000,598.400000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1432,1440.000000,159,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1377,1440.000000,159,0,-1.000000,586.880000,baseline,lora,60 +on11,0,0,24,0,0,1383,1440.000000,159,0,-1.000000,586.720000,baseline,lora,60 +on12,0,0,24,0,0,1392,1440.000000,159,0,-1.000000,583.840000,baseline,lora,60 +on5,0,0,24,0,0,1385,1440.000000,159,0,-1.000000,584.960000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,159,0,-1.000000,620.160000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1410,1440.000000,159,0,-1.000000,580.960000,baseline,lora,60 +on2,0,0,24,0,0,1437,1440.000000,159,0,-1.000000,580.320000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1439,1440.000000,159,0,-1.000000,576.320000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1322,1440.000000,160,0,-1.000000,603.520000,baseline,lora,60 +on8,0,0,24,0,0,1403,1440.000000,160,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1419,1440.000000,160,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1377,1440.000000,160,0,-1.000000,587.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,160,0,-1.000000,639.040000,baseline,lora,60 +on2,0,0,24,0,0,1364,1440.000000,160,0,-1.000000,592.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1399,1440.000000,160,0,-1.000000,582.720000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1414,1440.000000,160,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,160,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 +on1,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1415,1440.000000,161,0,-1.000000,580.160000,baseline,lora,60 +on3,0,0,24,0,0,1370,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 +on6,0,0,24,0,0,1418,1440.000000,161,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1429,1440.000000,161,0,-1.000000,577.920000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1399,1440.000000,161,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,161,0,-1.000000,610.400000,baseline,lora,60 +on11,0,0,24,0,0,1401,1440.000000,161,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1400,1440.000000,162,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,162,0,-1.000000,657.120000,baseline,lora,60 +on11,0,0,24,0,0,1365,1440.000000,162,0,-1.000000,609.440000,baseline,lora,60 +on8,0,0,24,0,0,1381,1440.000000,162,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1433,1440.000000,162,0,-1.000000,583.520000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1355,1440.000000,162,0,-1.000000,595.200000,baseline,lora,60 +on5,0,0,24,0,0,1352,1440.000000,162,0,-1.000000,593.920000,baseline,lora,60 +on3,0,0,24,0,0,1409,1440.000000,162,0,-1.000000,581.120000,baseline,lora,60 +on1,0,0,24,0,0,1399,1440.000000,162,0,-1.000000,582.720000,baseline,lora,60 +on4,0,0,24,0,0,1439,1440.000000,162,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1376,1440.000000,162,0,-1.000000,586.560000,baseline,lora,60 +on4,0,0,24,0,0,1398,1440.000000,163,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1421,1440.000000,163,0,-1.000000,579.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1378,1440.000000,163,0,-1.000000,591.360000,baseline,lora,60 +on9,0,0,24,0,0,1415,1440.000000,163,0,-1.000000,580.160000,baseline,lora,60 +on12,0,0,24,0,0,1374,1440.000000,163,0,-1.000000,586.880000,baseline,lora,60 +on7,0,0,24,0,0,1432,1440.000000,163,0,-1.000000,585.920000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,163,0,-1.000000,619.520000,baseline,lora,60 +on5,0,0,24,0,0,1416,1440.000000,163,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1438,1440.000000,163,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1429,1440.000000,163,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,1415,1440.000000,164,0,-1.000000,582.240000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1431,1440.000000,164,0,-1.000000,584.480000,baseline,lora,60 +on3,0,0,24,0,0,1359,1440.000000,164,0,-1.000000,589.440000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,164,0,-1.000000,638.720000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1411,1440.000000,164,0,-1.000000,580.800000,baseline,lora,60 +on9,0,0,24,0,0,1421,1440.000000,164,0,-1.000000,579.200000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1323,1440.000000,164,0,-1.000000,595.040000,baseline,lora,60 +on6,0,0,24,0,0,1407,1440.000000,164,0,-1.000000,581.440000,baseline,lora,60 +on8,0,0,24,0,0,1373,1440.000000,164,0,-1.000000,595.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1413,1440.000000,165,0,-1.000000,580.480000,baseline,lora,60 +on6,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 +on1,0,0,24,0,0,1438,1440.000000,165,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1349,1440.000000,165,0,-1.000000,590.880000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,165,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,1418,1440.000000,165,0,-1.000000,579.680000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,165,0,-1.000000,599.520000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1388,1440.000000,166,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1381,1440.000000,166,0,-1.000000,588.480000,baseline,lora,60 +on10,0,0,24,0,0,1398,1440.000000,166,0,-1.000000,582.880000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1410,1440.000000,166,0,-1.000000,580.960000,baseline,lora,60 +on12,0,0,24,0,0,1344,1440.000000,166,0,-1.000000,591.680000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1424,1440.000000,166,0,-1.000000,583.360000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,166,0,-1.000000,634.880000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1413,1440.000000,166,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1404,1440.000000,166,0,-1.000000,581.920000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1391,1440.000000,167,0,-1.000000,584.000000,baseline,lora,60 +on5,0,0,24,0,0,1408,1440.000000,167,0,-1.000000,581.280000,baseline,lora,60 +on3,0,0,24,0,0,1415,1440.000000,167,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1433,1440.000000,167,0,-1.000000,586.880000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,167,0,-1.000000,609.920000,baseline,lora,60 +on1,0,0,24,0,0,1388,1440.000000,167,0,-1.000000,584.480000,baseline,lora,60 +on2,0,0,24,0,0,1400,1440.000000,167,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,168,0,-1.000000,624.160000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1422,1440.000000,168,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1412,1440.000000,168,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1421,1440.000000,168,0,-1.000000,579.360000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1301,1440.000000,168,0,-1.000000,599.200000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1353,1440.000000,168,0,-1.000000,604.800000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1438,1440.000000,169,0,-1.000000,576.480000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1411,1440.000000,169,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1398,1440.000000,169,0,-1.000000,588.160000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1429,1440.000000,169,0,-1.000000,577.920000,baseline,lora,60 +on6,0,0,24,0,0,1422,1440.000000,169,0,-1.000000,579.040000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,169,0,-1.000000,611.840000,baseline,lora,60 +on9,0,0,24,0,0,1327,1440.000000,169,0,-1.000000,597.760000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1402,1440.000000,170,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1384,1440.000000,170,0,-1.000000,585.280000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,170,0,-1.000000,602.560000,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 +on1,0,0,24,0,0,1434,1440.000000,170,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1428,1440.000000,170,0,-1.000000,578.080000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1392,1440.000000,170,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1430,1440.000000,171,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1434,1440.000000,171,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,lora,60 +on8,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 +on11,0,0,24,0,0,1415,1440.000000,171,0,-1.000000,580.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,171,0,-1.000000,607.840000,baseline,lora,60 +on6,0,0,24,0,0,1424,1440.000000,171,0,-1.000000,578.720000,baseline,lora,60 +on2,0,0,24,0,0,1411,1440.000000,171,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1365,1440.000000,171,0,-1.000000,590.400000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,171,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1412,1440.000000,172,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1415,1440.000000,172,0,-1.000000,580.160000,baseline,lora,60 +on8,0,0,24,0,0,1426,1440.000000,172,0,-1.000000,578.400000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,172,0,-1.000000,607.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1388,1440.000000,172,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1408,1440.000000,172,0,-1.000000,581.280000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1402,1440.000000,172,0,-1.000000,582.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,173,0,-1.000000,621.760000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1358,1440.000000,173,0,-1.000000,590.400000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1422,1440.000000,173,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1399,1440.000000,173,0,-1.000000,590.880000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1421,1440.000000,173,0,-1.000000,579.200000,baseline,lora,60 +on4,0,0,24,0,0,1412,1440.000000,173,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1351,1440.000000,173,0,-1.000000,593.920000,baseline,lora,60 +on3,0,0,24,0,0,1422,1440.000000,174,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1427,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,1375,1440.000000,174,0,-1.000000,588.800000,baseline,lora,60 +on7,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,1440,1440.000000,174,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1408,1440.000000,174,0,-1.000000,581.280000,baseline,lora,60 +on1,0,0,24,0,0,1390,1440.000000,174,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,174,0,-1.000000,611.200000,baseline,lora,60 +on2,0,0,24,0,0,1407,1440.000000,174,0,-1.000000,588.480000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,175,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on5,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,626.240000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1304,1440.000000,175,0,-1.000000,602.240000,baseline,lora,60 +on9,0,0,24,0,0,1416,1440.000000,175,0,-1.000000,582.880000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1351,1440.000000,175,0,-1.000000,600.800000,baseline,lora,60 +on8,0,0,24,0,0,1414,1440.000000,175,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1416,1440.000000,176,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1430,1440.000000,176,0,-1.000000,577.760000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,176,0,-1.000000,604.480000,baseline,lora,60 +on4,0,0,24,0,0,1429,1440.000000,176,0,-1.000000,577.920000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1425,1440.000000,176,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1417,1440.000000,176,0,-1.000000,580.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1353,1440.000000,176,0,-1.000000,593.120000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1406,1440.000000,177,0,-1.000000,581.600000,baseline,lora,60 +on2,0,0,24,0,0,1392,1440.000000,177,0,-1.000000,583.840000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,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,1397,1440.000000,177,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1431,1440.000000,177,0,-1.000000,577.600000,baseline,lora,60 +on6,0,0,24,0,0,1422,1440.000000,177,0,-1.000000,579.040000,baseline,lora,60 +on9,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,1440,1440.000000,177,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,177,0,-1.000000,601.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,178,0,-1.000000,611.680000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1423,1440.000000,178,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1437,1440.000000,178,0,-1.000000,577.600000,baseline,lora,60 +on8,0,0,24,0,0,1404,1440.000000,178,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1366,1440.000000,178,0,-1.000000,589.920000,baseline,lora,60 +on9,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 +on3,0,0,24,0,0,1385,1440.000000,178,0,-1.000000,584.960000,baseline,lora,60 +on12,0,0,24,0,0,1409,1440.000000,178,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1383,1440.000000,179,0,-1.000000,585.440000,baseline,lora,60 +on2,0,0,24,0,0,1393,1440.000000,179,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1377,1440.000000,179,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,179,0,-1.000000,612.640000,baseline,lora,60 +on11,0,0,24,0,0,1428,1440.000000,179,0,-1.000000,578.080000,baseline,lora,60 +on3,0,0,24,0,0,1424,1440.000000,179,0,-1.000000,578.720000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1426,1440.000000,179,0,-1.000000,578.400000,baseline,lora,60 +on9,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 +on6,0,0,24,0,0,1429,1440.000000,179,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1344,1440.000000,180,0,-1.000000,596.000000,baseline,lora,60 +on10,0,0,24,0,0,1353,1440.000000,180,0,-1.000000,595.200000,baseline,lora,60 +on4,0,0,24,0,0,1421,1440.000000,180,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1383,1440.000000,180,0,-1.000000,585.280000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1391,1440.000000,180,0,-1.000000,591.840000,baseline,lora,60 +on2,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 +on3,0,0,24,0,0,1410,1440.000000,180,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1426,1440.000000,180,0,-1.000000,584.800000,baseline,lora,60 +on11,0,0,24,0,0,1412,1440.000000,180,0,-1.000000,580.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,180,0,-1.000000,654.560000,baseline,lora,60 +on8,0,0,24,0,0,1343,1440.000000,180,0,-1.000000,592.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,181,0,-1.000000,636.160000,baseline,lora,60 +on2,0,0,24,0,0,1399,1440.000000,181,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1404,1440.000000,181,0,-1.000000,586.080000,baseline,lora,60 +on5,0,0,24,0,0,1387,1440.000000,181,0,-1.000000,592.640000,baseline,lora,60 +on3,0,0,24,0,0,1422,1440.000000,181,0,-1.000000,579.040000,baseline,lora,60 +on6,0,0,24,0,0,1416,1440.000000,181,0,-1.000000,580.000000,baseline,lora,60 +on10,0,0,24,0,0,1365,1440.000000,181,0,-1.000000,590.240000,baseline,lora,60 +on4,0,0,24,0,0,1420,1440.000000,181,0,-1.000000,579.360000,baseline,lora,60 +on7,0,0,24,0,0,1398,1440.000000,181,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1385,1440.000000,181,0,-1.000000,584.960000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1414,1440.000000,182,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1408,1440.000000,182,0,-1.000000,595.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,182,0,-1.000000,615.840000,baseline,lora,60 +on6,0,0,24,0,0,1414,1440.000000,182,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1412,1440.000000,182,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1431,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 +on5,0,0,24,0,0,1386,1440.000000,182,0,-1.000000,584.800000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1420,1440.000000,182,0,-1.000000,579.360000,baseline,lora,60 +on9,0,0,24,0,0,1395,1440.000000,182,0,-1.000000,583.360000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,lora,60 +on8,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,599.360000,baseline,lora,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1419,1440.000000,183,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1387,1440.000000,183,0,-1.000000,584.640000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1381,1440.000000,183,0,-1.000000,595.200000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1432,1440.000000,183,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1416,1440.000000,184,0,-1.000000,580.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1429,1440.000000,184,0,-1.000000,577.920000,baseline,lora,60 +on12,0,0,24,0,0,1422,1440.000000,184,0,-1.000000,579.040000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1421,1440.000000,184,0,-1.000000,588.160000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1430,1440.000000,184,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1414,1440.000000,184,0,-1.000000,580.320000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,184,0,-1.000000,594.400000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1372,1440.000000,185,0,-1.000000,593.920000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1402,1440.000000,185,0,-1.000000,582.240000,baseline,lora,60 +on10,0,0,24,0,0,1411,1440.000000,185,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1426,1440.000000,185,0,-1.000000,578.400000,baseline,lora,60 +on12,0,0,24,0,0,1383,1440.000000,185,0,-1.000000,585.280000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,185,0,-1.000000,616.960000,baseline,lora,60 +on1,0,0,24,0,0,1410,1440.000000,185,0,-1.000000,580.960000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1428,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,1352,1440.000000,186,0,-1.000000,600.480000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,186,0,-1.000000,654.240000,baseline,lora,60 +on4,0,0,24,0,0,1375,1440.000000,186,0,-1.000000,592.960000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1401,1440.000000,186,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1435,1440.000000,186,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1374,1440.000000,186,0,-1.000000,590.400000,baseline,lora,60 +on2,0,0,24,0,0,1394,1440.000000,186,0,-1.000000,583.680000,baseline,lora,60 +on5,0,0,24,0,0,1405,1440.000000,186,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1438,1440.000000,186,0,-1.000000,582.240000,baseline,lora,60 +on3,0,0,24,0,0,1384,1440.000000,186,0,-1.000000,585.120000,baseline,lora,60 +on1,0,0,24,0,0,1389,1440.000000,186,0,-1.000000,592.000000,baseline,lora,60 +on10,0,0,24,0,0,1421,1440.000000,186,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1394,1440.000000,187,0,-1.000000,583.520000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,187,0,-1.000000,636.480000,baseline,lora,60 +on11,0,0,24,0,0,1383,1440.000000,187,0,-1.000000,585.280000,baseline,lora,60 +on4,0,0,24,0,0,1426,1440.000000,187,0,-1.000000,578.400000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1383,1440.000000,187,0,-1.000000,585.280000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1364,1440.000000,187,0,-1.000000,588.480000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1322,1440.000000,187,0,-1.000000,611.360000,baseline,lora,60 +on7,0,0,24,0,0,1423,1440.000000,188,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1400,1440.000000,188,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1368,1440.000000,188,0,-1.000000,590.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,188,0,-1.000000,650.720000,baseline,lora,60 +on3,0,0,24,0,0,1412,1440.000000,188,0,-1.000000,582.400000,baseline,lora,60 +on1,0,0,24,0,0,1388,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 +on6,0,0,24,0,0,1409,1440.000000,188,0,-1.000000,581.120000,baseline,lora,60 +on5,0,0,24,0,0,1406,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 +on8,0,0,24,0,0,1259,1440.000000,188,0,-1.000000,605.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1357,1440.000000,189,0,-1.000000,592.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,189,0,-1.000000,622.880000,baseline,lora,60 +on7,0,0,24,0,0,1409,1440.000000,189,0,-1.000000,581.120000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1382,1440.000000,189,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1410,1440.000000,189,0,-1.000000,588.800000,baseline,lora,60 +on11,0,0,24,0,0,1410,1440.000000,189,0,-1.000000,583.520000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on2,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 +on10,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1388,1440.000000,189,0,-1.000000,584.480000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,190,0,-1.000000,598.720000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1383,1440.000000,190,0,-1.000000,590.240000,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,1422,1440.000000,190,0,-1.000000,585.600000,baseline,lora,60 +on7,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 +on9,0,0,24,0,0,1439,1440.000000,190,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1399,1440.000000,190,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1421,1440.000000,190,0,-1.000000,579.200000,baseline,lora,60 +on2,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,608.160000,baseline,lora,60 +on3,0,0,24,0,0,1385,1440.000000,191,0,-1.000000,584.960000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,191,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1390,1440.000000,191,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1439,1440.000000,191,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1381,1440.000000,191,0,-1.000000,586.720000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1394,1440.000000,192,0,-1.000000,583.520000,baseline,lora,60 +on12,0,0,24,0,0,1404,1440.000000,192,0,-1.000000,595.200000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,192,0,-1.000000,596.640000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,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,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1397,1440.000000,192,0,-1.000000,583.040000,baseline,lora,60 +on1,0,0,24,0,0,1416,1440.000000,193,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1399,1440.000000,193,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1398,1440.000000,193,0,-1.000000,582.880000,baseline,lora,60 +on11,0,0,24,0,0,1387,1440.000000,193,0,-1.000000,586.240000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1382,1440.000000,193,0,-1.000000,585.440000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1425,1440.000000,193,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1390,1440.000000,193,0,-1.000000,584.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,193,0,-1.000000,622.560000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1435,1440.000000,194,0,-1.000000,576.960000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,194,0,-1.000000,604.800000,baseline,lora,60 +on8,0,0,24,0,0,1345,1440.000000,194,0,-1.000000,595.360000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1377,1440.000000,194,0,-1.000000,600.320000,baseline,lora,60 +on11,0,0,24,0,0,1431,1440.000000,194,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1417,1440.000000,195,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1420,1440.000000,195,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1430,1440.000000,195,0,-1.000000,577.760000,baseline,lora,60 +on10,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,1333,1440.000000,195,0,-1.000000,596.960000,baseline,lora,60 +on4,0,0,24,0,0,1367,1440.000000,195,0,-1.000000,593.280000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,195,0,-1.000000,628.640000,baseline,lora,60 +on3,0,0,24,0,0,1435,1440.000000,195,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1360,1440.000000,195,0,-1.000000,593.120000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1394,1440.000000,196,0,-1.000000,590.400000,baseline,lora,60 +on4,0,0,24,0,0,1436,1440.000000,196,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on1,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,620.000000,baseline,lora,60 +on12,0,0,24,0,0,1410,1440.000000,196,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1392,1440.000000,196,0,-1.000000,583.840000,baseline,lora,60 +on9,0,0,24,0,0,1408,1440.000000,196,0,-1.000000,581.280000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1410,1440.000000,196,0,-1.000000,580.960000,baseline,lora,60 +on5,0,0,24,0,0,1420,1440.000000,196,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1385,1440.000000,196,0,-1.000000,588.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,197,0,-1.000000,610.560000,baseline,lora,60 +on6,0,0,24,0,0,1410,1440.000000,197,0,-1.000000,580.960000,baseline,lora,60 +on9,0,0,24,0,0,1383,1440.000000,197,0,-1.000000,585.280000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1367,1440.000000,197,0,-1.000000,591.360000,baseline,lora,60 +on1,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 +on10,0,0,24,0,0,1439,1440.000000,197,0,-1.000000,576.320000,baseline,lora,60 +on2,0,0,24,0,0,1409,1440.000000,197,0,-1.000000,591.520000,baseline,lora,60 +on7,0,0,24,0,0,1424,1440.000000,197,0,-1.000000,578.720000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1429,1440.000000,198,0,-1.000000,586.080000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,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,1409,1440.000000,198,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1423,1440.000000,198,0,-1.000000,579.200000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1351,1440.000000,198,0,-1.000000,590.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,198,0,-1.000000,602.080000,baseline,lora,60 +on4,0,0,24,0,0,1432,1440.000000,198,0,-1.000000,577.440000,baseline,lora,60 +on5,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 +on0,1,0,24,0,0,0,1440.000000,199,0,-1.000000,645.760000,baseline,lora,60 +on9,0,0,24,0,0,1410,1440.000000,199,0,-1.000000,584.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1327,1440.000000,199,0,-1.000000,596.960000,baseline,lora,60 +on5,0,0,24,0,0,1407,1440.000000,199,0,-1.000000,583.200000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1366,1440.000000,199,0,-1.000000,593.440000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1400,1440.000000,199,0,-1.000000,597.120000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1366,1440.000000,199,0,-1.000000,588.320000,baseline,lora,60 +on4,0,0,24,0,0,1384,1440.000000,199,0,-1.000000,585.120000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,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,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,200,0,-1.000000,618.240000,baseline,lora,60 +on7,0,0,24,0,0,1364,1440.000000,200,0,-1.000000,595.200000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1382,1440.000000,200,0,-1.000000,585.440000,baseline,lora,60 +on5,0,0,24,0,0,1350,1440.000000,200,0,-1.000000,595.200000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1407,1440.000000,200,0,-1.000000,581.600000,baseline,lora,60 +on3,0,0,26,0,0,1423,1560.000000,1,2,-1.000000,642.240000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,1,0,-1.000000,650.784000,hint,lora,60 +on8,0,0,24,0,0,1342,1440.000000,1,0,-1.000000,592.320000,hint,lora,60 +on2,0,0,24,0,0,1413,1440.000000,1,0,-1.000000,580.480000,hint,lora,60 +on1,0,0,26,0,0,1422,1560.000000,1,2,-1.000000,641.968000,hint,lora,60 +on9,0,0,24,0,0,1363,1440.000000,1,0,-1.000000,591.360000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1394,1440.000000,1,0,-1.000000,583.520000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1435,1440.000000,2,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,2,0,-1.000000,602.400000,hint,lora,60 +on1,0,0,24,0,0,1389,1440.000000,2,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1393,1440.000000,2,0,-1.000000,583.680000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1427,1440.000000,2,0,-1.000000,578.240000,hint,lora,60 +on2,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,2,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1396,1440.000000,2,0,-1.000000,583.200000,hint,lora,60 +on4,0,0,24,0,0,1430,1440.000000,3,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1417,1440.000000,3,0,-1.000000,579.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,3,0,-1.000000,614.144000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1396,1440.000000,3,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1383,1500.000000,3,1,-1.000000,619.040000,hint,lora,60 +on1,0,0,24,0,0,1435,1440.000000,3,0,-1.000000,576.960000,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,1407,1440.000000,3,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,27,0,0,1329,1620.000000,4,3,-1.000000,692.912000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,4,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 +on10,0,0,24,0,0,1396,1440.000000,4,0,-1.000000,583.200000,hint,lora,60 +on5,0,0,24,0,0,1392,1440.000000,4,0,-1.000000,583.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,4,0,-1.000000,649.632000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1422,1440.000000,4,0,-1.000000,579.040000,hint,lora,60 +on7,0,0,24,0,0,1359,1440.000000,4,0,-1.000000,589.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1430,1440.000000,4,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,25,0,0,1402,1500.000000,5,1,-1.000000,611.935795,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1326,1500.000000,5,1,-1.000000,625.600000,hint,lora,60 +on6,0,0,24,0,0,1387,1440.000000,5,0,-1.000000,584.640000,hint,lora,60 +on11,0,0,24,0,0,1396,1440.000000,5,0,-1.000000,583.200000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1401,1500.000000,5,1,-1.000000,610.608000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,5,0,-1.000000,646.208000,hint,lora,60 +on10,0,0,25,0,0,1418,1500.000000,5,1,-1.000000,610.080000,hint,lora,60 +on2,0,0,24,0,0,1427,1440.000000,6,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,25,0,0,1379,1500.000000,6,1,-1.000000,619.360000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1435,1440.000000,6,0,-1.000000,576.960000,hint,lora,60 +on6,0,0,25,0,0,1485,1500.000000,6,1,-1.000000,600.000000,hint,lora,60 +on9,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 +on12,0,0,25,0,0,1409,1500.000000,6,1,-1.000000,613.328000,hint,lora,60 +on8,0,0,24,0,0,1430,1440.000000,6,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1407,1440.000000,6,0,-1.000000,581.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,6,0,-1.000000,613.824000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1413,1440.000000,6,0,-1.000000,580.480000,hint,lora,60 +on5,0,0,24,0,0,1354,1440.000000,7,0,-1.000000,603.200000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,7,0,-1.000000,639.968000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,7,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 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1393,1440.000000,7,0,-1.000000,583.680000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1399,1500.000000,7,1,-1.000000,610.400000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1305,1500.000000,7,1,-1.000000,631.840000,hint,lora,60 +on10,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,8,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1405,1440.000000,8,0,-1.000000,581.760000,hint,lora,60 +on8,0,0,26,0,0,1404,1560.000000,8,2,-1.000000,642.608000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,8,0,-1.000000,641.888000,hint,lora,60 +on9,0,0,24,0,0,1421,1443.000000,8,1,-1.000000,577.200000,hint,lora,60 +on7,0,0,25,0,0,1419,1500.000000,8,1,-1.000000,609.808000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1383,1440.000000,8,0,-1.000000,591.680000,hint,lora,60 +on10,0,0,24,0,0,1324,1440.000000,8,0,-1.000000,594.880000,hint,lora,60 +on6,0,0,24,0,0,1416,1440.000000,8,0,-1.000000,580.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1403,1440.000000,9,0,-1.000000,582.080000,hint,lora,60 +on12,0,0,24,0,0,1385,1440.000000,9,0,-1.000000,589.600000,hint,lora,60 +on8,0,0,24,0,0,1387,1440.000000,9,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1411,1500.000000,9,1,-1.000000,613.120000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,9,0,-1.000000,612.864000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,lora,60 +on7,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 +on6,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,lora,60 +on5,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,633.728000,hint,lora,60 +on8,0,0,25,0,0,1354,1500.000000,10,1,-1.000000,624.480000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1391,1440.000000,10,0,-1.000000,584.160000,hint,lora,60 +on4,0,0,25,0,0,1458,1500.000000,10,1,-1.000000,601.488000,hint,lora,60 +on1,0,0,24,0,0,1384,1440.000000,10,0,-1.000000,585.120000,hint,lora,60 +on3,0,0,25,0,0,1397,1500.000000,10,1,-1.000000,609.600000,hint,lora,60 +on2,0,0,24,0,0,1389,1440.000000,10,0,-1.000000,584.320000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,11,0,-1.000000,614.720000,hint,lora,60 +on4,0,0,24,0,0,1386,1440.000000,11,0,-1.000000,584.800000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1382,1440.000000,11,0,-1.000000,585.440000,hint,lora,60 +on2,0,0,24,0,0,1407,1440.000000,11,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1418,1440.000000,11,0,-1.000000,579.680000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1371,1440.000000,11,0,-1.000000,589.280000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1371,1500.000000,12,1,-1.000000,616.528000,hint,lora,60 +on2,0,0,25,0,0,1424,1500.000000,12,1,-1.000000,610.880000,hint,lora,60 +on10,0,0,24,0,0,1395,1440.000000,12,0,-1.000000,583.360000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1418,1440.000000,12,0,-1.000000,579.680000,hint,lora,60 +on7,0,0,24,0,0,1392,1440.000000,12,0,-1.000000,584.000000,hint,lora,60 +on4,0,0,24,0,0,1423,1440.000000,12,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,26,0,0,1362,1560.000000,12,2,-1.000000,651.520000,hint,lora,60 +on6,0,0,24,0,0,1384,1440.000000,12,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1413,1440.000000,12,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,26,0,0,1454,1560.000000,12,2,-1.000000,631.200000,hint,lora,60 +on8,0,0,24,0,0,1439,1440.000000,12,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,12,0,-1.000000,673.216000,hint,lora,60 +on11,0,0,25,0,0,1384,1500.000000,13,1,-1.000000,617.440000,hint,lora,60 +on2,0,0,24,0,0,1384,1440.000000,13,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1413,1440.000000,13,0,-1.000000,580.640000,hint,lora,60 +on3,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 +on7,0,0,25,0,0,1351,1500.000000,13,1,-1.000000,619.408000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,13,0,-1.000000,652.064000,hint,lora,60 +on4,0,0,24,0,0,1430,1440.000000,13,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1304,1440.000000,13,0,-1.000000,604.000000,hint,lora,60 +on12,0,0,25,0,0,1453,1500.000000,13,1,-1.000000,601.280000,hint,lora,60 +on8,0,0,24,0,0,1413,1440.000000,13,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,27,0,0,1424,1620.000000,14,3,-1.000000,669.856205,hint,lora,60 +on12,0,0,24,0,0,1391,1440.000000,14,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1339,1440.000000,14,0,-1.000000,592.480000,hint,lora,60 +on3,0,0,25,0,0,1395,1500.000000,14,1,-1.000000,616.480000,hint,lora,60 +on6,0,0,24,0,0,1394,1440.000000,14,0,-1.000000,583.520000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,14,0,-1.000000,673.408000,hint,lora,60 +on11,0,0,24,0,0,1433,1440.000000,14,0,-1.000000,577.280000,hint,lora,60 +on1,0,0,25,0,0,1490,1500.000000,14,1,-1.000000,600.000000,hint,lora,60 +on8,0,0,26,0,0,1432,1560.000000,14,2,-1.000000,631.296000,hint,lora,60 +on10,0,0,25,0,0,1369,1500.000000,14,1,-1.000000,617.168000,hint,lora,60 +on9,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 +on4,0,0,26,0,0,1330,1560.000000,14,2,-1.000000,654.079795,hint,lora,60 +on8,0,0,24,0,0,1387,1440.000000,15,0,-1.000000,584.800000,hint,lora,60 +on6,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,633.248000,hint,lora,60 +on9,0,0,24,0,0,1430,1440.000000,15,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,25,0,0,1400,1500.000000,15,1,-1.000000,615.200000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.160000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1405,1440.000000,15,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1433,1440.000000,15,0,-1.000000,577.280000,hint,lora,60 +on5,0,0,25,0,0,1391,1500.000000,15,1,-1.000000,617.872000,hint,lora,60 +on10,0,0,24,0,0,1404,1440.000000,15,0,-1.000000,581.920000,hint,lora,60 +on1,0,0,24,0,0,1437,1440.000000,15,0,-1.000000,576.640000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1401,1440.000000,16,0,-1.000000,582.400000,hint,lora,60 +on9,0,0,24,0,0,1426,1440.000000,16,0,-1.000000,585.600000,hint,lora,60 +on3,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,591.840000,hint,lora,60 +on6,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 +on8,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 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,lora,60 +on4,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 +on2,0,0,24,0,0,1397,1440.000000,16,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,17,0,-1.000000,611.264000,hint,lora,60 +on5,0,0,24,0,0,1397,1440.000000,17,0,-1.000000,583.040000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1435,1440.000000,17,0,-1.000000,576.960000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1410,1440.000000,17,0,-1.000000,580.960000,hint,lora,60 +on3,0,0,25,0,0,1410,1500.000000,17,1,-1.000000,612.320000,hint,lora,60 +on6,0,0,24,0,0,1407,1440.000000,17,0,-1.000000,581.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1413,1440.000000,17,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,26,0,0,1446,1560.000000,18,2,-1.000000,635.952000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1423,1440.000000,18,0,-1.000000,586.560000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,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,633.568000,hint,lora,60 +on1,0,0,24,0,0,1426,1440.000000,18,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1358,1440.000000,18,0,-1.000000,592.800000,hint,lora,60 +on12,0,0,24,0,0,1424,1440.000000,18,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1389,1440.000000,18,0,-1.000000,584.320000,hint,lora,60 +on9,0,0,24,0,0,1396,1440.000000,18,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1387,1440.000000,18,0,-1.000000,584.640000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1396,1440.000000,19,0,-1.000000,583.200000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1410,1440.000000,19,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,19,0,-1.000000,596.800000,hint,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1437,1440.000000,19,0,-1.000000,576.640000,hint,lora,60 +on8,0,0,24,0,0,1391,1440.000000,19,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1436,1440.000000,20,0,-1.000000,576.800000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1387,1500.000000,20,1,-1.000000,617.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,20,0,-1.000000,632.128000,hint,lora,60 +on9,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 +on8,0,0,25,0,0,1451,1500.000000,20,1,-1.000000,604.480000,hint,lora,60 +on1,0,0,25,0,0,1384,1500.000000,20,1,-1.000000,617.168000,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,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1326,1500.000000,20,1,-1.000000,624.320000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1429,1440.000000,20,0,-1.000000,577.920000,hint,lora,60 +on1,0,0,24,0,0,1426,1440.000000,21,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1478,1500.000000,21,1,-1.000000,600.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,21,0,-1.000000,615.264000,hint,lora,60 +on5,0,0,24,0,0,1426,1440.000000,21,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1358,1440.000000,21,0,-1.000000,597.600000,hint,lora,60 +on12,0,0,24,0,0,1421,1440.000000,21,0,-1.000000,579.200000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on6,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 +on3,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1388,1500.000000,21,1,-1.000000,617.968000,hint,lora,60 +on3,0,0,25,0,0,1478,1500.000000,22,1,-1.000000,600.000000,hint,lora,60 +on10,0,0,24,0,0,1387,1440.000000,22,0,-1.000000,586.400000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1436,1440.000000,22,0,-1.000000,595.200000,hint,lora,60 +on6,0,0,26,0,0,1370,1560.000000,22,2,-1.000000,651.360000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,lora,60 +on8,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,658.432000,hint,lora,60 +on9,0,0,24,0,0,1431,1440.000000,22,0,-1.000000,577.600000,hint,lora,60 +on5,0,0,24,0,0,1426,1440.000000,22,0,-1.000000,578.400000,hint,lora,60 +on12,0,0,25,0,0,1351,1500.000000,22,1,-1.000000,623.088000,hint,lora,60 +on4,0,0,24,0,0,1419,1440.000000,22,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1383,1440.000000,22,0,-1.000000,585.440000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.160000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1393,1440.000000,23,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1428,1440.000000,23,0,-1.000000,578.080000,hint,lora,60 +on9,0,0,25,0,0,1434,1500.000000,23,1,-1.000000,609.808000,hint,lora,60 +on3,0,0,25,0,0,1481,1500.000000,23,1,-1.000000,600.000000,hint,lora,60 +on7,0,0,25,0,0,1402,1500.000000,23,1,-1.000000,614.080000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,23,0,-1.000000,612.224000,hint,lora,60 +on1,0,0,24,0,0,1400,1440.000000,23,0,-1.000000,582.560000,hint,lora,60 +on12,0,0,24,0,0,1433,1440.000000,23,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1414,1440.000000,23,0,-1.000000,580.320000,hint,lora,60 +on3,0,0,24,0,0,1414,1440.000000,24,0,-1.000000,580.320000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,24,0,-1.000000,610.304000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1424,1440.000000,24,0,-1.000000,578.720000,hint,lora,60 +on5,0,0,24,0,0,1427,1440.000000,24,0,-1.000000,585.760000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1415,1440.000000,24,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1439,1440.000000,24,0,-1.000000,576.320000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1380,1500.000000,24,1,-1.000000,619.632000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1436,1440.000000,24,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 +on8,0,0,24,0,0,1432,1440.000000,25,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1427,1440.000000,25,0,-1.000000,578.240000,hint,lora,60 +on10,0,0,25,0,0,1339,1500.000000,25,1,-1.000000,626.768000,hint,lora,60 +on6,0,0,25,0,0,1478,1500.000000,25,1,-1.000000,600.000000,hint,lora,60 +on4,0,0,25,0,0,1452,1500.000000,25,1,-1.000000,601.488000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,25,0,-1.000000,631.904000,hint,lora,60 +on12,0,0,24,0,0,1315,1440.000000,25,0,-1.000000,599.360000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1373,1440.000000,25,0,-1.000000,594.880000,hint,lora,60 +on2,0,0,24,0,0,1439,1440.000000,25,0,-1.000000,576.320000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,27,0,0,1434,1620.000000,26,3,-1.000000,663.680000,hint,lora,60 +on1,0,0,24,0,0,1387,1440.000000,26,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,26,0,0,1373,1560.000000,26,2,-1.000000,647.520000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.160000,hint,lora,60 +on12,0,0,24,0,0,1437,1440.000000,26,0,-1.000000,576.640000,hint,lora,60 +on7,0,0,24,0,0,1435,1440.000000,26,0,-1.000000,576.960000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,26,0,-1.000000,645.088000,hint,lora,60 +on4,0,0,24,0,0,1387,1440.000000,26,0,-1.000000,584.800000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1385,1440.000000,26,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1427,1440.000000,26,0,-1.000000,578.240000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,27,0,-1.000000,660.448000,hint,lora,60 +on2,0,0,25,0,0,1402,1500.000000,27,1,-1.000000,610.288000,hint,lora,60 +on11,0,0,24,0,0,1409,1440.000000,27,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,25,0,0,1478,1500.000000,27,1,-1.000000,600.000000,hint,lora,60 +on3,0,0,25,0,0,1367,1500.000000,27,1,-1.000000,615.568000,hint,lora,60 +on1,0,0,25,0,0,1415,1500.000000,27,1,-1.000000,613.600000,hint,lora,60 +on8,0,0,24,0,0,1389,1440.000000,27,0,-1.000000,584.320000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1386,1440.000000,27,0,-1.000000,584.800000,hint,lora,60 +on10,0,0,24,0,0,1383,1440.000000,27,0,-1.000000,585.280000,hint,lora,60 +on12,0,0,24,0,0,1420,1440.000000,27,0,-1.000000,579.360000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1427,1500.000000,27,1,-1.000000,610.880000,hint,lora,60 +on4,0,0,24,0,0,1391,1440.000000,28,0,-1.000000,584.000000,hint,lora,60 +on11,0,0,25,0,0,1470,1500.000000,28,1,-1.000000,601.440000,hint,lora,60 +on9,0,0,24,0,0,1415,1440.000000,28,0,-1.000000,580.160000,hint,lora,60 +on10,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 +on6,0,0,25,0,0,1417,1500.000000,28,1,-1.000000,617.648000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,28,0,-1.000000,640.608000,hint,lora,60 +on2,0,0,26,0,0,1264,1560.000000,28,2,-1.000000,668.160000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1478,1500.000000,28,1,-1.000000,600.208000,hint,lora,60 +on8,0,0,25,0,0,1474,1500.000000,28,1,-1.000000,600.208000,hint,lora,60 +on12,0,0,24,0,0,1431,1440.000000,28,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1366,1481.000000,29,1,-1.000000,617.360000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1465,1500.000000,29,1,-1.000000,602.448000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,29,0,-1.000000,657.728000,hint,lora,60 +on9,0,0,25,0,0,1388,1500.000000,29,1,-1.000000,619.200000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1377,1440.000000,29,0,-1.000000,586.400000,hint,lora,60 +on4,0,0,24,0,0,1387,1440.000000,29,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1416,1440.000000,29,0,-1.000000,580.160000,hint,lora,60 +on3,0,0,25,0,0,1372,1500.000000,29,1,-1.000000,616.400000,hint,lora,60 +on1,0,0,24,0,0,1391,1440.000000,29,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,30,0,-1.000000,579.520000,hint,lora,60 +on11,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 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,30,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 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1419,1440.000000,30,0,-1.000000,579.520000,hint,lora,60 +on6,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,31,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1393,1440.000000,31,0,-1.000000,585.600000,hint,lora,60 +on1,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,595.040000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1397,1440.000000,31,0,-1.000000,590.080000,hint,lora,60 +on9,0,0,24,0,0,1415,1440.000000,31,0,-1.000000,580.160000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1425,1440.000000,32,0,-1.000000,578.560000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1387,1440.000000,32,0,-1.000000,584.640000,hint,lora,60 +on9,0,0,24,0,0,1383,1440.000000,32,0,-1.000000,585.280000,hint,lora,60 +on7,0,0,24,0,0,1388,1440.000000,32,0,-1.000000,592.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1403,1440.000000,32,0,-1.000000,582.080000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,32,0,-1.000000,624.800000,hint,lora,60 +on8,0,0,24,0,0,1385,1440.000000,32,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1412,1440.000000,32,0,-1.000000,580.640000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1375,1440.000000,33,0,-1.000000,586.720000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1392,1440.000000,33,0,-1.000000,583.840000,hint,lora,60 +on1,0,0,24,0,0,1332,1440.000000,33,0,-1.000000,595.200000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,33,0,-1.000000,623.360000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1415,1440.000000,33,0,-1.000000,580.160000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1397,1440.000000,33,0,-1.000000,583.040000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1406,1440.000000,34,0,-1.000000,581.760000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1467,1500.000000,34,1,-1.000000,609.600000,hint,lora,60 +on12,0,0,24,0,0,1414,1440.000000,34,0,-1.000000,580.320000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1478,1500.000000,34,1,-1.000000,600.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1331,1550.000000,34,2,-1.000000,652.048000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,34,0,-1.000000,620.288000,hint,lora,60 +on3,0,0,25,0,0,1357,1500.000000,35,1,-1.000000,620.416000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,35,0,-1.000000,640.288000,hint,lora,60 +on5,0,0,24,0,0,1351,1440.000000,35,0,-1.000000,591.680000,hint,lora,60 +on4,0,0,25,0,0,1477,1500.000000,35,1,-1.000000,600.000000,hint,lora,60 +on12,0,0,25,0,0,1362,1500.000000,35,1,-1.000000,619.200000,hint,lora,60 +on2,0,0,25,0,0,1435,1500.000000,35,1,-1.000000,607.232000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1436,1440.000000,35,0,-1.000000,576.800000,hint,lora,60 +on7,0,0,25,0,0,1444,1500.000000,35,1,-1.000000,608.608000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1424,1440.000000,35,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1411,1440.000000,36,0,-1.000000,580.800000,hint,lora,60 +on4,0,0,26,0,0,1394,1560.000000,36,2,-1.000000,643.952000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1414,1440.000000,36,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,36,0,-1.000000,637.216000,hint,lora,60 +on2,0,0,26,0,0,1378,1560.000000,36,2,-1.000000,645.712000,hint,lora,60 +on5,0,0,24,0,0,1428,1440.000000,36,0,-1.000000,578.080000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1387,1440.000000,36,0,-1.000000,584.640000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1379,1440.000000,37,0,-1.000000,594.880000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,37,0,-1.000000,632.000000,hint,lora,60 +on5,0,0,24,0,0,1427,1440.000000,37,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1410,1440.000000,37,0,-1.000000,590.560000,hint,lora,60 +on10,0,0,24,0,0,1343,1440.000000,37,0,-1.000000,593.760000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1434,1440.000000,37,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1402,1440.000000,37,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1382,1440.000000,37,0,-1.000000,585.440000,hint,lora,60 +on7,0,0,24,0,0,1408,1440.000000,37,0,-1.000000,581.280000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1437,1440.000000,37,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1394,1440.000000,38,0,-1.000000,583.680000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1433,1440.000000,38,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,38,0,-1.000000,584.960000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on9,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,39,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,39,0,-1.000000,626.080000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1400,1440.000000,39,0,-1.000000,582.560000,hint,lora,60 +on10,0,0,24,0,0,1379,1440.000000,39,0,-1.000000,589.440000,hint,lora,60 +on5,0,0,24,0,0,1404,1440.000000,39,0,-1.000000,581.920000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,585.600000,hint,lora,60 +on9,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 +on11,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1335,1440.000000,39,0,-1.000000,602.080000,hint,lora,60 +on8,0,0,24,0,0,1379,1440.000000,39,0,-1.000000,594.240000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,39,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 +on11,0,0,24,0,0,1397,1440.000000,40,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1408,1440.000000,40,0,-1.000000,581.280000,hint,lora,60 +on1,0,0,24,0,0,1431,1440.000000,40,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,27,0,0,1541,1620.000000,40,3,-1.000000,650.240000,hint,lora,60 +on4,0,0,24,0,0,1376,1440.000000,40,0,-1.000000,587.680000,hint,lora,60 +on6,0,0,24,0,0,1387,1440.000000,40,0,-1.000000,584.640000,hint,lora,60 +on9,0,0,25,0,0,1456,1500.000000,40,1,-1.000000,600.000000,hint,lora,60 +on5,0,0,24,0,0,1395,1440.000000,40,0,-1.000000,583.360000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,40,0,-1.000000,645.440000,hint,lora,60 +on12,0,0,27,0,0,1426,1620.000000,40,3,-1.000000,671.888000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1392,1440.000000,40,0,-1.000000,583.840000,hint,lora,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1388,1500.000000,41,1,-1.000000,617.760000,hint,lora,60 +on12,0,0,24,0,0,1409,1440.000000,41,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,41,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 +on0,1,0,24,0,0,0,1440.000000,41,0,-1.000000,624.864000,hint,lora,60 +on6,0,0,24,0,0,1337,1440.000000,41,0,-1.000000,593.440000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1433,1440.000000,41,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1392,1440.000000,41,0,-1.000000,585.600000,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 +on2,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1428,1440.000000,42,0,-1.000000,578.080000,hint,lora,60 +on8,0,0,24,0,0,1382,1440.000000,42,0,-1.000000,592.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,42,0,-1.000000,631.968000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1343,1500.000000,42,1,-1.000000,619.680000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1385,1500.000000,42,1,-1.000000,618.400000,hint,lora,60 +on7,0,0,24,0,0,1400,1440.000000,42,0,-1.000000,582.560000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1436,1440.000000,42,0,-1.000000,576.800000,hint,lora,60 +on5,0,0,24,0,0,1406,1440.000000,43,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1398,1440.000000,43,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1391,1440.000000,43,0,-1.000000,584.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1427,1440.000000,43,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,43,0,-1.000000,620.960000,hint,lora,60 +on7,0,0,24,0,0,1389,1440.000000,43,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1391,1440.000000,43,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1404,1440.000000,43,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1351,1440.000000,44,0,-1.000000,597.600000,hint,lora,60 +on7,0,0,24,0,0,1396,1440.000000,44,0,-1.000000,583.200000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1429,1440.000000,44,0,-1.000000,578.080000,hint,lora,60 +on9,0,0,24,0,0,1363,1440.000000,44,0,-1.000000,588.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,44,0,-1.000000,636.384000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1411,1440.000000,44,0,-1.000000,587.200000,hint,lora,60 +on11,0,0,24,0,0,1381,1444.000000,44,1,-1.000000,588.592000,hint,lora,60 +on8,0,0,24,0,0,1389,1440.000000,44,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1382,1440.000000,45,0,-1.000000,588.640000,hint,lora,60 +on5,0,0,25,0,0,1395,1500.000000,45,1,-1.000000,619.520000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1401,1440.000000,45,0,-1.000000,582.400000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1424,1440.000000,45,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on10,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,608.384000,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 +on6,0,0,24,0,0,1399,1440.000000,46,0,-1.000000,582.720000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,46,0,-1.000000,642.048000,hint,lora,60 +on9,0,0,24,0,0,1357,1440.000000,46,0,-1.000000,595.200000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1414,1440.000000,46,0,-1.000000,580.320000,hint,lora,60 +on3,0,0,25,0,0,1497,1500.000000,46,1,-1.000000,600.000000,hint,lora,60 +on5,0,0,26,0,0,1380,1560.000000,46,2,-1.000000,647.840000,hint,lora,60 +on10,0,0,25,0,0,1464,1500.000000,46,1,-1.000000,609.808000,hint,lora,60 +on4,0,0,25,0,0,1352,1500.000000,46,1,-1.000000,623.040000,hint,lora,60 +on12,0,0,24,0,0,1426,1440.000000,47,0,-1.000000,578.400000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1391,1500.000000,47,1,-1.000000,619.200000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1352,1440.000000,47,0,-1.000000,594.880000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,47,0,-1.000000,640.160000,hint,lora,60 +on8,0,0,24,0,0,1392,1440.000000,47,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,25,0,0,1428,1500.000000,47,1,-1.000000,607.408000,hint,lora,60 +on5,0,0,24,0,0,1418,1440.000000,47,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,25,0,0,1386,1500.000000,47,1,-1.000000,618.720000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1446,1500.000000,48,1,-1.000000,609.808000,hint,lora,60 +on6,0,0,24,0,0,1404,1440.000000,48,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1393,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 +on3,0,0,24,0,0,1439,1440.000000,48,0,-1.000000,576.320000,hint,lora,60 +on12,0,0,24,0,0,1392,1440.000000,48,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,48,0,-1.000000,637.184000,hint,lora,60 +on7,0,0,24,0,0,1385,1440.000000,48,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1422,1440.000000,48,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,25,0,0,1369,1500.000000,48,1,-1.000000,617.120000,hint,lora,60 +on11,0,0,24,0,0,1395,1440.000000,48,0,-1.000000,590.880000,hint,lora,60 +on5,0,0,25,0,0,1478,1500.000000,48,1,-1.000000,600.000000,hint,lora,60 +on11,0,0,24,0,0,1393,1440.000000,49,0,-1.000000,595.200000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1409,1440.000000,49,0,-1.000000,581.120000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,49,0,-1.000000,600.160000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1405,1440.000000,49,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1407,1440.000000,49,0,-1.000000,581.440000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on2,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,50,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1385,1440.000000,50,0,-1.000000,586.080000,hint,lora,60 +on7,0,0,24,0,0,1420,1440.000000,50,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1425,1440.000000,50,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1325,1440.000000,50,0,-1.000000,599.680000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,50,0,-1.000000,623.744000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1440,1500.000000,50,1,-1.000000,609.920000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1416,1440.000000,50,0,-1.000000,580.000000,hint,lora,60 +on7,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 +on12,0,0,24,0,0,1410,1440.000000,51,0,-1.000000,580.960000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1430,1440.000000,51,0,-1.000000,577.760000,hint,lora,60 +on9,0,0,25,0,0,1352,1500.000000,51,1,-1.000000,622.720000,hint,lora,60 +on8,0,0,24,0,0,1365,1440.000000,51,0,-1.000000,588.960000,hint,lora,60 +on10,0,0,25,0,0,1466,1500.000000,51,1,-1.000000,609.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1341,1440.000000,51,0,-1.000000,595.360000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,51,0,-1.000000,635.904000,hint,lora,60 +on7,0,0,24,0,0,1401,1440.000000,52,0,-1.000000,582.720000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,52,0,-1.000000,608.384000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1381,1440.000000,52,0,-1.000000,585.760000,hint,lora,60 +on4,0,0,25,0,0,1371,1500.000000,52,1,-1.000000,616.000000,hint,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1402,1440.000000,53,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1420,1440.000000,53,0,-1.000000,579.360000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,53,0,-1.000000,633.184000,hint,lora,60 +on4,0,0,25,0,0,1327,1500.000000,53,1,-1.000000,628.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1383,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 +on11,0,0,24,0,0,1435,1440.000000,53,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1402,1440.000000,53,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1398,1440.000000,53,0,-1.000000,582.880000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1369,1466.000000,54,1,-1.000000,609.760000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,54,0,-1.000000,630.944000,hint,lora,60 +on7,0,0,24,0,0,1397,1440.000000,54,0,-1.000000,583.040000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1362,1440.000000,54,0,-1.000000,592.960000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1340,1440.000000,54,0,-1.000000,598.880000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1423,1500.000000,54,1,-1.000000,615.296000,hint,lora,60 +on6,0,0,25,0,0,1425,1500.000000,54,1,-1.000000,608.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1438,1440.000000,55,0,-1.000000,576.480000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1375,1440.000000,55,0,-1.000000,586.720000,hint,lora,60 +on10,0,0,24,0,0,1386,1440.000000,55,0,-1.000000,584.800000,hint,lora,60 +on2,0,0,24,0,0,1402,1440.000000,55,0,-1.000000,589.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,55,0,-1.000000,630.720000,hint,lora,60 +on7,0,0,24,0,0,1387,1440.000000,55,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1361,1440.000000,55,0,-1.000000,588.960000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1399,1440.000000,55,0,-1.000000,582.720000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1369,1500.000000,56,1,-1.000000,616.960000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,56,0,-1.000000,652.288000,hint,lora,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1339,1440.000000,56,0,-1.000000,595.040000,hint,lora,60 +on2,0,0,24,0,0,1437,1440.000000,56,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1405,1440.000000,56,0,-1.000000,581.760000,hint,lora,60 +on3,0,0,24,0,0,1415,1440.000000,56,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1395,1440.000000,56,0,-1.000000,583.360000,hint,lora,60 +on5,0,0,25,0,0,1334,1500.000000,56,1,-1.000000,626.720000,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,1428,1440.000000,56,0,-1.000000,578.080000,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 +on0,1,0,24,0,0,0,1440.000000,57,0,-1.000000,642.624000,hint,lora,60 +on3,0,0,24,0,0,1306,1440.000000,57,0,-1.000000,600.480000,hint,lora,60 +on10,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 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1435,1440.000000,57,0,-1.000000,576.960000,hint,lora,60 +on11,0,0,24,0,0,1399,1440.000000,57,0,-1.000000,591.520000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1388,1440.000000,57,0,-1.000000,592.800000,hint,lora,60 +on8,0,0,25,0,0,1300,1500.000000,57,1,-1.000000,631.040000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1436,1440.000000,58,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1429,1440.000000,58,0,-1.000000,577.920000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,58,0,-1.000000,607.904000,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,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1433,1440.000000,58,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1345,1440.000000,58,0,-1.000000,592.480000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1415,1500.000000,58,1,-1.000000,610.720000,hint,lora,60 +on11,0,0,24,0,0,1431,1440.000000,58,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,26,0,0,1412,1560.000000,59,2,-1.000000,643.360000,hint,lora,60 +on6,0,0,26,0,0,1504,1560.000000,59,2,-1.000000,624.208000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,59,0,-1.000000,644.032000,hint,lora,60 +on5,0,0,25,0,0,1418,1500.000000,59,1,-1.000000,610.080000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1436,1500.000000,59,1,-1.000000,605.440000,hint,lora,60 +on12,0,0,24,0,0,1395,1440.000000,59,0,-1.000000,583.360000,hint,lora,60 +on7,0,0,25,0,0,1426,1500.000000,59,1,-1.000000,609.808000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1427,1440.000000,59,0,-1.000000,578.240000,hint,lora,60 +on2,0,0,25,0,0,1435,1500.000000,59,1,-1.000000,609.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1402,1440.000000,59,0,-1.000000,582.240000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on7,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 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1431,1440.000000,60,0,-1.000000,577.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,60,0,-1.000000,584.640000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1405,1440.000000,60,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1434,1440.000000,60,0,-1.000000,577.120000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.160000,hint,lora,60 +on10,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 +on10,0,0,24,0,0,1392,1440.000000,61,0,-1.000000,583.840000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1400,1440.000000,61,0,-1.000000,582.560000,hint,lora,60 +on6,0,0,24,0,0,1341,1440.000000,61,0,-1.000000,599.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,61,0,-1.000000,658.208000,hint,lora,60 +on8,0,0,25,0,0,1336,1500.000000,61,1,-1.000000,636.160000,hint,lora,60 +on9,0,0,24,0,0,1430,1440.000000,61,0,-1.000000,577.760000,hint,lora,60 +on7,0,0,24,0,0,1420,1440.000000,61,0,-1.000000,585.600000,hint,lora,60 +on2,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 +on1,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1419,1440.000000,61,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,25,0,0,1391,1500.000000,61,1,-1.000000,616.960000,hint,lora,60 +on10,0,0,24,0,0,1394,1440.000000,62,0,-1.000000,583.520000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,62,0,-1.000000,620.704000,hint,lora,60 +on1,0,0,24,0,0,1393,1440.000000,62,0,-1.000000,583.680000,hint,lora,60 +on5,0,0,26,0,0,1388,1560.000000,62,2,-1.000000,645.280000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,26,0,0,1479,1560.000000,62,2,-1.000000,627.408000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on12,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 +on3,0,0,24,0,0,1385,1440.000000,62,0,-1.000000,584.960000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1364,1440.000000,63,0,-1.000000,588.960000,hint,lora,60 +on4,0,0,24,0,0,1418,1440.000000,63,0,-1.000000,579.680000,hint,lora,60 +on5,0,0,24,0,0,1409,1440.000000,63,0,-1.000000,581.120000,hint,lora,60 +on6,0,0,25,0,0,1419,1500.000000,63,1,-1.000000,628.800000,hint,lora,60 +on2,0,0,24,0,0,1418,1440.000000,63,0,-1.000000,579.680000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,26,0,0,1398,1560.000000,63,2,-1.000000,645.552000,hint,lora,60 +on3,0,0,24,0,0,1373,1440.000000,63,0,-1.000000,595.200000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1371,1500.000000,63,1,-1.000000,616.800000,hint,lora,60 +on7,0,0,24,0,0,1413,1440.000000,63,0,-1.000000,580.480000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,63,0,-1.000000,662.112000,hint,lora,60 +on8,0,0,24,0,0,1438,1440.000000,63,0,-1.000000,576.480000,hint,lora,60 +on2,0,0,25,0,0,1352,1500.000000,64,1,-1.000000,620.640000,hint,lora,60 +on7,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 +on8,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on1,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 +on0,1,0,24,0,0,0,1440.000000,64,0,-1.000000,617.504000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1381,1440.000000,64,0,-1.000000,593.760000,hint,lora,60 +on12,0,0,24,0,0,1404,1440.000000,64,0,-1.000000,595.200000,hint,lora,60 +on4,0,0,24,0,0,1409,1440.000000,64,0,-1.000000,581.120000,hint,lora,60 +on3,0,0,24,0,0,1425,1440.000000,65,0,-1.000000,578.560000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1431,1440.000000,65,0,-1.000000,577.600000,hint,lora,60 +on2,0,0,24,0,0,1343,1440.000000,65,0,-1.000000,591.840000,hint,lora,60 +on12,0,0,25,0,0,1406,1500.000000,65,1,-1.000000,614.912000,hint,lora,60 +on11,0,0,25,0,0,1431,1500.000000,65,1,-1.000000,607.136000,hint,lora,60 +on4,0,0,25,0,0,1435,1500.000000,65,1,-1.000000,609.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,65,0,-1.000000,619.104000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,65,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 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1300,1500.000000,66,1,-1.000000,629.072000,hint,lora,60 +on8,0,0,24,0,0,1433,1440.000000,66,0,-1.000000,577.280000,hint,lora,60 +on5,0,0,24,0,0,1402,1440.000000,66,0,-1.000000,582.240000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on10,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 +on6,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,66,0,-1.000000,612.544000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,26,0,0,1416,1560.000000,67,2,-1.000000,639.247795,hint,lora,60 +on3,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,629.088000,hint,lora,60 +on9,0,0,25,0,0,1471,1500.000000,67,1,-1.000000,601.968205,hint,lora,60 +on10,0,0,25,0,0,1436,1500.000000,67,1,-1.000000,605.488000,hint,lora,60 +on11,0,0,25,0,0,1426,1500.000000,67,1,-1.000000,605.120000,hint,lora,60 +on2,0,0,24,0,0,1339,1440.000000,67,0,-1.000000,595.040000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,26,0,0,1457,1560.000000,67,2,-1.000000,633.808000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1428,1500.000000,67,1,-1.000000,607.344000,hint,lora,60 +on6,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,68,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,68,0,-1.000000,636.448000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,27,0,0,1405,1620.000000,68,3,-1.000000,676.640000,hint,lora,60 +on11,0,0,27,0,0,1558,1620.000000,68,3,-1.000000,648.416205,hint,lora,60 +on9,0,0,24,0,0,1399,1440.000000,68,0,-1.000000,589.600000,hint,lora,60 +on1,0,0,25,0,0,1416,1500.000000,68,1,-1.000000,607.247795,hint,lora,60 +on3,0,0,26,0,0,1457,1560.000000,68,2,-1.000000,642.128000,hint,lora,60 +on6,0,0,24,0,0,1397,1440.000000,68,0,-1.000000,586.400000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1425,1440.000000,68,0,-1.000000,578.560000,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 +on11,0,0,26,0,0,1425,1560.000000,69,2,-1.000000,637.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,69,0,-1.000000,655.008000,hint,lora,60 +on10,0,0,24,0,0,1359,1440.000000,69,0,-1.000000,591.200000,hint,lora,60 +on12,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 +on8,0,0,25,0,0,1372,1500.000000,69,1,-1.000000,614.560000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1373,1440.000000,69,0,-1.000000,587.040000,hint,lora,60 +on5,0,0,24,0,0,1387,1440.000000,69,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1435,1440.000000,69,0,-1.000000,576.960000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1380,1500.000000,69,1,-1.000000,617.120000,hint,lora,60 +on10,0,0,26,0,0,1361,1560.000000,70,2,-1.000000,655.360000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1384,1440.000000,70,0,-1.000000,585.120000,hint,lora,60 +on1,0,0,24,0,0,1393,1440.000000,70,0,-1.000000,583.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,70,0,-1.000000,661.760000,hint,lora,60 +on6,0,0,24,0,0,1433,1440.000000,70,0,-1.000000,577.280000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1399,1500.000000,70,1,-1.000000,614.880000,hint,lora,60 +on7,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 +on3,0,0,24,0,0,1397,1440.000000,70,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,26,0,0,1437,1560.000000,70,2,-1.000000,638.672000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,71,0,-1.000000,646.592000,hint,lora,60 +on2,0,0,24,0,0,1429,1440.000000,71,0,-1.000000,577.920000,hint,lora,60 +on3,0,0,24,0,0,1404,1440.000000,71,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1411,1440.000000,71,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1396,1500.000000,71,1,-1.000000,615.680000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1314,1500.000000,71,1,-1.000000,629.440000,hint,lora,60 +on5,0,0,25,0,0,1373,1500.000000,71,1,-1.000000,624.480000,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,1431,1440.000000,72,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,72,0,-1.000000,652.832000,hint,lora,60 +on6,0,0,25,0,0,1381,1500.000000,72,1,-1.000000,619.200000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1371,1500.000000,72,1,-1.000000,616.320000,hint,lora,60 +on11,0,0,25,0,0,1393,1500.000000,72,1,-1.000000,616.320000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1403,1440.000000,72,0,-1.000000,582.080000,hint,lora,60 +on1,0,0,24,0,0,1332,1440.000000,72,0,-1.000000,593.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1405,1440.000000,73,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1437,1440.000000,73,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,73,0,-1.000000,623.328000,hint,lora,60 +on1,0,0,24,0,0,1370,1440.000000,73,0,-1.000000,587.520000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1386,1452.000000,73,1,-1.000000,592.960000,hint,lora,60 +on10,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 +on5,0,0,25,0,0,1402,1500.000000,73,1,-1.000000,614.240000,hint,lora,60 +on3,0,0,24,0,0,1409,1440.000000,73,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1414,1440.000000,74,0,-1.000000,595.200000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on9,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 +on11,0,0,24,0,0,1371,1440.000000,74,0,-1.000000,590.400000,hint,lora,60 +on12,0,0,25,0,0,1345,1500.000000,74,1,-1.000000,622.560000,hint,lora,60 +on3,0,0,24,0,0,1428,1440.000000,74,0,-1.000000,578.080000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,74,0,-1.000000,626.144000,hint,lora,60 +on6,0,0,24,0,0,1417,1440.000000,74,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1457,1500.000000,74,1,-1.000000,600.000000,hint,lora,60 +on4,0,0,24,0,0,1384,1440.000000,74,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1422,1440.000000,75,0,-1.000000,579.040000,hint,lora,60 +on8,0,0,25,0,0,1402,1500.000000,75,1,-1.000000,624.640000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,75,0,-1.000000,621.664000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1433,1440.000000,75,0,-1.000000,577.280000,hint,lora,60 +on2,0,0,24,0,0,1336,1440.000000,75,0,-1.000000,593.120000,hint,lora,60 +on12,0,0,24,0,0,1412,1440.000000,75,0,-1.000000,580.800000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1418,1440.000000,75,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1391,1440.000000,76,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1397,1500.000000,76,1,-1.000000,623.200000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,76,0,-1.000000,619.264000,hint,lora,60 +on4,0,0,24,0,0,1405,1440.000000,76,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1430,1440.000000,76,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1361,1440.000000,76,0,-1.000000,595.200000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on10,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 +on7,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1396,1440.000000,77,0,-1.000000,583.200000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on9,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,1393,1440.000000,77,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1424,1440.000000,77,0,-1.000000,578.720000,hint,lora,60 +on8,0,0,26,0,0,1316,1560.000000,77,2,-1.000000,659.360000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,77,0,-1.000000,635.968000,hint,lora,60 +on3,0,0,24,0,0,1396,1440.000000,77,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1372,1440.000000,78,0,-1.000000,591.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,78,0,-1.000000,648.032000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,26,0,0,1433,1560.000000,78,2,-1.000000,638.032000,hint,lora,60 +on1,0,0,24,0,0,1422,1440.000000,78,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1372,1440.000000,78,0,-1.000000,595.200000,hint,lora,60 +on9,0,0,25,0,0,1397,1500.000000,78,1,-1.000000,620.000000,hint,lora,60 +on5,0,0,24,0,0,1386,1440.000000,78,0,-1.000000,584.800000,hint,lora,60 +on12,0,0,24,0,0,1405,1440.000000,78,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1428,1440.000000,78,0,-1.000000,578.080000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,78,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 +on4,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on12,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 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1404,1440.000000,79,0,-1.000000,581.920000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1374,1440.000000,79,0,-1.000000,586.880000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,79,0,-1.000000,592.800000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1433,1440.000000,80,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,25,0,0,1327,1500.000000,80,1,-1.000000,623.360000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,80,0,-1.000000,625.664000,hint,lora,60 +on9,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 +on7,0,0,24,0,0,1353,1440.000000,80,0,-1.000000,590.240000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1409,1440.000000,80,0,-1.000000,590.400000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1407,1440.000000,80,0,-1.000000,581.440000,hint,lora,60 +on10,0,0,24,0,0,1395,1440.000000,81,0,-1.000000,590.880000,hint,lora,60 +on9,0,0,25,0,0,1412,1500.000000,81,1,-1.000000,611.520000,hint,lora,60 +on7,0,0,24,0,0,1411,1440.000000,81,0,-1.000000,585.600000,hint,lora,60 +on5,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 +on11,0,0,24,0,0,1397,1440.000000,81,0,-1.000000,583.040000,hint,lora,60 +on2,0,0,24,0,0,1369,1440.000000,81,0,-1.000000,592.320000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,lora,60 +on8,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,630.048000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1408,1500.000000,81,1,-1.000000,611.472000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1384,1440.000000,82,0,-1.000000,595.200000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on10,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,594.400000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1384,1440.000000,82,0,-1.000000,585.120000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1392,1440.000000,83,0,-1.000000,584.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,83,0,-1.000000,649.312000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1387,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 +on6,0,0,26,0,0,1337,1560.000000,83,2,-1.000000,664.000000,hint,lora,60 +on10,0,0,25,0,0,1385,1500.000000,83,1,-1.000000,618.400000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1411,1440.000000,83,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1417,1440.000000,84,0,-1.000000,579.840000,hint,lora,60 +on3,0,0,25,0,0,1386,1500.000000,84,1,-1.000000,615.360000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,84,0,-1.000000,673.120000,hint,lora,60 +on10,0,0,25,0,0,1443,1500.000000,84,1,-1.000000,613.120000,hint,lora,60 +on11,0,0,25,0,0,1478,1500.000000,84,1,-1.000000,600.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.160000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1410,1500.000000,84,1,-1.000000,614.672000,hint,lora,60 +on2,0,0,27,0,0,1404,1620.000000,84,3,-1.000000,672.704000,hint,lora,60 +on8,0,0,24,0,0,1239,1440.000000,84,0,-1.000000,616.160000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,85,0,-1.000000,637.504000,hint,lora,60 +on2,0,0,25,0,0,1391,1500.000000,85,1,-1.000000,616.960000,hint,lora,60 +on7,0,0,24,0,0,1362,1440.000000,85,0,-1.000000,590.560000,hint,lora,60 +on3,0,0,24,0,0,1429,1440.000000,85,0,-1.000000,577.920000,hint,lora,60 +on10,0,0,24,0,0,1413,1440.000000,85,0,-1.000000,580.480000,hint,lora,60 +on4,0,0,24,0,0,1409,1440.000000,85,0,-1.000000,581.120000,hint,lora,60 +on9,0,0,24,0,0,1402,1440.000000,85,0,-1.000000,590.240000,hint,lora,60 +on11,0,0,24,0,0,1406,1440.000000,85,0,-1.000000,581.600000,hint,lora,60 +on8,0,0,24,0,0,1413,1440.000000,85,0,-1.000000,580.480000,hint,lora,60 +on12,0,0,24,0,0,1433,1440.000000,85,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1425,1440.000000,85,0,-1.000000,578.560000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,86,0,-1.000000,613.504000,hint,lora,60 +on3,0,0,24,0,0,1400,1440.000000,86,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1426,1440.000000,86,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1394,1440.000000,86,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1402,1440.000000,86,0,-1.000000,582.400000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1367,1463.000000,86,1,-1.000000,602.480000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1434,1440.000000,86,0,-1.000000,577.120000,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,1440,1440.000000,86,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,87,0,-1.000000,613.120000,hint,lora,60 +on5,0,0,24,0,0,1403,1440.000000,87,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1358,1440.000000,87,0,-1.000000,595.200000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1409,1440.000000,87,0,-1.000000,581.120000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1386,1440.000000,87,0,-1.000000,588.320000,hint,lora,60 +on1,0,0,24,0,0,1419,1440.000000,87,0,-1.000000,579.520000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1358,1500.000000,88,1,-1.000000,628.640000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1381,1440.000000,88,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1302,1440.000000,88,0,-1.000000,598.720000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,88,0,-1.000000,653.248000,hint,lora,60 +on8,0,0,24,0,0,1375,1440.000000,88,0,-1.000000,601.280000,hint,lora,60 +on7,0,0,26,0,0,1472,1560.000000,88,2,-1.000000,633.760000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1417,1440.000000,88,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on1,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 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1429,1440.000000,89,0,-1.000000,577.920000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1413,1440.000000,89,0,-1.000000,580.480000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,89,0,-1.000000,590.400000,hint,lora,60 +on11,0,0,24,0,0,1425,1440.000000,89,0,-1.000000,578.560000,hint,lora,60 +on6,0,0,24,0,0,1420,1440.000000,89,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1428,1440.000000,89,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1422,1440.000000,90,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,25,0,0,1420,1500.000000,90,1,-1.000000,613.072000,hint,lora,60 +on1,0,0,24,0,0,1395,1440.000000,90,0,-1.000000,590.720000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1422,1440.000000,90,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1401,1440.000000,90,0,-1.000000,595.200000,hint,lora,60 +on6,0,0,24,0,0,1388,1440.000000,90,0,-1.000000,595.200000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,90,0,-1.000000,656.608000,hint,lora,60 +on3,0,0,25,0,0,1348,1500.000000,90,1,-1.000000,619.680000,hint,lora,60 +on11,0,0,24,0,0,1399,1440.000000,90,0,-1.000000,582.720000,hint,lora,60 +on12,0,0,24,0,0,1353,1440.000000,90,0,-1.000000,593.920000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1393,1500.000000,91,1,-1.000000,616.320000,hint,lora,60 +on2,0,0,24,0,0,1439,1440.000000,91,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1387,1440.000000,91,0,-1.000000,588.960000,hint,lora,60 +on6,0,0,24,0,0,1405,1440.000000,91,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1409,1440.000000,91,0,-1.000000,581.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,91,0,-1.000000,637.248000,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 +on3,0,0,24,0,0,1401,1440.000000,91,0,-1.000000,582.400000,hint,lora,60 +on4,0,0,25,0,0,1389,1500.000000,91,1,-1.000000,614.080000,hint,lora,60 +on12,0,0,24,0,0,1412,1440.000000,91,0,-1.000000,580.640000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,91,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 +on4,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 +on7,0,0,24,0,0,1383,1440.000000,92,0,-1.000000,585.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,92,0,-1.000000,624.608000,hint,lora,60 +on8,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,92,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1371,1500.000000,92,1,-1.000000,626.560000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1396,1440.000000,92,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1428,1440.000000,92,0,-1.000000,578.080000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1426,1500.000000,92,1,-1.000000,609.760000,hint,lora,60 +on6,0,0,24,0,0,1400,1440.000000,93,0,-1.000000,582.720000,hint,lora,60 +on2,0,0,25,0,0,1437,1500.000000,93,1,-1.000000,609.600000,hint,lora,60 +on8,0,0,24,0,0,1437,1440.000000,93,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1430,1440.000000,93,0,-1.000000,577.760000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,93,0,-1.000000,611.488000,hint,lora,60 +on5,0,0,26,0,0,1408,1560.000000,93,2,-1.000000,640.960000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.160000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1413,1440.000000,94,0,-1.000000,580.480000,hint,lora,60 +on5,0,0,25,0,0,1383,1500.000000,94,1,-1.000000,618.080000,hint,lora,60 +on10,0,0,25,0,0,1420,1500.000000,94,1,-1.000000,609.648000,hint,lora,60 +on7,0,0,25,0,0,1369,1500.000000,94,1,-1.000000,616.960000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on1,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,647.296000,hint,lora,60 +on4,0,0,26,0,0,1365,1560.000000,94,2,-1.000000,646.400000,hint,lora,60 +on3,0,0,24,0,0,1439,1440.000000,94,0,-1.000000,576.320000,hint,lora,60 +on12,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 +on6,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1327,1500.000000,95,1,-1.000000,624.480000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1425,1440.000000,95,0,-1.000000,578.560000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1391,1440.000000,95,0,-1.000000,584.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1362,1500.000000,95,1,-1.000000,621.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,95,0,-1.000000,632.288000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1423,1440.000000,96,0,-1.000000,578.880000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on2,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,1427,1440.000000,96,0,-1.000000,578.240000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1401,1440.000000,96,0,-1.000000,582.400000,hint,lora,60 +on10,0,0,24,0,0,1399,1440.000000,96,0,-1.000000,591.680000,hint,lora,60 +on7,0,0,24,0,0,1398,1440.000000,96,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,96,0,-1.000000,607.680000,hint,lora,60 +on6,0,0,24,0,0,1401,1440.000000,96,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1403,1440.000000,97,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1406,1440.000000,97,0,-1.000000,581.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1389,1440.000000,97,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1388,1440.000000,97,0,-1.000000,584.480000,hint,lora,60 +on6,0,0,24,0,0,1429,1440.000000,97,0,-1.000000,577.920000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,97,0,-1.000000,625.984000,hint,lora,60 +on3,0,0,24,0,0,1385,1440.000000,97,0,-1.000000,584.960000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1428,1500.000000,97,1,-1.000000,610.720000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,98,0,-1.000000,606.240000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1417,1440.000000,98,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1388,1440.000000,98,0,-1.000000,595.200000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1382,1440.000000,98,0,-1.000000,585.440000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1405,1440.000000,98,0,-1.000000,581.920000,hint,lora,60 +on5,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 +on3,0,0,24,0,0,1426,1440.000000,98,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1435,1440.000000,99,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1383,1440.000000,99,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1372,1500.000000,99,1,-1.000000,618.080000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1406,1440.000000,99,0,-1.000000,581.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1381,1440.000000,99,0,-1.000000,593.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,99,0,-1.000000,636.704000,hint,lora,60 +on6,0,0,24,0,0,1356,1440.000000,99,0,-1.000000,592.800000,hint,lora,60 +on12,0,0,24,0,0,1420,1440.000000,99,0,-1.000000,579.360000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1397,1440.000000,100,0,-1.000000,583.040000,hint,lora,60 +on8,0,0,24,0,0,1405,1440.000000,100,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1437,1440.000000,100,0,-1.000000,576.640000,hint,lora,60 +on3,0,0,24,0,0,1433,1440.000000,100,0,-1.000000,585.600000,hint,lora,60 +on5,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,612.000000,hint,lora,60 +on12,0,0,24,0,0,1385,1440.000000,100,0,-1.000000,585.600000,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,1405,1440.000000,100,0,-1.000000,588.800000,hint,lora,60 +on10,0,0,24,0,0,1401,1440.000000,100,0,-1.000000,582.400000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1394,1440.000000,101,0,-1.000000,583.520000,hint,lora,60 +on1,0,0,24,0,0,1415,1440.000000,101,0,-1.000000,585.600000,hint,lora,60 +on4,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,625.344000,hint,lora,60 +on8,0,0,24,0,0,1396,1440.000000,101,0,-1.000000,589.440000,hint,lora,60 +on3,0,0,24,0,0,1406,1440.000000,101,0,-1.000000,581.600000,hint,lora,60 +on5,0,0,24,0,0,1401,1440.000000,101,0,-1.000000,586.720000,hint,lora,60 +on2,0,0,24,0,0,1403,1440.000000,101,0,-1.000000,582.080000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on11,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 +on7,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1410,1500.000000,101,1,-1.000000,612.160000,hint,lora,60 +on1,0,0,24,0,0,1424,1440.000000,102,0,-1.000000,578.720000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,27,0,0,1450,1620.000000,102,3,-1.000000,664.320000,hint,lora,60 +on9,0,0,24,0,0,1382,1440.000000,102,0,-1.000000,585.440000,hint,lora,60 +on5,0,0,24,0,0,1368,1440.000000,102,0,-1.000000,598.080000,hint,lora,60 +on12,0,0,24,0,0,1396,1440.000000,102,0,-1.000000,583.200000,hint,lora,60 +on4,0,0,24,0,0,1426,1440.000000,102,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,102,0,-1.000000,653.024000,hint,lora,60 +on2,0,0,25,0,0,1388,1500.000000,102,1,-1.000000,614.832000,hint,lora,60 +on3,0,0,27,0,0,1470,1620.000000,102,3,-1.000000,659.360000,hint,lora,60 +on7,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 +on6,0,0,24,0,0,1414,1440.000000,102,0,-1.000000,585.600000,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,1440,1440.000000,103,0,-1.000000,576.160000,hint,lora,60 +on11,0,0,24,0,0,1408,1440.000000,103,0,-1.000000,581.280000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1433,1440.000000,103,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1437,1440.000000,103,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1406,1440.000000,103,0,-1.000000,581.600000,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,598.560000,hint,lora,60 +on9,0,0,24,0,0,1407,1440.000000,103,0,-1.000000,581.600000,hint,lora,60 +on8,0,0,24,0,0,1416,1440.000000,103,0,-1.000000,580.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1355,1440.000000,104,0,-1.000000,594.080000,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,1379,1440.000000,104,0,-1.000000,586.080000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,104,0,-1.000000,629.504000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1430,1440.000000,104,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,25,0,0,1367,1500.000000,104,1,-1.000000,621.872000,hint,lora,60 +on1,0,0,24,0,0,1403,1440.000000,104,0,-1.000000,582.080000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1419,1440.000000,104,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1439,1440.000000,105,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1436,1440.000000,105,0,-1.000000,576.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,105,0,-1.000000,603.040000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1413,1440.000000,105,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1386,1440.000000,105,0,-1.000000,584.800000,hint,lora,60 +on5,0,0,24,0,0,1411,1440.000000,105,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1413,1440.000000,105,0,-1.000000,580.480000,hint,lora,60 +on4,0,0,24,0,0,1420,1440.000000,105,0,-1.000000,579.360000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1333,1440.000000,106,0,-1.000000,593.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,106,0,-1.000000,679.712000,hint,lora,60 +on4,0,0,25,0,0,1414,1500.000000,106,1,-1.000000,614.672000,hint,lora,60 +on12,0,0,25,0,0,1426,1500.000000,106,1,-1.000000,609.760000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1401,1440.000000,106,0,-1.000000,582.400000,hint,lora,60 +on9,0,0,24,0,0,1332,1440.000000,106,0,-1.000000,600.960000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1397,1440.000000,106,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,25,0,0,1410,1500.000000,106,1,-1.000000,612.800000,hint,lora,60 +on6,0,0,24,0,0,1326,1440.000000,106,0,-1.000000,594.560000,hint,lora,60 +on1,0,0,24,0,0,1389,1440.000000,107,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1433,1440.000000,107,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on4,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 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,107,0,-1.000000,586.880000,hint,lora,60 +on7,0,0,24,0,0,1433,1440.000000,107,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on6,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 +on2,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 +on4,0,0,25,0,0,1410,1500.000000,108,1,-1.000000,612.160000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1439,1440.000000,108,0,-1.000000,585.600000,hint,lora,60 +on6,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 +on11,0,0,25,0,0,1383,1500.000000,108,1,-1.000000,619.040000,hint,lora,60 +on1,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 +on10,0,0,24,0,0,1398,1440.000000,108,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1431,1440.000000,108,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,108,0,-1.000000,615.808000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1415,1440.000000,109,0,-1.000000,580.160000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1419,1440.000000,109,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on2,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 +on3,0,0,24,0,0,1401,1440.000000,109,0,-1.000000,582.400000,hint,lora,60 +on7,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,603.200000,hint,lora,60 +on11,0,0,24,0,0,1360,1440.000000,109,0,-1.000000,590.720000,hint,lora,60 +on1,0,0,25,0,0,1380,1500.000000,110,1,-1.000000,624.368000,hint,lora,60 +on9,0,0,24,0,0,1365,1440.000000,110,0,-1.000000,588.320000,hint,lora,60 +on5,0,0,25,0,0,1433,1500.000000,110,1,-1.000000,607.360000,hint,lora,60 +on7,0,0,25,0,0,1478,1500.000000,110,1,-1.000000,600.000000,hint,lora,60 +on8,0,0,25,0,0,1399,1500.000000,110,1,-1.000000,615.840000,hint,lora,60 +on3,0,0,24,0,0,1402,1440.000000,110,0,-1.000000,582.240000,hint,lora,60 +on12,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 +on0,1,0,24,0,0,0,1440.000000,110,0,-1.000000,672.992000,hint,lora,60 +on2,0,0,24,0,0,1378,1440.000000,110,0,-1.000000,594.080000,hint,lora,60 +on4,0,0,25,0,0,1370,1500.000000,110,1,-1.000000,617.808000,hint,lora,60 +on10,0,0,26,0,0,1494,1560.000000,110,2,-1.000000,626.656000,hint,lora,60 +on11,0,0,24,0,0,1376,1440.000000,110,0,-1.000000,586.560000,hint,lora,60 +on2,0,0,24,0,0,1393,1440.000000,111,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,111,0,-1.000000,619.968000,hint,lora,60 +on4,0,0,24,0,0,1382,1440.000000,111,0,-1.000000,585.440000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1371,1500.000000,111,1,-1.000000,616.320000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1393,1500.000000,111,1,-1.000000,610.928000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1478,1500.000000,111,1,-1.000000,600.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,26,0,0,1445,1560.000000,112,2,-1.000000,651.408000,hint,lora,60 +on4,0,0,25,0,0,1499,1500.000000,112,1,-1.000000,600.000000,hint,lora,60 +on11,0,0,24,0,0,1371,1440.000000,112,0,-1.000000,587.360000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,26,0,0,1426,1560.000000,112,2,-1.000000,638.720000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1341,1440.000000,112,0,-1.000000,599.840000,hint,lora,60 +on2,0,0,25,0,0,1376,1500.000000,112,1,-1.000000,622.400000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,112,0,-1.000000,651.968000,hint,lora,60 +on6,0,0,24,0,0,1431,1440.000000,112,0,-1.000000,577.600000,hint,lora,60 +on7,0,0,24,0,0,1392,1440.000000,112,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1423,1440.000000,113,0,-1.000000,578.880000,hint,lora,60 +on2,0,0,24,0,0,1384,1440.000000,113,0,-1.000000,585.120000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1372,1500.000000,113,1,-1.000000,616.320000,hint,lora,60 +on10,0,0,24,0,0,1436,1440.000000,113,0,-1.000000,576.800000,hint,lora,60 +on4,0,0,24,0,0,1402,1440.000000,113,0,-1.000000,582.240000,hint,lora,60 +on11,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,611.264000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1405,1440.000000,114,0,-1.000000,581.760000,hint,lora,60 +on5,0,0,24,0,0,1438,1440.000000,114,0,-1.000000,576.480000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,114,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 +on3,0,0,24,0,0,1410,1440.000000,114,0,-1.000000,580.960000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1394,1440.000000,114,0,-1.000000,583.520000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,114,0,-1.000000,598.080000,hint,lora,60 +on6,0,0,24,0,0,1420,1440.000000,114,0,-1.000000,579.360000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,114,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 +on8,0,0,24,0,0,1400,1440.000000,115,0,-1.000000,582.560000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1414,1500.000000,115,1,-1.000000,612.368205,hint,lora,60 +on11,0,0,25,0,0,1425,1500.000000,115,1,-1.000000,608.640000,hint,lora,60 +on1,0,0,24,0,0,1381,1440.000000,115,0,-1.000000,585.760000,hint,lora,60 +on7,0,0,24,0,0,1417,1440.000000,115,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,27,0,0,1479,1620.000000,115,3,-1.000000,660.368000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1383,1500.000000,115,1,-1.000000,620.847795,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,115,0,-1.000000,642.848000,hint,lora,60 +on1,0,0,25,0,0,1399,1500.000000,116,1,-1.000000,616.160000,hint,lora,60 +on6,0,0,25,0,0,1441,1500.000000,116,1,-1.000000,604.368000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,lora,60 +on3,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 +on5,0,0,25,0,0,1430,1500.000000,116,1,-1.000000,609.600000,hint,lora,60 +on8,0,0,25,0,0,1388,1500.000000,116,1,-1.000000,613.808000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,116,0,-1.000000,647.072000,hint,lora,60 +on7,0,0,26,0,0,1433,1560.000000,116,2,-1.000000,653.008000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1455,1500.000000,116,1,-1.000000,604.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1408,1500.000000,116,1,-1.000000,615.040000,hint,lora,60 +on4,0,0,24,0,0,1365,1440.000000,117,0,-1.000000,588.320000,hint,lora,60 +on2,0,0,24,0,0,1397,1440.000000,117,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1426,1440.000000,117,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,117,0,-1.000000,624.960000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1404,1440.000000,117,0,-1.000000,595.200000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1412,1440.000000,117,0,-1.000000,580.640000,hint,lora,60 +on5,0,0,24,0,0,1339,1440.000000,117,0,-1.000000,594.880000,hint,lora,60 +on2,0,0,24,0,0,1338,1440.000000,118,0,-1.000000,595.200000,hint,lora,60 +on3,0,0,24,0,0,1418,1440.000000,118,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,lora,60 +on7,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 +on5,0,0,24,0,0,1417,1440.000000,118,0,-1.000000,579.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,118,0,-1.000000,628.800000,hint,lora,60 +on8,0,0,24,0,0,1385,1440.000000,118,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1324,1440.000000,118,0,-1.000000,596.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1437,1440.000000,118,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1427,1440.000000,119,0,-1.000000,578.240000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1350,1500.000000,119,1,-1.000000,624.480000,hint,lora,60 +on11,0,0,24,0,0,1387,1440.000000,119,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,119,0,-1.000000,624.064000,hint,lora,60 +on8,0,0,24,0,0,1419,1440.000000,119,0,-1.000000,579.520000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1417,1440.000000,119,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1397,1440.000000,119,0,-1.000000,583.040000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,120,0,-1.000000,590.240000,hint,lora,60 +on4,0,0,24,0,0,1422,1440.000000,120,0,-1.000000,579.040000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on9,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 +on5,0,0,24,0,0,1420,1440.000000,120,0,-1.000000,579.360000,hint,lora,60 +on6,0,0,24,0,0,1433,1440.000000,120,0,-1.000000,577.280000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1427,1440.000000,120,0,-1.000000,578.240000,hint,lora,60 +on7,0,0,24,0,0,1414,1440.000000,120,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1398,1440.000000,121,0,-1.000000,582.880000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1402,1440.000000,121,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,121,0,-1.000000,589.120000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1334,1440.000000,122,0,-1.000000,593.280000,hint,lora,60 +on8,0,0,24,0,0,1424,1440.000000,122,0,-1.000000,578.720000,hint,lora,60 +on1,0,0,25,0,0,1385,1500.000000,122,1,-1.000000,615.728000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1424,1440.000000,122,0,-1.000000,578.720000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1429,1440.000000,122,0,-1.000000,577.920000,hint,lora,60 +on10,0,0,24,0,0,1402,1440.000000,122,0,-1.000000,582.240000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,122,0,-1.000000,632.864000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1400,1500.000000,122,1,-1.000000,609.120000,hint,lora,60 +on7,0,0,24,0,0,1432,1440.000000,122,0,-1.000000,585.600000,hint,lora,60 +on8,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 +on6,0,0,24,0,0,1354,1440.000000,123,0,-1.000000,590.080000,hint,lora,60 +on5,0,0,24,0,0,1404,1440.000000,123,0,-1.000000,581.920000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on10,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 +on9,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 +on1,0,0,24,0,0,1345,1440.000000,123,0,-1.000000,592.480000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,123,0,-1.000000,611.520000,hint,lora,60 +on10,0,0,24,0,0,1405,1440.000000,124,0,-1.000000,581.760000,hint,lora,60 +on8,0,0,24,0,0,1439,1440.000000,124,0,-1.000000,576.320000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,124,0,-1.000000,619.584000,hint,lora,60 +on6,0,0,24,0,0,1388,1440.000000,124,0,-1.000000,584.480000,hint,lora,60 +on11,0,0,24,0,0,1418,1440.000000,124,0,-1.000000,579.680000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1392,1440.000000,124,0,-1.000000,587.840000,hint,lora,60 +on2,0,0,24,0,0,1399,1440.000000,124,0,-1.000000,582.720000,hint,lora,60 +on1,0,0,25,0,0,1419,1500.000000,124,1,-1.000000,610.720000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1382,1500.000000,125,1,-1.000000,619.680000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,125,0,-1.000000,631.584000,hint,lora,60 +on12,0,0,24,0,0,1382,1440.000000,125,0,-1.000000,591.040000,hint,lora,60 +on5,0,0,24,0,0,1437,1440.000000,125,0,-1.000000,576.640000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1383,1440.000000,125,0,-1.000000,593.440000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1400,1440.000000,125,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1367,1440.000000,125,0,-1.000000,594.080000,hint,lora,60 +on4,0,0,24,0,0,1412,1440.000000,125,0,-1.000000,580.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,126,0,-1.000000,627.008000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1363,1500.000000,126,1,-1.000000,618.400000,hint,lora,60 +on7,0,0,24,0,0,1397,1440.000000,126,0,-1.000000,583.040000,hint,lora,60 +on10,0,0,25,0,0,1415,1500.000000,126,1,-1.000000,610.720000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1400,1440.000000,126,0,-1.000000,582.560000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1388,1440.000000,126,0,-1.000000,584.480000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1421,1440.000000,127,0,-1.000000,579.360000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1407,1440.000000,127,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1387,1440.000000,127,0,-1.000000,584.640000,hint,lora,60 +on2,0,0,24,0,0,1419,1440.000000,127,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1375,1500.000000,127,1,-1.000000,624.160000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,26,0,0,1460,1560.000000,127,2,-1.000000,628.320000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,127,0,-1.000000,635.584000,hint,lora,60 +on8,0,0,25,0,0,1385,1500.000000,127,1,-1.000000,617.376000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1423,1440.000000,128,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,26,0,0,1470,1560.000000,128,2,-1.000000,631.520000,hint,lora,60 +on4,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 +on5,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,26,0,0,1395,1560.000000,128,2,-1.000000,646.240000,hint,lora,60 +on10,0,0,24,0,0,1392,1440.000000,128,0,-1.000000,583.840000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1430,1440.000000,128,0,-1.000000,577.760000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1382,1440.000000,128,0,-1.000000,585.440000,hint,lora,60 +on12,0,0,24,0,0,1360,1440.000000,128,0,-1.000000,591.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,128,0,-1.000000,640.544000,hint,lora,60 +on8,0,0,25,0,0,1380,1500.000000,129,1,-1.000000,614.240000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,129,0,-1.000000,645.536000,hint,lora,60 +on9,0,0,25,0,0,1426,1500.000000,129,1,-1.000000,609.600000,hint,lora,60 +on5,0,0,24,0,0,1423,1440.000000,129,0,-1.000000,578.880000,hint,lora,60 +on4,0,0,24,0,0,1355,1462.000000,129,1,-1.000000,604.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1430,1500.000000,129,1,-1.000000,611.472000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1399,1500.000000,129,1,-1.000000,614.880000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1404,1440.000000,129,0,-1.000000,581.920000,hint,lora,60 +on1,0,0,25,0,0,1413,1500.000000,129,1,-1.000000,617.856000,hint,lora,60 +on9,0,0,24,0,0,1388,1440.000000,130,0,-1.000000,595.200000,hint,lora,60 +on6,0,0,25,0,0,1478,1500.000000,130,1,-1.000000,600.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1409,1440.000000,130,0,-1.000000,581.120000,hint,lora,60 +on10,0,0,24,0,0,1406,1440.000000,130,0,-1.000000,581.600000,hint,lora,60 +on11,0,0,26,0,0,1352,1560.000000,130,2,-1.000000,650.128000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1329,1500.000000,130,1,-1.000000,621.760000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,130,0,-1.000000,675.616000,hint,lora,60 +on5,0,0,25,0,0,1334,1500.000000,130,1,-1.000000,620.640000,hint,lora,60 +on12,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,582.080000,hint,lora,60 +on7,0,0,24,0,0,1402,1440.000000,130,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1408,1440.000000,131,0,-1.000000,581.440000,hint,lora,60 +on4,0,0,24,0,0,1401,1440.000000,131,0,-1.000000,585.600000,hint,lora,60 +on10,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 +on0,1,0,24,0,0,0,1440.000000,131,0,-1.000000,626.240000,hint,lora,60 +on11,0,0,24,0,0,1335,1440.000000,131,0,-1.000000,595.200000,hint,lora,60 +on8,0,0,24,0,0,1420,1440.000000,131,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1431,1440.000000,131,0,-1.000000,577.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1404,1440.000000,131,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1431,1440.000000,131,0,-1.000000,577.600000,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,1387,1440.000000,131,0,-1.000000,584.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,132,0,-1.000000,619.584000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1406,1440.000000,132,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1401,1500.000000,132,1,-1.000000,614.240000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1390,1440.000000,132,0,-1.000000,584.160000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1344,1440.000000,132,0,-1.000000,595.200000,hint,lora,60 +on8,0,0,24,0,0,1409,1440.000000,133,0,-1.000000,581.120000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1349,1440.000000,133,0,-1.000000,604.800000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1436,1440.000000,133,0,-1.000000,576.800000,hint,lora,60 +on4,0,0,24,0,0,1363,1440.000000,133,0,-1.000000,595.200000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,133,0,-1.000000,632.000000,hint,lora,60 +on6,0,0,24,0,0,1397,1440.000000,133,0,-1.000000,583.040000,hint,lora,60 +on12,0,0,24,0,0,1394,1440.000000,133,0,-1.000000,590.400000,hint,lora,60 +on1,0,0,24,0,0,1434,1440.000000,133,0,-1.000000,577.120000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1400,1440.000000,133,0,-1.000000,582.560000,hint,lora,60 +on7,0,0,24,0,0,1397,1440.000000,134,0,-1.000000,589.280000,hint,lora,60 +on5,0,0,25,0,0,1398,1500.000000,134,1,-1.000000,622.400000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,134,0,-1.000000,617.408000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1485,1500.000000,134,1,-1.000000,600.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1435,1440.000000,134,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,25,0,0,1383,1500.000000,134,1,-1.000000,619.152000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1438,1440.000000,135,0,-1.000000,576.480000,hint,lora,60 +on11,0,0,24,0,0,1413,1440.000000,135,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,135,0,-1.000000,618.784000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1402,1440.000000,135,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,25,0,0,1383,1500.000000,135,1,-1.000000,620.960000,hint,lora,60 +on2,0,0,24,0,0,1410,1440.000000,135,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1392,1440.000000,135,0,-1.000000,583.840000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1391,1500.000000,136,1,-1.000000,616.960000,hint,lora,60 +on11,0,0,24,0,0,1384,1440.000000,136,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1374,1440.000000,136,0,-1.000000,592.800000,hint,lora,60 +on2,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,636.064000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1411,1440.000000,136,0,-1.000000,580.800000,hint,lora,60 +on10,0,0,24,0,0,1385,1440.000000,136,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1383,1440.000000,136,0,-1.000000,587.840000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,137,0,-1.000000,598.880000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1335,1440.000000,137,0,-1.000000,593.120000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1436,1440.000000,137,0,-1.000000,576.800000,hint,lora,60 +on2,0,0,24,0,0,1411,1440.000000,137,0,-1.000000,585.760000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,26,0,0,1412,1560.000000,138,2,-1.000000,639.888000,hint,lora,60 +on11,0,0,24,0,0,1423,1440.000000,138,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1402,1500.000000,138,1,-1.000000,613.168000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,138,0,-1.000000,630.528000,hint,lora,60 +on7,0,0,24,0,0,1405,1440.000000,138,0,-1.000000,581.760000,hint,lora,60 +on2,0,0,24,0,0,1389,1440.000000,138,0,-1.000000,584.320000,hint,lora,60 +on4,0,0,25,0,0,1460,1500.000000,138,1,-1.000000,603.040000,hint,lora,60 +on1,0,0,25,0,0,1441,1500.000000,138,1,-1.000000,606.288000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1439,1440.000000,139,0,-1.000000,576.320000,hint,lora,60 +on3,0,0,25,0,0,1393,1500.000000,139,1,-1.000000,616.320000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,lora,60 +on9,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 +on0,1,0,24,0,0,0,1440.000000,139,0,-1.000000,637.888000,hint,lora,60 +on6,0,0,25,0,0,1342,1500.000000,139,1,-1.000000,623.248000,hint,lora,60 +on7,0,0,24,0,0,1420,1440.000000,139,0,-1.000000,579.360000,hint,lora,60 +on4,0,0,24,0,0,1413,1440.000000,139,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1398,1440.000000,139,0,-1.000000,582.880000,hint,lora,60 +on8,0,0,25,0,0,1423,1500.000000,139,1,-1.000000,609.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 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1385,1440.000000,140,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1436,1440.000000,140,0,-1.000000,576.800000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on3,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 +on6,0,0,24,0,0,1397,1440.000000,140,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1399,1440.000000,140,0,-1.000000,582.720000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,140,0,-1.000000,599.520000,hint,lora,60 +on4,0,0,24,0,0,1391,1440.000000,141,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1425,1440.000000,141,0,-1.000000,578.560000,hint,lora,60 +on10,0,0,25,0,0,1478,1500.000000,141,1,-1.000000,600.000000,hint,lora,60 +on8,0,0,24,0,0,1354,1440.000000,141,1,-1.000000,588.640000,hint,lora,60 +on2,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,629.472000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on7,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 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,26,0,0,1392,1608.000000,141,3,-1.000000,671.840000,hint,lora,60 +on1,0,0,24,0,0,1427,1440.000000,141,0,-1.000000,578.240000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1419,1440.000000,142,0,-1.000000,585.600000,hint,lora,60 +on7,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,1413,1440.000000,142,0,-1.000000,580.480000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,142,0,-1.000000,612.160000,hint,lora,60 +on12,0,0,24,0,0,1416,1440.000000,142,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1388,1440.000000,142,0,-1.000000,584.480000,hint,lora,60 +on11,0,0,24,0,0,1398,1440.000000,142,0,-1.000000,595.200000,hint,lora,60 +on5,0,0,24,0,0,1430,1440.000000,142,0,-1.000000,577.760000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1398,1440.000000,142,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1385,1440.000000,143,0,-1.000000,585.120000,hint,lora,60 +on6,0,0,24,0,0,1433,1440.000000,143,0,-1.000000,577.280000,hint,lora,60 +on1,0,0,24,0,0,1383,1440.000000,143,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1377,1440.000000,143,0,-1.000000,586.400000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1420,1440.000000,143,0,-1.000000,586.240000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,143,0,-1.000000,634.944000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1384,1440.000000,143,0,-1.000000,585.120000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1385,1500.000000,143,1,-1.000000,621.760000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1415,1440.000000,144,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,144,0,-1.000000,632.864000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1403,1440.000000,144,0,-1.000000,590.400000,hint,lora,60 +on6,0,0,24,0,0,1376,1440.000000,144,0,-1.000000,586.560000,hint,lora,60 +on7,0,0,24,0,0,1435,1440.000000,144,0,-1.000000,576.960000,hint,lora,60 +on2,0,0,24,0,0,1417,1440.000000,144,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1384,1440.000000,144,0,-1.000000,585.120000,hint,lora,60 +on12,0,0,24,0,0,1418,1440.000000,144,0,-1.000000,579.680000,hint,lora,60 +on11,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 +on3,0,0,25,0,0,1349,1500.000000,144,1,-1.000000,620.960000,hint,lora,60 +on5,0,0,24,0,0,1423,1440.000000,145,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1424,1440.000000,145,0,-1.000000,587.040000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1403,1440.000000,145,0,-1.000000,582.080000,hint,lora,60 +on2,0,0,24,0,0,1419,1440.000000,145,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,26,0,0,1432,1560.000000,145,2,-1.000000,635.520000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1406,1500.000000,145,1,-1.000000,612.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,145,0,-1.000000,615.168000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1424,1440.000000,146,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1417,1440.000000,146,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1386,1440.000000,146,0,-1.000000,585.120000,hint,lora,60 +on2,0,0,24,0,0,1414,1440.000000,146,0,-1.000000,580.320000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1396,1440.000000,146,0,-1.000000,583.200000,hint,lora,60 +on10,0,0,24,0,0,1396,1440.000000,146,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,146,0,-1.000000,619.360000,hint,lora,60 +on4,0,0,24,0,0,1410,1440.000000,146,0,-1.000000,590.080000,hint,lora,60 +on6,0,0,24,0,0,1417,1440.000000,146,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1426,1440.000000,147,0,-1.000000,578.400000,hint,lora,60 +on6,0,0,26,0,0,1376,1560.000000,147,2,-1.000000,650.352000,hint,lora,60 +on2,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,638.272000,hint,lora,60 +on5,0,0,24,0,0,1424,1440.000000,147,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1432,1440.000000,147,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,25,0,0,1380,1500.000000,147,1,-1.000000,613.760000,hint,lora,60 +on10,0,0,24,0,0,1411,1440.000000,147,0,-1.000000,580.800000,hint,lora,60 +on12,0,0,24,0,0,1386,1440.000000,147,0,-1.000000,584.800000,hint,lora,60 +on7,0,0,24,0,0,1427,1440.000000,147,0,-1.000000,578.240000,hint,lora,60 +on12,0,0,24,0,0,1392,1440.000000,148,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1381,1440.000000,148,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,148,0,-1.000000,606.560000,hint,lora,60 +on3,0,0,24,0,0,1405,1440.000000,148,0,-1.000000,581.760000,hint,lora,60 +on4,0,0,24,0,0,1418,1440.000000,148,0,-1.000000,579.840000,hint,lora,60 +on2,0,0,24,0,0,1419,1440.000000,148,0,-1.000000,579.520000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1442,1519.000000,149,2,-1.000000,619.488000,hint,lora,60 +on10,0,0,24,0,0,1432,1440.000000,149,0,-1.000000,577.440000,hint,lora,60 +on11,0,0,24,0,0,1430,1440.000000,149,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,25,0,0,1393,1500.000000,149,1,-1.000000,610.880000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1394,1440.000000,149,0,-1.000000,583.520000,hint,lora,60 +on7,0,0,25,0,0,1397,1500.000000,149,1,-1.000000,609.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1275,1500.000000,149,1,-1.000000,634.288000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,149,0,-1.000000,646.592000,hint,lora,60 +on2,0,0,25,0,0,1452,1500.000000,150,1,-1.000000,601.328000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1389,1500.000000,150,1,-1.000000,628.800000,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,1421,1440.000000,150,0,-1.000000,579.200000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1417,1440.000000,150,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1393,1440.000000,150,0,-1.000000,583.680000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,150,0,-1.000000,616.224000,hint,lora,60 +on1,0,0,24,0,0,1389,1440.000000,150,0,-1.000000,584.320000,hint,lora,60 +on11,0,0,24,0,0,1428,1440.000000,151,0,-1.000000,578.080000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1397,1440.000000,151,0,-1.000000,587.200000,hint,lora,60 +on10,0,0,24,0,0,1405,1440.000000,151,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,151,0,-1.000000,596.320000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1409,1440.000000,151,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1393,1440.000000,152,0,-1.000000,583.680000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1415,1440.000000,152,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1430,1440.000000,152,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,25,0,0,1326,1500.000000,152,1,-1.000000,624.528000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,152,0,-1.000000,626.944000,hint,lora,60 +on4,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 +on12,0,0,25,0,0,1431,1500.000000,152,1,-1.000000,607.520000,hint,lora,60 +on7,0,0,24,0,0,1412,1440.000000,152,0,-1.000000,580.800000,hint,lora,60 +on11,0,0,24,0,0,1436,1440.000000,152,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1420,1500.000000,153,1,-1.000000,612.160000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,153,0,-1.000000,674.496000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1333,1500.000000,153,1,-1.000000,633.760000,hint,lora,60 +on4,0,0,25,0,0,1433,1500.000000,153,1,-1.000000,610.288000,hint,lora,60 +on10,0,0,25,0,0,1411,1500.000000,153,1,-1.000000,620.592000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1396,1440.000000,153,0,-1.000000,583.200000,hint,lora,60 +on3,0,0,24,0,0,1420,1440.000000,153,0,-1.000000,579.360000,hint,lora,60 +on7,0,0,25,0,0,1436,1500.000000,153,1,-1.000000,609.600000,hint,lora,60 +on1,0,0,25,0,0,1472,1500.000000,153,1,-1.000000,602.080000,hint,lora,60 +on2,0,0,24,0,0,1372,1440.000000,153,0,-1.000000,589.920000,hint,lora,60 +on9,0,0,24,0,0,1392,1440.000000,153,0,-1.000000,583.840000,hint,lora,60 +on9,0,0,24,0,0,1420,1440.000000,154,0,-1.000000,579.360000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,154,0,-1.000000,641.248000,hint,lora,60 +on6,0,0,24,0,0,1354,1440.000000,154,0,-1.000000,590.880000,hint,lora,60 +on5,0,0,24,0,0,1409,1440.000000,154,0,-1.000000,595.200000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1418,1440.000000,154,0,-1.000000,579.680000,hint,lora,60 +on4,0,0,24,0,0,1420,1440.000000,154,0,-1.000000,579.360000,hint,lora,60 +on7,0,0,25,0,0,1388,1500.000000,154,1,-1.000000,617.760000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1423,1500.000000,154,1,-1.000000,609.600000,hint,lora,60 +on2,0,0,25,0,0,1425,1500.000000,154,1,-1.000000,608.320000,hint,lora,60 +on12,0,0,24,0,0,1430,1440.000000,155,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1416,1440.000000,155,0,-1.000000,580.160000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,155,0,-1.000000,610.080000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1381,1440.000000,155,0,-1.000000,588.160000,hint,lora,60 +on6,0,0,24,0,0,1381,1440.000000,155,0,-1.000000,585.600000,hint,lora,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1386,1440.000000,155,0,-1.000000,584.800000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,156,0,-1.000000,611.744000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1427,1440.000000,156,0,-1.000000,578.240000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1367,1500.000000,156,1,-1.000000,623.840000,hint,lora,60 +on10,0,0,24,0,0,1387,1440.000000,156,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1422,1440.000000,156,0,-1.000000,588.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1407,1440.000000,156,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1328,1440.000000,157,0,-1.000000,594.560000,hint,lora,60 +on4,0,0,26,0,0,1534,1560.000000,157,2,-1.000000,624.800000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1350,1500.000000,157,1,-1.000000,619.840000,hint,lora,60 +on8,0,0,24,0,0,1439,1440.000000,157,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,26,0,0,1441,1560.000000,157,2,-1.000000,637.808000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,157,0,-1.000000,646.848000,hint,lora,60 +on12,0,0,24,0,0,1425,1440.000000,157,0,-1.000000,578.720000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1338,1440.000000,157,0,-1.000000,600.800000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1411,1440.000000,158,0,-1.000000,585.600000,hint,lora,60 +on9,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 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1430,1440.000000,158,0,-1.000000,577.760000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1439,1440.000000,158,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1345,1440.000000,158,0,-1.000000,591.520000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,158,0,-1.000000,598.400000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1432,1440.000000,159,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,25,0,0,1415,1500.000000,159,1,-1.000000,610.880000,hint,lora,60 +on11,0,0,24,0,0,1383,1440.000000,159,0,-1.000000,586.720000,hint,lora,60 +on12,0,0,24,0,0,1392,1440.000000,159,0,-1.000000,583.840000,hint,lora,60 +on5,0,0,25,0,0,1386,1500.000000,159,1,-1.000000,618.512000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,159,0,-1.000000,629.568000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1410,1440.000000,159,0,-1.000000,580.960000,hint,lora,60 +on2,0,0,25,0,0,1455,1500.000000,159,1,-1.000000,604.144000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1483,1500.000000,159,1,-1.000000,600.528000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1322,1440.000000,160,0,-1.000000,603.520000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1419,1440.000000,160,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,26,0,0,1354,1560.000000,160,2,-1.000000,653.712000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,160,0,-1.000000,647.648000,hint,lora,60 +on2,0,0,24,0,0,1364,1440.000000,160,0,-1.000000,592.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1399,1440.000000,160,0,-1.000000,582.720000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1481,1500.000000,160,1,-1.000000,600.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,26,0,0,1432,1560.000000,161,2,-1.000000,637.712000,hint,lora,60 +on3,0,0,25,0,0,1347,1500.000000,161,1,-1.000000,628.208000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1418,1440.000000,161,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1429,1440.000000,161,0,-1.000000,577.920000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,161,0,-1.000000,622.688000,hint,lora,60 +on11,0,0,24,0,0,1401,1440.000000,161,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,26,0,0,1405,1560.000000,162,2,-1.000000,644.592000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,162,0,-1.000000,689.856000,hint,lora,60 +on11,0,0,24,0,0,1365,1440.000000,162,0,-1.000000,599.840000,hint,lora,60 +on8,0,0,24,0,0,1381,1440.000000,162,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1419,1500.000000,162,1,-1.000000,610.880000,hint,lora,60 +on10,0,0,25,0,0,1428,1500.000000,162,1,-1.000000,609.600000,hint,lora,60 +on6,0,0,24,0,0,1355,1440.000000,162,0,-1.000000,595.200000,hint,lora,60 +on5,0,0,25,0,0,1382,1500.000000,162,1,-1.000000,614.608000,hint,lora,60 +on3,0,0,24,0,0,1409,1440.000000,162,0,-1.000000,581.120000,hint,lora,60 +on1,0,0,24,0,0,1399,1440.000000,162,0,-1.000000,582.720000,hint,lora,60 +on4,0,0,24,0,0,1439,1440.000000,162,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1376,1440.000000,162,0,-1.000000,586.560000,hint,lora,60 +on4,0,0,24,0,0,1398,1440.000000,163,0,-1.000000,595.200000,hint,lora,60 +on10,0,0,25,0,0,1386,1500.000000,163,1,-1.000000,612.800000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1478,1500.000000,163,1,-1.000000,600.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1384,1500.000000,163,1,-1.000000,615.568000,hint,lora,60 +on9,0,0,24,0,0,1415,1440.000000,163,0,-1.000000,580.160000,hint,lora,60 +on12,0,0,24,0,0,1374,1440.000000,163,0,-1.000000,586.880000,hint,lora,60 +on7,0,0,24,0,0,1432,1440.000000,163,0,-1.000000,585.920000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,163,0,-1.000000,629.120000,hint,lora,60 +on5,0,0,24,0,0,1416,1440.000000,163,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1438,1440.000000,163,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1429,1440.000000,163,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,25,0,0,1411,1500.000000,164,1,-1.000000,613.760000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1475,1500.000000,164,1,-1.000000,601.600000,hint,lora,60 +on3,0,0,24,0,0,1359,1440.000000,164,0,-1.000000,589.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,164,0,-1.000000,657.632000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1412,1500.000000,164,1,-1.000000,614.352000,hint,lora,60 +on9,0,0,24,0,0,1421,1440.000000,164,0,-1.000000,579.200000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1323,1440.000000,164,0,-1.000000,595.040000,hint,lora,60 +on6,0,0,24,0,0,1407,1440.000000,164,0,-1.000000,581.440000,hint,lora,60 +on8,0,0,24,0,0,1373,1440.000000,164,0,-1.000000,595.200000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1413,1440.000000,165,0,-1.000000,580.480000,hint,lora,60 +on6,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 +on1,0,0,25,0,0,1418,1500.000000,165,1,-1.000000,610.080000,hint,lora,60 +on5,0,0,24,0,0,1349,1440.000000,165,0,-1.000000,590.880000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,165,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,1418,1440.000000,165,0,-1.000000,579.680000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,165,0,-1.000000,609.024000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1388,1440.000000,166,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1423,1440.000000,166,0,-1.000000,578.880000,hint,lora,60 +on10,0,0,24,0,0,1398,1440.000000,166,0,-1.000000,582.880000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1410,1440.000000,166,0,-1.000000,580.960000,hint,lora,60 +on12,0,0,24,0,0,1344,1440.000000,166,0,-1.000000,591.680000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1392,1500.000000,166,1,-1.000000,612.320000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,166,0,-1.000000,637.504000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1413,1440.000000,166,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1404,1440.000000,166,0,-1.000000,581.920000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1391,1440.000000,167,0,-1.000000,584.000000,hint,lora,60 +on5,0,0,24,0,0,1408,1440.000000,167,0,-1.000000,581.280000,hint,lora,60 +on3,0,0,24,0,0,1415,1440.000000,167,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1433,1440.000000,167,0,-1.000000,586.880000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,167,0,-1.000000,609.920000,hint,lora,60 +on1,0,0,24,0,0,1388,1440.000000,167,0,-1.000000,584.480000,hint,lora,60 +on2,0,0,24,0,0,1400,1440.000000,167,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,168,0,-1.000000,645.472000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1478,1500.000000,168,1,-1.000000,600.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1422,1440.000000,168,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,25,0,0,1401,1500.000000,168,1,-1.000000,614.240000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1421,1440.000000,168,0,-1.000000,579.360000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1301,1440.000000,168,0,-1.000000,599.200000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1311,1526.000000,168,2,-1.000000,637.968000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1438,1440.000000,169,0,-1.000000,576.480000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1411,1440.000000,169,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1398,1440.000000,169,0,-1.000000,588.160000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1429,1440.000000,169,0,-1.000000,577.920000,hint,lora,60 +on6,0,0,24,0,0,1422,1440.000000,169,0,-1.000000,579.040000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,169,0,-1.000000,611.840000,hint,lora,60 +on9,0,0,24,0,0,1327,1440.000000,169,0,-1.000000,597.760000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1402,1440.000000,170,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1384,1440.000000,170,0,-1.000000,585.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,170,0,-1.000000,612.064000,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 +on1,0,0,25,0,0,1415,1500.000000,170,1,-1.000000,610.720000,hint,lora,60 +on3,0,0,24,0,0,1428,1440.000000,170,0,-1.000000,578.080000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1392,1440.000000,170,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1430,1440.000000,171,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,25,0,0,1393,1500.000000,171,1,-1.000000,610.928000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1415,1440.000000,171,0,-1.000000,580.160000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,171,0,-1.000000,626.848000,hint,lora,60 +on6,0,0,24,0,0,1424,1440.000000,171,0,-1.000000,578.720000,hint,lora,60 +on2,0,0,25,0,0,1401,1500.000000,171,1,-1.000000,614.400000,hint,lora,60 +on7,0,0,24,0,0,1365,1440.000000,171,0,-1.000000,590.400000,hint,lora,60 +on4,0,0,24,0,0,1410,1440.000000,171,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,25,0,0,1478,1500.000000,171,1,-1.000000,600.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1379,1500.000000,172,1,-1.000000,614.448000,hint,lora,60 +on4,0,0,25,0,0,1453,1500.000000,172,1,-1.000000,604.368000,hint,lora,60 +on8,0,0,25,0,0,1464,1500.000000,172,1,-1.000000,602.608000,hint,lora,60 +on7,0,0,25,0,0,1478,1500.000000,172,1,-1.000000,600.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,172,0,-1.000000,616.704000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1388,1440.000000,172,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1408,1440.000000,172,0,-1.000000,581.280000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1402,1440.000000,172,0,-1.000000,582.240000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,173,0,-1.000000,621.760000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1358,1440.000000,173,0,-1.000000,590.400000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1422,1440.000000,173,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1399,1440.000000,173,0,-1.000000,590.880000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1421,1440.000000,173,0,-1.000000,579.200000,hint,lora,60 +on4,0,0,24,0,0,1412,1440.000000,173,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1351,1440.000000,173,0,-1.000000,593.920000,hint,lora,60 +on3,0,0,24,0,0,1422,1440.000000,174,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1470,1500.000000,174,1,-1.000000,602.448000,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,1375,1440.000000,174,0,-1.000000,588.800000,hint,lora,60 +on7,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,1440,1440.000000,174,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1408,1440.000000,174,0,-1.000000,581.280000,hint,lora,60 +on1,0,0,25,0,0,1366,1500.000000,174,1,-1.000000,617.760000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,174,0,-1.000000,625.408000,hint,lora,60 +on2,0,0,24,0,0,1384,1488.000000,174,1,-1.000000,605.760000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on5,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,640.288000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1302,1500.000000,175,1,-1.000000,634.400000,hint,lora,60 +on9,0,0,25,0,0,1410,1500.000000,175,1,-1.000000,613.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1351,1440.000000,175,0,-1.000000,600.800000,hint,lora,60 +on8,0,0,24,0,0,1414,1440.000000,175,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1430,1440.000000,176,0,-1.000000,577.760000,hint,lora,60 +on12,0,0,25,0,0,1382,1500.000000,176,1,-1.000000,613.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,176,0,-1.000000,626.272000,hint,lora,60 +on4,0,0,24,0,0,1429,1440.000000,176,0,-1.000000,577.920000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1388,1500.000000,176,1,-1.000000,612.160000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1396,1500.000000,176,1,-1.000000,613.552000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1394,1440.000000,176,0,-1.000000,583.520000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1406,1440.000000,177,0,-1.000000,581.600000,hint,lora,60 +on2,0,0,24,0,0,1392,1440.000000,177,0,-1.000000,583.840000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1397,1440.000000,177,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1431,1440.000000,177,0,-1.000000,577.600000,hint,lora,60 +on6,0,0,24,0,0,1422,1440.000000,177,0,-1.000000,579.040000,hint,lora,60 +on9,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,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,177,0,-1.000000,601.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,178,0,-1.000000,621.184000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1423,1440.000000,178,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,25,0,0,1414,1500.000000,178,1,-1.000000,610.240000,hint,lora,60 +on8,0,0,24,0,0,1404,1440.000000,178,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1366,1440.000000,178,0,-1.000000,589.920000,hint,lora,60 +on9,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 +on3,0,0,24,0,0,1385,1440.000000,178,0,-1.000000,584.960000,hint,lora,60 +on12,0,0,24,0,0,1409,1440.000000,178,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1383,1440.000000,179,0,-1.000000,585.440000,hint,lora,60 +on2,0,0,24,0,0,1393,1440.000000,179,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,27,0,0,1356,1620.000000,179,3,-1.000000,689.232000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,179,0,-1.000000,653.440000,hint,lora,60 +on11,0,0,25,0,0,1466,1500.000000,179,1,-1.000000,602.240000,hint,lora,60 +on3,0,0,24,0,0,1424,1440.000000,179,0,-1.000000,578.720000,hint,lora,60 +on12,0,0,25,0,0,1420,1500.000000,179,1,-1.000000,609.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1464,1500.000000,179,1,-1.000000,602.400000,hint,lora,60 +on9,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 +on6,0,0,25,0,0,1390,1500.000000,179,1,-1.000000,611.520000,hint,lora,60 +on5,0,0,24,0,0,1377,1440.000000,180,0,-1.000000,586.400000,hint,lora,60 +on10,0,0,25,0,0,1327,1546.000000,180,2,-1.000000,656.912000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1340,1500.000000,180,1,-1.000000,618.880000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1352,1500.000000,180,1,-1.000000,617.760000,hint,lora,60 +on2,0,0,25,0,0,1456,1500.000000,180,1,-1.000000,600.208000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1410,1440.000000,180,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,25,0,0,1449,1500.000000,180,1,-1.000000,602.608000,hint,lora,60 +on11,0,0,24,0,0,1412,1440.000000,180,0,-1.000000,580.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,180,0,-1.000000,681.056000,hint,lora,60 +on8,0,0,24,0,0,1343,1440.000000,180,0,-1.000000,592.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,181,0,-1.000000,657.216000,hint,lora,60 +on2,0,0,25,0,0,1371,1500.000000,181,1,-1.000000,616.320000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1404,1440.000000,181,0,-1.000000,586.080000,hint,lora,60 +on5,0,0,24,0,0,1387,1440.000000,181,0,-1.000000,592.640000,hint,lora,60 +on3,0,0,24,0,0,1422,1440.000000,181,0,-1.000000,579.040000,hint,lora,60 +on6,0,0,27,0,0,1438,1620.000000,181,3,-1.000000,670.576000,hint,lora,60 +on10,0,0,24,0,0,1365,1440.000000,181,0,-1.000000,590.240000,hint,lora,60 +on4,0,0,24,0,0,1420,1440.000000,181,0,-1.000000,579.360000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1385,1440.000000,181,0,-1.000000,584.960000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1414,1440.000000,182,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1408,1440.000000,182,0,-1.000000,595.200000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,182,0,-1.000000,625.344000,hint,lora,60 +on6,0,0,24,0,0,1414,1440.000000,182,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,25,0,0,1402,1500.000000,182,1,-1.000000,614.240000,hint,lora,60 +on3,0,0,24,0,0,1431,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 +on5,0,0,24,0,0,1386,1440.000000,182,0,-1.000000,584.800000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1420,1440.000000,182,0,-1.000000,579.360000,hint,lora,60 +on9,0,0,24,0,0,1395,1440.000000,182,0,-1.000000,583.360000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,lora,60 +on8,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,608.864000,hint,lora,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1419,1440.000000,183,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1387,1440.000000,183,0,-1.000000,584.640000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1377,1500.000000,183,1,-1.000000,626.560000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1432,1440.000000,183,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1454,1500.000000,184,1,-1.000000,604.160000,hint,lora,60 +on2,0,0,25,0,0,1435,1500.000000,184,1,-1.000000,609.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1429,1440.000000,184,0,-1.000000,577.920000,hint,lora,60 +on12,0,0,24,0,0,1422,1440.000000,184,0,-1.000000,579.040000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1421,1440.000000,184,0,-1.000000,588.160000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1414,1440.000000,184,0,-1.000000,580.320000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,184,0,-1.000000,602.144000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1340,1500.000000,185,1,-1.000000,622.560000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1402,1440.000000,185,0,-1.000000,582.240000,hint,lora,60 +on10,0,0,24,0,0,1411,1440.000000,185,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1426,1440.000000,185,0,-1.000000,578.400000,hint,lora,60 +on12,0,0,24,0,0,1383,1440.000000,185,0,-1.000000,585.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,185,0,-1.000000,626.464000,hint,lora,60 +on1,0,0,24,0,0,1410,1440.000000,185,0,-1.000000,580.960000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1428,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,25,0,0,1353,1500.000000,186,1,-1.000000,634.032000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,186,0,-1.000000,689.600000,hint,lora,60 +on4,0,0,24,0,0,1375,1440.000000,186,0,-1.000000,592.960000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,186,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 +on11,0,0,25,0,0,1345,1500.000000,186,1,-1.000000,620.480000,hint,lora,60 +on2,0,0,24,0,0,1394,1440.000000,186,0,-1.000000,583.680000,hint,lora,60 +on5,0,0,24,0,0,1405,1440.000000,186,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,26,0,0,1435,1560.000000,186,2,-1.000000,638.832000,hint,lora,60 +on3,0,0,24,0,0,1384,1440.000000,186,0,-1.000000,585.120000,hint,lora,60 +on1,0,0,24,0,0,1389,1440.000000,186,0,-1.000000,592.000000,hint,lora,60 +on10,0,0,25,0,0,1385,1500.000000,186,1,-1.000000,612.800000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1394,1440.000000,187,0,-1.000000,583.520000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,187,0,-1.000000,637.024000,hint,lora,60 +on11,0,0,24,0,0,1383,1440.000000,187,0,-1.000000,585.280000,hint,lora,60 +on4,0,0,24,0,0,1426,1440.000000,187,0,-1.000000,578.400000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1383,1440.000000,187,0,-1.000000,585.280000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1364,1440.000000,187,0,-1.000000,588.480000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1306,1444.000000,187,1,-1.000000,606.560000,hint,lora,60 +on7,0,0,24,0,0,1423,1440.000000,188,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1400,1440.000000,188,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1368,1440.000000,188,0,-1.000000,590.560000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,188,0,-1.000000,650.720000,hint,lora,60 +on3,0,0,24,0,0,1412,1440.000000,188,0,-1.000000,582.400000,hint,lora,60 +on1,0,0,24,0,0,1388,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 +on6,0,0,24,0,0,1409,1440.000000,188,0,-1.000000,581.120000,hint,lora,60 +on5,0,0,24,0,0,1406,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 +on8,0,0,24,0,0,1259,1440.000000,188,0,-1.000000,605.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1357,1440.000000,189,0,-1.000000,592.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,189,0,-1.000000,632.384000,hint,lora,60 +on7,0,0,24,0,0,1409,1440.000000,189,0,-1.000000,581.120000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1382,1440.000000,189,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1410,1440.000000,189,0,-1.000000,588.800000,hint,lora,60 +on11,0,0,25,0,0,1383,1500.000000,189,1,-1.000000,614.560000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on2,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 +on10,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1388,1440.000000,189,0,-1.000000,584.480000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,190,0,-1.000000,608.224000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1383,1440.000000,190,0,-1.000000,590.240000,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,1422,1440.000000,190,0,-1.000000,585.600000,hint,lora,60 +on7,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 +on9,0,0,24,0,0,1439,1440.000000,190,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1393,1500.000000,190,1,-1.000000,616.320000,hint,lora,60 +on2,0,0,24,0,0,1421,1440.000000,190,0,-1.000000,579.200000,hint,lora,60 +on2,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.664000,hint,lora,60 +on3,0,0,24,0,0,1385,1440.000000,191,0,-1.000000,584.960000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1410,1440.000000,191,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,25,0,0,1366,1500.000000,191,1,-1.000000,617.760000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1439,1440.000000,191,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1381,1440.000000,191,0,-1.000000,586.720000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1394,1440.000000,192,0,-1.000000,583.520000,hint,lora,60 +on12,0,0,24,0,0,1388,1478.000000,192,1,-1.000000,609.440000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,192,0,-1.000000,602.624000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,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,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1397,1440.000000,192,0,-1.000000,583.040000,hint,lora,60 +on1,0,0,25,0,0,1382,1500.000000,193,1,-1.000000,613.600000,hint,lora,60 +on2,0,0,25,0,0,1371,1500.000000,193,1,-1.000000,616.320000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1398,1440.000000,193,0,-1.000000,582.880000,hint,lora,60 +on11,0,0,25,0,0,1385,1500.000000,193,1,-1.000000,618.400000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1382,1440.000000,193,0,-1.000000,585.440000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1390,1440.000000,193,0,-1.000000,584.160000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,193,0,-1.000000,648.512000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1435,1440.000000,194,0,-1.000000,576.960000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,194,0,-1.000000,608.384000,hint,lora,60 +on8,0,0,24,0,0,1381,1440.000000,194,0,-1.000000,585.760000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1362,1500.000000,194,1,-1.000000,626.880000,hint,lora,60 +on11,0,0,24,0,0,1431,1440.000000,194,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1417,1440.000000,195,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1420,1440.000000,195,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,25,0,0,1462,1500.000000,195,1,-1.000000,601.760000,hint,lora,60 +on10,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,25,0,0,1333,1500.000000,195,1,-1.000000,629.920000,hint,lora,60 +on4,0,0,24,0,0,1367,1440.000000,195,0,-1.000000,593.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,195,0,-1.000000,638.144000,hint,lora,60 +on3,0,0,24,0,0,1435,1440.000000,195,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1360,1440.000000,195,0,-1.000000,593.120000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1394,1440.000000,196,0,-1.000000,590.400000,hint,lora,60 +on4,0,0,24,0,0,1436,1440.000000,196,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on1,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,620.000000,hint,lora,60 +on12,0,0,24,0,0,1410,1440.000000,196,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1392,1440.000000,196,0,-1.000000,583.840000,hint,lora,60 +on9,0,0,24,0,0,1408,1440.000000,196,0,-1.000000,581.280000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1410,1440.000000,196,0,-1.000000,580.960000,hint,lora,60 +on5,0,0,24,0,0,1420,1440.000000,196,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1385,1440.000000,196,0,-1.000000,588.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,197,0,-1.000000,626.944000,hint,lora,60 +on6,0,0,24,0,0,1410,1440.000000,197,0,-1.000000,580.960000,hint,lora,60 +on9,0,0,24,0,0,1383,1440.000000,197,0,-1.000000,585.280000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1367,1440.000000,197,0,-1.000000,591.360000,hint,lora,60 +on1,0,0,26,0,0,1457,1560.000000,197,2,-1.000000,633.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1439,1440.000000,197,0,-1.000000,576.320000,hint,lora,60 +on2,0,0,26,0,0,1430,1560.000000,197,2,-1.000000,641.008000,hint,lora,60 +on7,0,0,24,0,0,1424,1440.000000,197,0,-1.000000,578.720000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1429,1440.000000,198,0,-1.000000,586.080000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,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,1409,1440.000000,198,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,25,0,0,1423,1500.000000,198,1,-1.000000,612.480000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1351,1440.000000,198,0,-1.000000,590.560000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,198,0,-1.000000,611.584000,hint,lora,60 +on4,0,0,24,0,0,1432,1440.000000,198,0,-1.000000,577.440000,hint,lora,60 +on5,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 +on0,1,0,24,0,0,0,1440.000000,199,0,-1.000000,697.248000,hint,lora,60 +on9,0,0,25,0,0,1404,1500.000000,199,1,-1.000000,614.560000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,27,0,0,1338,1620.000000,199,3,-1.000000,686.192000,hint,lora,60 +on5,0,0,25,0,0,1404,1500.000000,199,1,-1.000000,615.200000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1394,1500.000000,199,1,-1.000000,617.392000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1408,1440.000000,199,0,-1.000000,587.520000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1345,1500.000000,199,1,-1.000000,621.872000,hint,lora,60 +on4,0,0,24,0,0,1384,1440.000000,199,0,-1.000000,585.120000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,200,0,-1.000000,618.240000,hint,lora,60 +on7,0,0,24,0,0,1364,1440.000000,200,0,-1.000000,595.200000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1382,1440.000000,200,0,-1.000000,585.440000,hint,lora,60 +on5,0,0,24,0,0,1350,1440.000000,200,0,-1.000000,595.200000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1407,1440.000000,200,0,-1.000000,581.600000,hint,lora,60 +on3,0,0,24,1,0,695,1575.000000,1,0,41961.000000,655.600000,extended,lora,60 +on0,1,6,24,0,0,0,2079.000000,1,0,-1.000000,985.200000,extended,lora,60 +on8,0,0,24,1,0,258,1558.000000,1,0,17814.000000,648.800000,extended,lora,60 +on2,0,0,24,1,0,932,1572.000000,1,0,57469.000000,654.400000,extended,lora,60 +on1,0,0,24,1,0,1080,1540.000000,1,0,67238.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,600,1540.000000,1,0,37596.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1153,1553.000000,1,0,71573.000000,646.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,660,1540.000000,2,0,39971.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2002.000000,2,0,-1.000000,928.800000,extended,lora,60 +on1,0,0,24,1,0,600,1540.000000,2,0,38727.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,12,1552.000000,2,0,3235.000000,646.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1366,1586.000000,2,0,80745.000000,660.000000,extended,lora,60 +on2,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,2,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,255,1555.000000,2,0,18027.000000,647.600000,extended,lora,60 +on4,0,0,24,1,0,1020,1540.000000,3,0,64615.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,456,1576.000000,3,0,26041.000000,656.000000,extended,lora,60 +on0,1,6,24,0,0,0,2131.000000,3,0,-1.000000,1006.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1140,1540.000000,3,0,70253.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1260,1540.000000,3,0,75882.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1254,1594.000000,3,0,75203.000000,663.200000,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,1,0,300,1540.000000,3,0,19162.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,240,1540.000000,4,0,16377.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,4,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 +on10,0,0,24,1,0,435,1555.000000,4,0,28630.000000,647.600000,extended,lora,60 +on5,0,0,24,1,0,1391,1551.000000,4,0,84147.000000,646.000000,extended,lora,60 +on0,1,7,24,0,0,0,2231.000000,4,0,-1.000000,1071.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,221,1581.000000,4,0,11897.000000,658.000000,extended,lora,60 +on7,0,0,24,1,0,755,1575.000000,4,0,44269.000000,655.600000,extended,lora,60 +on2,0,0,24,1,0,1200,1540.000000,4,0,73111.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1260,1540.000000,4,0,76279.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,428,1548.000000,5,0,26698.000000,644.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,120,1540.000000,5,0,10182.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,786,1546.000000,5,0,50122.000000,644.000000,extended,lora,60 +on11,0,0,24,1,0,255,1555.000000,5,0,17089.000000,647.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1997.000000,5,0,-1.000000,926.800000,extended,lora,60 +on10,0,0,24,1,0,1260,1540.000000,5,0,78400.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,360,1540.000000,6,0,22809.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,420,1540.000000,6,0,27854.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,114,1594.000000,6,0,4815.000000,663.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on9,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 +on12,0,0,24,1,0,698,1578.000000,6,0,40224.000000,656.800000,extended,lora,60 +on8,0,0,24,1,0,600,1540.000000,6,0,38124.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,266,1566.000000,6,0,14661.000000,652.000000,extended,lora,60 +on0,1,7,24,0,0,0,2244.000000,6,0,-1.000000,1076.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,212,1572.000000,6,0,14356.000000,654.400000,extended,lora,60 +on5,0,0,24,1,0,0,1540.000000,7,0,546.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1943.000000,7,0,-1.000000,879.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,7,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 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,252,1552.000000,7,0,14603.000000,646.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,420,1540.000000,7,0,28036.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,300,1540.000000,7,0,18666.000000,641.600000,extended,lora,60 +on10,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,8,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,984,1564.000000,8,0,60389.000000,651.200000,extended,lora,60 +on8,0,0,24,1,0,780,1540.000000,8,0,49565.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,1380,1540.000000,8,0,83729.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2109.000000,8,0,-1.000000,997.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,600,1540.000000,8,0,37351.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,540,1540.000000,8,0,34131.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,35,1575.000000,8,0,680.000000,655.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,622,1562.000000,9,0,37462.000000,650.400000,extended,lora,60 +on12,0,0,24,1,0,480,1540.000000,9,0,29195.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,180,1540.000000,9,0,13287.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1774.000000,9,0,-1.000000,786.400000,extended,lora,60 +on6,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,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 +on6,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1950.000000,10,0,-1.000000,908.000000,extended,lora,60 +on8,0,0,24,1,0,583,1583.000000,10,0,34608.000000,658.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,150,1570.000000,10,0,8649.000000,653.600000,extended,lora,60 +on1,0,0,24,1,0,363,1543.000000,10,0,22065.000000,642.800000,extended,lora,60 +on4,0,0,24,1,0,1080,1540.000000,10,0,65430.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,248,1548.000000,10,0,16629.000000,644.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1080,1540.000000,11,0,65603.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,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2090.000000,11,0,-1.000000,989.600000,extended,lora,60 +on4,0,0,24,1,0,65,1545.000000,11,0,4872.000000,643.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,661,1541.000000,11,0,41871.000000,642.000000,extended,lora,60 +on2,0,0,24,1,0,120,1540.000000,11,0,9113.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,397,1577.000000,11,0,21943.000000,656.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,577,1577.000000,11,0,33108.000000,656.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,900,1540.000000,12,0,56326.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,554,1554.000000,12,0,33470.000000,647.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,217,1577.000000,12,0,12600.000000,656.400000,extended,lora,60 +on7,0,0,24,1,0,320,1560.000000,12,0,21461.000000,649.600000,extended,lora,60 +on4,0,0,24,1,0,1080,1540.000000,12,0,65018.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,368,1548.000000,12,0,25020.000000,644.800000,extended,lora,60 +on6,0,0,24,1,0,1020,1540.000000,12,0,61473.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,840,1540.000000,12,0,53039.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,120,1540.000000,12,0,8292.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,780,1540.000000,12,0,50012.000000,641.600000,extended,lora,60 +on0,1,10,24,0,0,0,2646.000000,12,0,-1.000000,1314.400000,extended,lora,60 +on11,0,0,24,1,0,911,1551.000000,13,0,57135.000000,646.000000,extended,lora,60 +on2,0,0,24,1,0,120,1540.000000,13,0,10014.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,819,1579.000000,13,0,47598.000000,657.200000,extended,lora,60 +on3,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 +on7,0,0,24,1,0,1140,1540.000000,13,0,68691.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1380,1540.000000,13,0,85032.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2388.000000,13,0,-1.000000,1160.000000,extended,lora,60 +on1,0,0,24,1,0,545,1545.000000,13,0,34099.000000,643.600000,extended,lora,60 +on12,0,0,24,1,0,0,1540.000000,13,0,1469.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,1020,1540.000000,13,0,64520.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,840,1540.000000,14,0,52194.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,720,1540.000000,14,0,44296.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,130,1550.000000,14,0,9588.000000,645.600000,extended,lora,60 +on3,0,0,24,1,0,917,1557.000000,14,0,54830.000000,648.400000,extended,lora,60 +on6,0,0,24,1,0,1393,1553.000000,14,0,83627.000000,646.800000,extended,lora,60 +on0,1,8,24,0,0,0,2290.000000,14,0,-1.000000,1120.800000,extended,lora,60 +on11,0,0,24,1,0,1012,1592.000000,14,0,59394.000000,662.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,17,1557.000000,14,0,1365.000000,648.400000,extended,lora,60 +on10,0,0,24,1,0,198,1558.000000,14,0,12395.000000,648.800000,extended,lora,60 +on9,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 +on4,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,910,1550.000000,15,0,57139.000000,645.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1380,1540.000000,15,0,84559.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2313.000000,15,0,-1.000000,1130.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,779,1599.000000,15,0,46172.000000,665.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,15,0,35525.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,892,1592.000000,15,0,52790.000000,662.400000,extended,lora,60 +on5,0,0,24,1,0,155,1575.000000,15,0,10653.000000,655.600000,extended,lora,60 +on10,0,0,24,1,0,983,1563.000000,15,0,58167.000000,650.800000,extended,lora,60 +on1,0,0,24,1,0,116,1596.000000,15,0,6011.000000,664.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,620,1560.000000,16,0,36619.000000,649.600000,extended,lora,60 +on9,0,0,24,1,0,900,1540.000000,16,0,55238.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1801.000000,16,0,-1.000000,797.200000,extended,lora,60 +on6,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 +on8,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 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,60,1540.000000,16,0,5489.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2116.000000,17,0,-1.000000,1000.000000,extended,lora,60 +on5,0,0,24,1,0,1336,1556.000000,17,0,82406.000000,648.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,834,1594.000000,17,0,49830.000000,663.200000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1169,1569.000000,17,0,71119.000000,653.200000,extended,lora,60 +on3,0,0,24,1,0,840,1540.000000,17,0,53517.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,89,1569.000000,17,0,5374.000000,653.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1260,1540.000000,17,0,77619.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1200,1540.000000,18,0,73286.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,414,1594.000000,18,0,22242.000000,663.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1380,1540.000000,18,0,84937.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2396.000000,18,0,-1.000000,1163.200000,extended,lora,60 +on2,0,0,24,1,0,615,1555.000000,18,0,39313.000000,647.600000,extended,lora,60 +on12,0,0,24,1,0,300,1540.000000,18,0,20194.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1268,1548.000000,18,0,76641.000000,644.800000,extended,lora,60 +on9,0,0,24,1,0,180,1540.000000,18,0,12525.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,486,1546.000000,18,0,29579.000000,644.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,255,1555.000000,19,0,16578.000000,647.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,180,1540.000000,19,0,13197.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1879.000000,19,0,-1.000000,854.000000,extended,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1016,1596.000000,19,0,58854.000000,664.000000,extended,lora,60 +on8,0,0,24,1,0,420,1540.000000,19,0,27098.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,835,1595.000000,20,0,49136.000000,663.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,600,1540.000000,20,0,38252.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2071.000000,20,0,-1.000000,982.000000,extended,lora,60 +on9,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 +on8,0,0,24,1,0,332,1572.000000,20,0,20824.000000,654.400000,extended,lora,60 +on1,0,0,24,1,0,74,1554.000000,20,0,6004.000000,647.200000,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,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,900,1540.000000,20,0,55747.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1188,1588.000000,20,0,69637.000000,660.800000,extended,lora,60 +on1,0,0,24,1,0,0,1540.000000,21,0,592.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,21,0,84569.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2143.000000,21,0,-1.000000,1010.800000,extended,lora,60 +on9,0,0,24,1,0,105,1585.000000,21,0,5541.000000,659.600000,extended,lora,60 +on12,0,0,24,1,0,220,1580.000000,21,0,12956.000000,657.600000,extended,lora,60 +on7,0,0,24,1,0,1020,1540.000000,21,0,61690.000000,641.600000,extended,lora,60 +on6,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 +on3,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,960,1540.000000,21,0,59762.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,835,1595.000000,22,0,49919.000000,663.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,420,1540.000000,22,0,26450.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,60,1540.000000,22,0,6220.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,540,1540.000000,22,0,34249.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2512.000000,22,0,-1.000000,1235.200000,extended,lora,60 +on9,0,0,24,1,0,770,1590.000000,22,0,43723.000000,661.600000,extended,lora,60 +on5,0,0,24,1,0,1005,1585.000000,22,0,58396.000000,659.600000,extended,lora,60 +on12,0,0,24,1,0,480,1540.000000,22,0,29556.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,180,1540.000000,22,0,11345.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,29,1569.000000,22,0,1484.000000,653.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1259,1599.000000,23,0,72528.000000,665.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,720,1540.000000,23,0,43721.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,707,1587.000000,23,0,42517.000000,660.400000,extended,lora,60 +on0,1,5,24,0,0,0,1952.000000,23,0,-1.000000,908.800000,extended,lora,60 +on1,0,0,24,1,0,139,1559.000000,23,0,10598.000000,649.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1353,1573.000000,23,0,81755.000000,654.800000,extended,lora,60 +on3,0,0,24,1,0,693,1573.000000,24,0,41909.000000,654.800000,extended,lora,60 +on0,1,7,24,0,0,0,2229.000000,24,0,-1.000000,1070.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,943,1583.000000,24,0,57633.000000,658.800000,extended,lora,60 +on5,0,0,24,1,0,599,1599.000000,24,0,35767.000000,665.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,300,1540.000000,24,0,20266.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,478,1598.000000,24,0,26361.000000,664.800000,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,1372,1592.000000,24,0,82348.000000,662.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,960,1540.000000,24,0,61111.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,240,1540.000000,25,0,17250.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,540,1540.000000,25,0,33168.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1320,1540.000000,25,0,81353.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,0,1540.000000,25,0,1193.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1426,1586.000000,25,0,85368.000000,660.000000,extended,lora,60 +on0,1,7,24,0,0,0,2275.000000,25,0,-1.000000,1089.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,902,1542.000000,25,0,57607.000000,642.400000,extended,lora,60 +on2,0,0,24,1,0,1198,1598.000000,25,0,69464.000000,664.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,60,1540.000000,26,0,5935.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,480,1540.000000,26,0,30618.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,477,1597.000000,26,0,28174.000000,664.400000,extended,lora,60 +on6,0,0,24,1,0,179,1599.000000,26,0,7505.000000,665.200000,extended,lora,60 +on12,0,0,24,1,0,1376,1596.000000,26,0,81485.000000,664.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1434,1594.000000,26,0,84931.000000,663.200000,extended,lora,60 +on0,1,9,24,0,0,0,2393.000000,26,0,-1.000000,1187.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1200,1540.000000,26,0,75036.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,226,1586.000000,26,0,13271.000000,660.000000,extended,lora,60 +on3,0,0,24,1,0,240,1540.000000,26,0,16931.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2312.000000,27,0,-1.000000,1129.600000,extended,lora,60 +on2,0,0,24,1,0,480,1540.000000,27,0,31839.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,420,1540.000000,27,0,27247.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,384,1564.000000,27,0,22389.000000,651.200000,extended,lora,60 +on1,0,0,24,1,0,72,1552.000000,27,0,6538.000000,646.400000,extended,lora,60 +on8,0,0,24,1,0,1028,1548.000000,27,0,64237.000000,644.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,965,1545.000000,27,0,58365.000000,643.600000,extended,lora,60 +on10,0,0,24,1,0,1142,1542.000000,27,0,68662.000000,642.400000,extended,lora,60 +on12,0,0,24,1,0,339,1579.000000,27,0,19288.000000,657.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,70,1550.000000,28,0,6113.000000,645.600000,extended,lora,60 +on11,0,0,24,1,0,171,1591.000000,28,0,9271.000000,662.000000,extended,lora,60 +on9,0,0,24,1,0,934,1574.000000,28,0,56324.000000,655.200000,extended,lora,60 +on10,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 +on6,0,0,24,1,0,1140,1540.000000,28,0,70187.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,725,1545.000000,28,0,44289.000000,643.600000,extended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,28,0,85307.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2265.000000,28,0,-1.000000,1085.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,180,1540.000000,28,0,13053.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,360,1540.000000,29,0,24580.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1140,1540.000000,29,0,71730.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1426,1586.000000,29,0,83917.000000,660.000000,extended,lora,60 +on0,1,9,24,0,0,0,2426.000000,29,0,-1.000000,1200.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,490,1550.000000,29,0,31269.000000,645.600000,extended,lora,60 +on4,0,0,24,1,0,1320,1540.000000,29,0,81316.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,358,1598.000000,29,0,19184.000000,664.800000,extended,lora,60 +on3,0,0,24,1,0,1020,1540.000000,29,0,64444.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,840,1540.000000,29,0,53244.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,420,1540.000000,29,0,28743.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on0,1,1,24,0,0,0,1540.000000,30,0,-1.000000,641.600000,extended,lora,60 +on11,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 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,30,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 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,398,1578.000000,30,0,25267.000000,656.800000,extended,lora,60 +on6,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,31,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,180,1540.000000,31,0,11936.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1795.000000,31,0,-1.000000,794.800000,extended,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,720,1540.000000,31,0,44389.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,994,1574.000000,31,0,59389.000000,655.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,404,1584.000000,32,0,23959.000000,659.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1026,1546.000000,32,0,62351.000000,644.000000,extended,lora,60 +on9,0,0,24,1,0,1082,1542.000000,32,0,66276.000000,642.400000,extended,lora,60 +on7,0,0,24,1,0,260,1560.000000,32,0,15983.000000,649.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1402,1562.000000,32,0,84384.000000,650.400000,extended,lora,60 +on0,1,7,24,0,0,0,2144.000000,32,0,-1.000000,1036.800000,extended,lora,60 +on8,0,0,24,1,0,600,1540.000000,32,0,37316.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,451,1571.000000,32,0,27327.000000,654.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,998,1578.000000,33,0,57892.000000,656.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,611,1551.000000,33,0,36844.000000,646.000000,extended,lora,60 +on1,0,0,24,1,0,1320,1540.000000,33,0,81734.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1950.000000,33,0,-1.000000,908.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,874,1574.000000,33,0,51364.000000,655.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,196,1556.000000,33,0,13202.000000,648.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,299,1599.000000,34,0,17058.000000,665.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1080,1540.000000,34,0,67148.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,693,1573.000000,34,0,40198.000000,654.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,34,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 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,360,1540.000000,34,0,24171.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1905.000000,34,0,-1.000000,864.400000,extended,lora,60 +on3,0,0,24,1,0,780,1540.000000,35,0,50222.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2141.000000,35,0,-1.000000,1010.000000,extended,lora,60 +on5,0,0,24,1,0,1042,1562.000000,35,0,61890.000000,650.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,480,1540.000000,35,0,30615.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,255,1555.000000,35,0,15322.000000,647.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1315,1595.000000,35,0,79120.000000,663.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,60,1540.000000,35,0,4576.000000,641.600000,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,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,90,1570.000000,36,0,6295.000000,653.600000,extended,lora,60 +on4,0,0,24,1,0,720,1540.000000,36,0,44583.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,300,1540.000000,36,0,21432.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2088.000000,36,0,-1.000000,988.800000,extended,lora,60 +on2,0,0,24,1,0,0,1540.000000,36,0,2851.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,947,1587.000000,36,0,56878.000000,660.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,786,1546.000000,36,0,48335.000000,644.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1022,1542.000000,37,0,64880.000000,642.400000,extended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,37,0,83546.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2422.000000,37,0,-1.000000,1173.600000,extended,lora,60 +on8,0,0,24,1,0,240,1540.000000,37,0,15019.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,369,1549.000000,37,0,24315.000000,645.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,780,1540.000000,37,0,47939.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,1,1541.000000,37,0,2405.000000,642.000000,extended,lora,60 +on7,0,0,24,1,0,1107,1567.000000,37,0,66621.000000,652.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,720,1540.000000,37,0,45316.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,273,1573.000000,38,0,14949.000000,654.800000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,38,0,6860.000000,641.600000,extended,lora,60 +on0,1,2,24,0,0,0,1692.000000,38,0,-1.000000,728.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on9,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,39,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2237.000000,39,0,-1.000000,1074.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,199,1559.000000,39,0,11764.000000,649.200000,extended,lora,60 +on10,0,0,24,1,0,576,1576.000000,39,0,35604.000000,656.000000,extended,lora,60 +on5,0,0,24,1,0,503,1563.000000,39,0,31408.000000,650.800000,extended,lora,60 +on7,0,0,24,1,0,1020,1540.000000,39,0,63111.000000,641.600000,extended,lora,60 +on9,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 +on11,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,437,1557.000000,39,0,27264.000000,648.400000,extended,lora,60 +on8,0,0,24,1,0,846,1546.000000,39,0,52049.000000,644.000000,extended,lora,60 +on12,0,0,24,1,0,900,1540.000000,39,0,54356.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,780,1540.000000,40,0,48169.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,507,1567.000000,40,0,31838.000000,652.400000,extended,lora,60 +on1,0,0,24,1,0,420,1540.000000,40,0,27827.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,227,1587.000000,40,0,11257.000000,660.400000,extended,lora,60 +on6,0,0,24,1,0,966,1546.000000,40,0,59273.000000,644.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,134,1554.000000,40,0,7938.000000,647.200000,extended,lora,60 +on0,1,7,24,0,0,0,2206.000000,40,0,-1.000000,1061.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,71,1551.000000,40,0,3963.000000,646.000000,extended,lora,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,180,1540.000000,41,0,12008.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,840,1540.000000,41,0,51537.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1260,1540.000000,41,0,78288.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2184.000000,41,0,-1.000000,1027.200000,extended,lora,60 +on6,0,0,24,1,0,85,1565.000000,41,0,5667.000000,651.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,360,1540.000000,41,0,22686.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,1140,1540.000000,41,0,70099.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 +on2,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,480,1540.000000,42,0,31918.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1427,1587.000000,42,0,83689.000000,660.400000,extended,lora,60 +on0,1,6,24,0,0,0,2147.000000,42,0,-1.000000,1012.400000,extended,lora,60 +on12,0,0,24,1,0,300,1540.000000,42,0,20062.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,900,1540.000000,42,0,56889.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1159,1559.000000,42,0,70954.000000,649.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,895,1595.000000,42,0,54080.000000,663.600000,extended,lora,60 +on5,0,0,24,1,0,420,1540.000000,43,0,28717.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,180,1540.000000,43,0,12647.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1030,1550.000000,43,0,64006.000000,645.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,120,1540.000000,43,0,8342.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,43,0,85864.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2269.000000,43,0,-1.000000,1086.800000,extended,lora,60 +on1,0,0,24,1,0,1080,1540.000000,43,0,66600.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,480,1540.000000,43,0,31715.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,120,1540.000000,44,0,10357.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,975,1555.000000,44,0,60321.000000,647.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,350,1590.000000,44,0,20707.000000,661.600000,extended,lora,60 +on9,0,0,24,1,0,24,1564.000000,44,0,1742.000000,651.200000,extended,lora,60 +on0,1,7,24,0,0,0,2229.000000,44,0,-1.000000,1070.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,420,1540.000000,44,0,28261.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,642,1582.000000,44,0,37257.000000,658.400000,extended,lora,60 +on8,0,0,24,1,0,540,1540.000000,44,0,34274.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,221,1581.000000,45,0,11933.000000,658.000000,extended,lora,60 +on5,0,0,24,1,0,1260,1540.000000,45,0,77226.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1340,1560.000000,45,0,81394.000000,649.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,45,0,32959.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,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1919.000000,45,0,-1.000000,870.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 +on6,0,0,24,1,0,438,1558.000000,46,0,28358.000000,648.800000,extended,lora,60 +on2,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,46,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2152.000000,46,0,-1.000000,1014.400000,extended,lora,60 +on9,0,0,24,1,0,780,1540.000000,46,0,48748.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,213,1573.000000,46,0,13536.000000,654.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,60,1540.000000,46,0,5873.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,1140,1540.000000,46,0,71960.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,480,1540.000000,46,0,30804.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,225,1585.000000,47,0,13334.000000,659.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,480,1540.000000,47,0,29816.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,662,1542.000000,47,0,39957.000000,642.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,47,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 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1380,1540.000000,47,0,85255.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2200.000000,47,0,-1.000000,1059.200000,extended,lora,60 +on4,0,0,24,1,0,255,1555.000000,47,0,14761.000000,647.600000,extended,lora,60 +on5,0,0,24,1,0,300,1540.000000,47,0,19674.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,1052,1572.000000,47,0,63480.000000,654.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,660,1540.000000,48,0,41559.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1140,1540.000000,48,0,69290.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,540,1540.000000,48,0,35960.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1078,1598.000000,48,0,62688.000000,664.800000,extended,lora,60 +on12,0,0,24,1,0,840,1540.000000,48,0,53017.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,48,0,85487.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2486.000000,48,0,-1.000000,1224.800000,extended,lora,60 +on2,0,0,24,1,0,1080,1540.000000,48,0,65440.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,120,1540.000000,48,0,8885.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,87,1567.000000,48,0,3911.000000,652.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,360,1540.000000,49,0,23706.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,148,1568.000000,49,0,9476.000000,652.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1892.000000,49,0,-1.000000,859.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on5,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 +on9,0,0,24,1,0,60,1540.000000,49,0,6009.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,326,1566.000000,49,0,18519.000000,652.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on2,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,50,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,180,1540.000000,50,0,12614.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,720,1540.000000,50,0,45933.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,600,1540.000000,50,0,38380.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2016.000000,50,0,-1.000000,934.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1140,1540.000000,50,0,71568.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,575,1575.000000,50,0,33507.000000,655.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,60,1540.000000,51,0,4045.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,689,1569.000000,51,0,39996.000000,653.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,949,1589.000000,51,0,57304.000000,661.200000,extended,lora,60 +on9,0,0,24,1,0,0,1540.000000,51,0,1817.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,180,1540.000000,51,0,13687.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,1020,1540.000000,51,0,62190.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,240,1540.000000,51,0,14663.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2278.000000,51,0,-1.000000,1090.400000,extended,lora,60 +on7,0,0,24,1,0,1014,1594.000000,52,0,59531.000000,663.200000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1767.000000,52,0,-1.000000,783.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,561,1561.000000,52,0,36023.000000,650.000000,extended,lora,60 +on4,0,0,24,1,0,0,1540.000000,52,0,955.000000,641.600000,extended,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,960,1540.000000,53,0,58986.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,879,1579.000000,53,0,53585.000000,657.200000,extended,lora,60 +on0,1,8,24,0,0,0,2350.000000,53,0,-1.000000,1144.800000,extended,lora,60 +on4,0,0,24,1,0,1200,1540.000000,53,0,75493.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,1260,1540.000000,53,0,79218.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,180,1540.000000,53,0,12963.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,240,1540.000000,53,0,14738.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,600,1540.000000,53,0,39611.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,737,1557.000000,53,0,44748.000000,648.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,180,1540.000000,54,0,12990.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1983.000000,54,0,-1.000000,921.200000,extended,lora,60 +on7,0,0,24,1,0,1276,1556.000000,54,0,77191.000000,648.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,674,1554.000000,54,0,39793.000000,647.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,995,1575.000000,54,0,60450.000000,655.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,165,1585.000000,54,0,9936.000000,659.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,837,1597.000000,55,0,47246.000000,664.400000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,650,1590.000000,55,0,39407.000000,661.600000,extended,lora,60 +on10,0,0,24,1,0,725,1545.000000,55,0,46612.000000,643.600000,extended,lora,60 +on2,0,0,24,1,0,518,1578.000000,55,0,29252.000000,656.800000,extended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,55,0,84608.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2246.000000,55,0,-1.000000,1103.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,251,1551.000000,55,0,16191.000000,646.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,18,1558.000000,55,0,1634.000000,648.800000,extended,lora,60 +on9,0,0,24,1,0,1291,1571.000000,55,0,76147.000000,654.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,0,1540.000000,56,0,3585.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2383.000000,56,0,-1.000000,1158.000000,extended,lora,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,420,1540.000000,56,0,26196.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,360,1540.000000,56,0,22158.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,804,1564.000000,56,0,47084.000000,651.200000,extended,lora,60 +on3,0,0,24,1,0,840,1540.000000,56,0,51483.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,674,1554.000000,56,0,41873.000000,647.200000,extended,lora,60 +on5,0,0,24,1,0,900,1540.000000,56,0,57084.000000,641.600000,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,1067,1587.000000,56,0,62682.000000,660.400000,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 +on0,1,5,24,0,0,0,2011.000000,57,0,-1.000000,932.400000,extended,lora,60 +on3,0,0,24,1,0,200,1560.000000,57,0,14142.000000,649.600000,extended,lora,60 +on10,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 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1254,1594.000000,57,0,72767.000000,663.200000,extended,lora,60 +on11,0,0,24,1,0,0,1540.000000,57,0,2694.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,795,1555.000000,57,0,47203.000000,647.600000,extended,lora,60 +on8,0,0,24,1,0,300,1540.000000,57,0,21485.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1140,1540.000000,58,0,69627.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,480,1540.000000,58,0,29657.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,888,1588.000000,58,0,53121.000000,660.800000,extended,lora,60 +on0,1,7,24,0,0,0,2409.000000,58,0,-1.000000,1142.800000,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,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1260,1540.000000,58,0,79119.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1037,1557.000000,58,0,62599.000000,648.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,0,1540.000000,58,0,3087.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,420,1540.000000,58,0,25765.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1080,1540.000000,59,0,67285.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2232.000000,59,0,-1.000000,1072.000000,extended,lora,60 +on5,0,0,24,1,0,480,1540.000000,59,0,30466.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,0,1540.000000,59,0,1505.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1274,1554.000000,59,0,76647.000000,647.200000,extended,lora,60 +on7,0,0,24,1,0,900,1540.000000,59,0,54666.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,166,1586.000000,59,0,8993.000000,660.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1221,1561.000000,59,0,74199.000000,650.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on7,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 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,530,1590.000000,60,0,30271.000000,661.600000,extended,lora,60 +on0,1,3,24,0,0,0,1740.000000,60,0,-1.000000,772.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,713,1593.000000,60,0,41767.000000,662.800000,extended,lora,60 +on5,0,0,24,1,0,899,1599.000000,60,0,52728.000000,665.200000,extended,lora,60 +on10,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 +on10,0,0,24,1,0,431,1551.000000,61,0,28061.000000,646.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1339,1559.000000,61,0,80395.000000,649.200000,extended,lora,60 +on6,0,0,24,1,0,313,1553.000000,61,0,18763.000000,646.800000,extended,lora,60 +on0,1,8,24,0,0,0,2345.000000,61,0,-1.000000,1142.800000,extended,lora,60 +on8,0,0,24,1,0,0,1540.000000,61,0,307.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,1069,1589.000000,61,0,63886.000000,661.200000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,61,0,35542.000000,641.600000,extended,lora,60 +on2,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 +on1,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,780,1540.000000,61,0,47203.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,180,1540.000000,61,0,11272.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,433,1553.000000,62,0,26750.000000,646.800000,extended,lora,60 +on0,1,6,24,0,0,0,2140.000000,62,0,-1.000000,1009.600000,extended,lora,60 +on1,0,0,24,1,0,72,1552.000000,62,0,7249.000000,646.400000,extended,lora,60 +on5,0,0,24,1,0,120,1540.000000,62,0,9008.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,360,1540.000000,62,0,22489.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,480,1540.000000,62,0,32333.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,964,1544.000000,62,0,57896.000000,643.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,360,1540.000000,63,0,23363.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1297,1577.000000,63,0,78390.000000,656.400000,extended,lora,60 +on5,0,0,24,1,0,808,1568.000000,63,0,47615.000000,652.800000,extended,lora,60 +on6,0,0,24,1,0,240,1540.000000,63,0,18049.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,97,1577.000000,63,0,4693.000000,656.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,0,1540.000000,63,0,878.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,300,1540.000000,63,0,18859.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1232,1572.000000,63,0,73289.000000,654.400000,extended,lora,60 +on0,1,9,24,0,0,0,2427.000000,63,0,-1.000000,1201.200000,extended,lora,60 +on8,0,0,24,1,0,537,1597.000000,63,0,30109.000000,664.400000,extended,lora,60 +on2,0,0,24,1,0,230,1590.000000,64,0,13125.000000,661.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on8,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 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1883.000000,64,0,-1.000000,855.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,9,1549.000000,64,0,1607.000000,645.200000,extended,lora,60 +on12,0,0,24,1,0,1320,1540.000000,64,0,79566.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1228,1568.000000,64,0,73256.000000,652.800000,extended,lora,60 +on3,0,0,24,1,0,1244,1584.000000,65,0,75684.000000,659.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,170,1590.000000,65,0,7789.000000,661.600000,extended,lora,60 +on2,0,0,24,1,0,181,1541.000000,65,0,13022.000000,642.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1320,1540.000000,65,0,82489.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,300,1540.000000,65,0,18790.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,65,0,84914.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2084.000000,65,0,-1.000000,987.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,65,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 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,196,1556.000000,66,0,11670.000000,648.000000,extended,lora,60 +on8,0,0,24,1,0,112,1592.000000,66,0,6272.000000,662.400000,extended,lora,60 +on5,0,0,24,1,0,321,1561.000000,66,0,20008.000000,650.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on10,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 +on6,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1740.000000,66,0,-1.000000,772.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1080,1540.000000,67,0,67870.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1994.000000,67,0,-1.000000,925.600000,extended,lora,60 +on9,0,0,24,1,0,1009,1589.000000,67,0,59403.000000,661.200000,extended,lora,60 +on10,0,0,24,1,0,0,1540.000000,67,0,564.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,643,1583.000000,67,0,37486.000000,658.800000,extended,lora,60 +on2,0,0,24,1,0,61,1541.000000,67,0,6444.000000,642.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,lora,60 +on8,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 +on4,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,lora,60 +on6,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,68,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2172.000000,68,0,-1.000000,1022.400000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1020,1540.000000,68,0,62796.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,575,1575.000000,68,0,34338.000000,655.600000,extended,lora,60 +on1,0,0,24,1,0,420,1540.000000,68,0,25532.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,240,1540.000000,68,0,17357.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,300,1540.000000,68,0,19289.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,524,1584.000000,68,0,31695.000000,659.200000,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 +on11,0,0,24,1,0,240,1540.000000,69,0,17422.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2273.000000,69,0,-1.000000,1114.000000,extended,lora,60 +on10,0,0,24,1,0,445,1565.000000,69,0,25579.000000,651.600000,extended,lora,60 +on12,0,0,24,1,0,360,1540.000000,69,0,24982.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,209,1569.000000,69,0,12909.000000,653.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,347,1587.000000,69,0,21118.000000,660.400000,extended,lora,60 +on5,0,0,24,1,0,720,1540.000000,69,0,45337.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,54,1594.000000,69,0,2424.000000,663.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,569,1569.000000,69,0,34150.000000,653.200000,extended,lora,60 +on10,0,0,24,1,0,240,1540.000000,70,0,16570.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1203,1543.000000,70,0,73103.000000,642.800000,extended,lora,60 +on1,0,0,24,1,0,234,1594.000000,70,0,11352.000000,663.200000,extended,lora,60 +on0,1,8,24,0,0,0,2337.000000,70,0,-1.000000,1139.600000,extended,lora,60 +on6,0,0,24,1,0,592,1592.000000,70,0,34731.000000,662.400000,extended,lora,60 +on12,0,0,24,1,0,1260,1540.000000,70,0,77599.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1320,1540.000000,70,0,82359.000000,641.600000,extended,lora,60 +on7,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 +on3,0,0,24,1,0,960,1540.000000,70,0,60035.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1140,1540.000000,70,0,71274.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2171.000000,71,0,-1.000000,1022.000000,extended,lora,60 +on2,0,0,24,1,0,288,1588.000000,71,0,15968.000000,660.800000,extended,lora,60 +on3,0,0,24,1,0,540,1540.000000,71,0,35435.000000,641.600000,extended,lora,60 +on8,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 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1260,1540.000000,71,0,78027.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1320,1540.000000,71,0,80761.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,960,1540.000000,71,0,58471.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,300,1540.000000,71,0,18327.000000,641.600000,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,1,0,1080,1540.000000,72,0,66618.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2126.000000,72,0,-1.000000,1004.000000,extended,lora,60 +on6,0,0,24,1,0,235,1595.000000,72,0,13730.000000,663.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,360,1540.000000,72,0,23410.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1200,1540.000000,72,0,72758.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,142,1562.000000,72,0,9906.000000,650.400000,extended,lora,60 +on1,0,0,24,1,0,309,1549.000000,72,0,19792.000000,645.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1020,1540.000000,73,0,64855.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,180,1540.000000,73,0,12510.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2311.000000,73,0,-1.000000,1103.600000,extended,lora,60 +on1,0,0,24,1,0,44,1584.000000,73,0,2366.000000,659.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1140,1540.000000,73,0,71298.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,300,1540.000000,73,0,20026.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,240,1540.000000,73,0,16259.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,780,1540.000000,73,0,48450.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,300,1540.000000,74,0,19679.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,lora,60 +on9,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 +on11,0,0,24,1,0,270,1570.000000,74,0,15078.000000,653.600000,extended,lora,60 +on12,0,0,24,1,0,60,1540.000000,74,0,5506.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,1067,1587.000000,74,0,61678.000000,660.400000,extended,lora,60 +on6,0,0,24,1,0,1380,1540.000000,74,0,85070.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2290.000000,74,0,-1.000000,1095.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,480,1540.000000,74,0,30652.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,600,1540.000000,74,0,37263.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1361,1581.000000,75,0,79856.000000,658.000000,extended,lora,60 +on8,0,0,24,1,0,480,1540.000000,75,0,32202.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2132.000000,75,0,-1.000000,1006.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,112,1592.000000,75,0,5579.000000,662.400000,extended,lora,60 +on2,0,0,24,1,0,728,1548.000000,75,0,44815.000000,644.800000,extended,lora,60 +on12,0,0,24,1,0,214,1574.000000,75,0,12261.000000,655.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,840,1540.000000,75,0,52792.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,900,1540.000000,76,0,57560.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,60,1540.000000,76,0,5994.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2088.000000,76,0,-1.000000,963.200000,extended,lora,60 +on4,0,0,24,1,0,420,1540.000000,76,0,28284.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1260,1540.000000,76,0,77984.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,660,1540.000000,76,0,40849.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on10,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 +on7,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,195,1555.000000,77,0,12923.000000,647.600000,extended,lora,60 +on2,0,0,24,1,0,720,1540.000000,77,0,46511.000000,641.600000,extended,lora,60 +on9,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,1,0,1020,1540.000000,77,0,61528.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,103,1583.000000,77,0,6469.000000,658.800000,extended,lora,60 +on8,0,0,24,1,0,484,1544.000000,77,0,31527.000000,643.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2098.000000,77,0,-1.000000,992.800000,extended,lora,60 +on3,0,0,24,1,0,0,1540.000000,77,0,2030.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,501,1561.000000,78,0,30595.000000,650.000000,extended,lora,60 +on0,1,8,24,0,0,0,2412.000000,78,0,-1.000000,1169.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,420,1540.000000,78,0,27110.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,0,1540.000000,78,0,2897.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,120,1540.000000,78,0,10335.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,960,1540.000000,78,0,58364.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,305,1545.000000,78,0,20885.000000,643.600000,extended,lora,60 +on12,0,0,24,1,0,1020,1540.000000,78,0,63909.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,107,1587.000000,78,0,5899.000000,660.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,78,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 +on4,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on12,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 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,983,1563.000000,79,0,59662.000000,650.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,367,1547.000000,79,0,22136.000000,644.400000,extended,lora,60 +on0,1,2,24,0,0,0,1640.000000,79,0,-1.000000,707.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,286,1586.000000,80,0,17821.000000,660.000000,extended,lora,60 +on0,1,4,24,0,0,0,1896.000000,80,0,-1.000000,860.800000,extended,lora,60 +on9,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 +on7,0,0,24,1,0,150,1570.000000,80,0,9381.000000,653.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,60,1540.000000,80,0,4393.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1106,1566.000000,80,0,67959.000000,652.000000,extended,lora,60 +on10,0,0,24,1,0,147,1567.000000,81,0,7544.000000,652.400000,extended,lora,60 +on9,0,0,24,1,0,1200,1540.000000,81,0,74440.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1320,1540.000000,81,0,80288.000000,641.600000,extended,lora,60 +on5,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 +on11,0,0,24,1,0,436,1556.000000,81,0,26201.000000,648.000000,extended,lora,60 +on2,0,0,24,1,0,0,1540.000000,81,0,2770.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1260,1540.000000,81,0,77809.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2256.000000,81,0,-1.000000,1081.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1040,1560.000000,81,0,64606.000000,649.600000,extended,lora,60 +on3,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,82,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,120,1540.000000,82,0,8390.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on0,1,2,24,0,0,0,1679.000000,82,0,-1.000000,722.800000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,363,1543.000000,82,0,22126.000000,642.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,398,1578.000000,83,0,24799.000000,656.800000,extended,lora,60 +on0,1,6,24,0,0,0,2146.000000,83,0,-1.000000,1012.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,900,1540.000000,83,0,56027.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,960,1540.000000,83,0,59317.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,0,1540.000000,83,0,3059.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,1080,1540.000000,83,0,65826.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,540,1540.000000,83,0,32920.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,516,1576.000000,84,0,29134.000000,656.000000,extended,lora,60 +on3,0,0,24,1,0,272,1572.000000,84,0,17597.000000,654.400000,extended,lora,60 +on0,1,6,24,0,0,0,2050.000000,84,0,-1.000000,973.600000,extended,lora,60 +on10,0,0,24,1,0,338,1578.000000,84,0,18640.000000,656.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,479,1599.000000,84,0,27849.000000,665.200000,extended,lora,60 +on7,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 +on2,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,13,1553.000000,84,0,3618.000000,646.800000,extended,lora,60 +on5,0,0,24,1,0,180,1540.000000,84,0,13138.000000,641.600000,extended,lora,60 +on0,1,10,24,0,0,0,2506.000000,85,0,-1.000000,1258.400000,extended,lora,60 +on2,0,0,24,1,0,1320,1540.000000,85,0,81176.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,749,1569.000000,85,0,44628.000000,653.200000,extended,lora,60 +on3,0,0,24,1,0,648,1588.000000,85,0,36235.000000,660.800000,extended,lora,60 +on10,0,0,24,1,0,1172,1572.000000,85,0,71949.000000,654.400000,extended,lora,60 +on4,0,0,24,1,0,28,1568.000000,85,0,3157.000000,652.800000,extended,lora,60 +on9,0,0,24,1,0,151,1571.000000,85,0,8554.000000,654.000000,extended,lora,60 +on11,0,0,24,1,0,445,1565.000000,85,0,27669.000000,651.600000,extended,lora,60 +on8,0,0,24,1,0,872,1572.000000,85,0,52174.000000,654.400000,extended,lora,60 +on12,0,0,24,1,0,540,1540.000000,85,0,35456.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1064,1584.000000,85,0,62107.000000,659.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2152.000000,86,0,-1.000000,1014.400000,extended,lora,60 +on3,0,0,24,1,0,840,1540.000000,86,0,53721.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,300,1540.000000,86,0,18721.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,960,1540.000000,86,0,59509.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,408,1588.000000,86,0,24398.000000,660.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,0,1540.000000,86,0,3594.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,473,1593.000000,86,0,25613.000000,662.800000,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,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1876.000000,87,0,-1.000000,852.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,420,1540.000000,87,0,28512.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1108,1568.000000,87,0,68246.000000,652.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,523,1583.000000,87,0,29693.000000,658.800000,extended,lora,60 +on1,0,0,24,1,0,218,1578.000000,87,0,12268.000000,656.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,241,1541.000000,88,0,17172.000000,642.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,0,1540.000000,88,0,2844.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,143,1563.000000,88,0,10344.000000,650.800000,extended,lora,60 +on0,1,6,24,0,0,0,2136.000000,88,0,-1.000000,1008.000000,extended,lora,60 +on8,0,0,24,1,0,720,1540.000000,88,0,44719.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,840,1540.000000,88,0,52518.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,480,1540.000000,88,0,32019.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on1,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 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1188,1588.000000,89,0,70081.000000,660.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1112,1572.000000,89,0,67467.000000,654.400000,extended,lora,60 +on0,1,5,24,0,0,0,2026.000000,89,0,-1.000000,938.400000,extended,lora,60 +on11,0,0,24,1,0,104,1584.000000,89,0,4724.000000,659.200000,extended,lora,60 +on6,0,0,24,1,0,900,1540.000000,89,0,55329.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,600,1540.000000,89,0,38176.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,540,1540.000000,90,0,32730.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,328,1568.000000,90,0,20932.000000,652.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,240,1540.000000,90,0,14820.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,120,1540.000000,90,0,10520.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,600,1540.000000,90,0,37290.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2638.000000,90,0,-1.000000,1285.600000,extended,lora,60 +on3,0,0,24,1,0,720,1540.000000,90,0,43629.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1218,1558.000000,90,0,73238.000000,648.800000,extended,lora,60 +on12,0,0,24,1,0,1020,1540.000000,90,0,63981.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,780,1540.000000,90,0,49791.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,120,1540.000000,91,0,8525.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,240,1540.000000,91,0,15871.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,339,1579.000000,91,0,18377.000000,657.200000,extended,lora,60 +on6,0,0,24,1,0,540,1540.000000,91,0,35148.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,928,1568.000000,91,0,56487.000000,652.800000,extended,lora,60 +on0,1,7,24,0,0,0,2240.000000,91,0,-1.000000,1075.200000,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 +on3,0,0,24,1,0,1160,1560.000000,91,0,69096.000000,649.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,811,1571.000000,91,0,49623.000000,654.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,91,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 +on4,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 +on7,0,0,24,1,0,1326,1546.000000,92,0,81564.000000,644.000000,extended,lora,60 +on0,1,4,24,0,0,0,1894.000000,92,0,-1.000000,860.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1020,1540.000000,92,0,61900.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,780,1540.000000,92,0,48050.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,707,1587.000000,92,0,41676.000000,660.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,297,1597.000000,93,0,17636.000000,664.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1020,1540.000000,93,0,62558.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,349,1589.000000,93,0,21419.000000,661.200000,extended,lora,60 +on0,1,6,24,0,0,0,2165.000000,93,0,-1.000000,1019.600000,extended,lora,60 +on5,0,0,24,1,0,1080,1540.000000,93,0,67637.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1199,1599.000000,93,0,69950.000000,665.200000,extended,lora,60 +on3,0,0,24,1,0,1200,1540.000000,93,0,74317.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,212,1572.000000,94,0,13585.000000,654.400000,extended,lora,60 +on5,0,0,24,1,0,649,1589.000000,94,0,39576.000000,661.200000,extended,lora,60 +on10,0,0,24,1,0,1020,1540.000000,94,0,64469.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,60,1540.000000,94,0,6062.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2095.000000,94,0,-1.000000,991.600000,extended,lora,60 +on4,0,0,24,1,0,900,1540.000000,94,0,57499.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,418,1598.000000,94,0,22211.000000,664.800000,extended,lora,60 +on12,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 +on6,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1211,1551.000000,95,0,74520.000000,646.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,824,1584.000000,95,0,50407.000000,659.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,730,1550.000000,95,0,46325.000000,645.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,208,1568.000000,95,0,14210.000000,652.800000,extended,lora,60 +on0,1,4,24,0,0,0,1840.000000,95,0,-1.000000,838.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,642,1582.000000,96,0,37666.000000,658.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on2,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,1,0,586,1586.000000,96,0,33476.000000,660.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1220,1560.000000,96,0,73696.000000,649.600000,extended,lora,60 +on10,0,0,24,1,0,22,1562.000000,96,0,3322.000000,650.400000,extended,lora,60 +on7,0,0,24,1,0,960,1540.000000,96,0,60386.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2077.000000,96,0,-1.000000,984.400000,extended,lora,60 +on6,0,0,24,1,0,1260,1540.000000,96,0,77331.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,265,1565.000000,97,0,16699.000000,651.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1080,1540.000000,97,0,67912.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1327,1547.000000,97,0,81695.000000,644.400000,extended,lora,60 +on6,0,0,24,1,0,228,1588.000000,97,0,11177.000000,660.800000,extended,lora,60 +on0,1,5,24,0,0,0,1948.000000,97,0,-1.000000,907.200000,extended,lora,60 +on3,0,0,24,1,0,604,1544.000000,97,0,38652.000000,643.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2041.000000,98,0,-1.000000,944.400000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,240,1540.000000,98,0,15885.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1080,1540.000000,98,0,65761.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,781,1541.000000,98,0,48711.000000,642.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,467,1587.000000,98,0,28489.000000,660.400000,extended,lora,60 +on5,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 +on3,0,0,24,1,0,720,1540.000000,98,0,43476.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,600,1540.000000,99,0,38488.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,300,1540.000000,99,0,20446.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,60,1540.000000,99,0,4404.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,0,1540.000000,99,0,1632.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1045,1565.000000,99,0,63980.000000,651.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,900,1540.000000,99,0,54359.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2421.000000,99,0,-1.000000,1173.200000,extended,lora,60 +on6,0,0,24,1,0,240,1540.000000,99,0,16740.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,999,1579.000000,99,0,58749.000000,657.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,436,1556.000000,100,0,27019.000000,648.000000,extended,lora,60 +on8,0,0,24,1,0,0,1540.000000,100,0,1106.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,116,1596.000000,100,0,5474.000000,664.000000,extended,lora,60 +on3,0,0,24,1,0,840,1540.000000,100,0,53540.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2220.000000,100,0,-1.000000,1067.200000,extended,lora,60 +on12,0,0,24,1,0,1320,1540.000000,100,0,82357.000000,641.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,1,0,700,1580.000000,100,0,39997.000000,657.600000,extended,lora,60 +on10,0,0,24,1,0,380,1560.000000,100,0,24356.000000,649.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1153,1553.000000,101,0,71087.000000,646.800000,extended,lora,60 +on1,0,0,24,1,0,540,1540.000000,101,0,34061.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2244.000000,101,0,-1.000000,1076.800000,extended,lora,60 +on8,0,0,24,1,0,696,1576.000000,101,0,41940.000000,656.000000,extended,lora,60 +on3,0,0,24,1,0,865,1565.000000,101,0,52487.000000,651.600000,extended,lora,60 +on5,0,0,24,1,0,0,1540.000000,101,0,2686.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,802,1562.000000,101,0,50457.000000,650.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on11,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 +on7,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,120,1540.000000,101,0,9995.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1183,1583.000000,102,0,70084.000000,658.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,102,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 +on9,0,0,24,1,0,1261,1541.000000,102,0,78960.000000,642.000000,extended,lora,60 +on5,0,0,24,1,0,540,1540.000000,102,0,35847.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,735,1555.000000,102,0,44559.000000,647.600000,extended,lora,60 +on4,0,0,24,1,0,240,1540.000000,102,0,14817.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2387.000000,102,0,-1.000000,1159.600000,extended,lora,60 +on2,0,0,24,1,0,814,1574.000000,102,0,50230.000000,655.200000,extended,lora,60 +on3,0,0,24,1,0,1320,1540.000000,102,0,80713.000000,641.600000,extended,lora,60 +on7,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 +on6,0,0,24,1,0,420,1540.000000,102,0,26508.000000,641.600000,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,659,1599.000000,103,0,39347.000000,665.200000,extended,lora,60 +on11,0,0,24,1,0,87,1567.000000,103,0,3818.000000,652.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1080,1540.000000,103,0,67550.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,240,1540.000000,103,0,15630.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,145,1565.000000,103,0,10616.000000,651.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2248.000000,103,0,-1.000000,1078.400000,extended,lora,60 +on9,0,0,24,1,0,572,1572.000000,103,0,33193.000000,654.400000,extended,lora,60 +on8,0,0,24,1,0,1295,1575.000000,103,0,76731.000000,655.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,727,1547.000000,104,0,45518.000000,644.400000,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,1,0,35,1575.000000,104,0,1047.000000,655.600000,extended,lora,60 +on0,1,5,24,0,0,0,2001.000000,104,0,-1.000000,928.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,900,1540.000000,104,0,57526.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1162,1562.000000,104,0,69874.000000,650.400000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1020,1540.000000,104,0,64339.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,660,1540.000000,105,0,40804.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1375,1595.000000,105,0,81866.000000,663.600000,extended,lora,60 +on0,1,7,24,0,0,0,2260.000000,105,0,-1.000000,1083.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1200,1540.000000,105,0,73205.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,1025,1545.000000,105,0,61530.000000,643.600000,extended,lora,60 +on5,0,0,24,1,0,540,1540.000000,105,0,35610.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,392,1572.000000,105,0,25054.000000,654.400000,extended,lora,60 +on4,0,0,24,1,0,219,1579.000000,105,0,11742.000000,657.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1325,1545.000000,106,0,82230.000000,643.600000,extended,lora,60 +on0,1,6,24,0,0,0,2056.000000,106,0,-1.000000,976.000000,extended,lora,60 +on4,0,0,24,1,0,960,1540.000000,106,0,58864.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1220,1560.000000,106,0,75401.000000,649.600000,extended,lora,60 +on9,0,0,24,1,0,181,1541.000000,106,0,11879.000000,642.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,60,1540.000000,106,0,5592.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,423,1543.000000,106,0,25552.000000,642.800000,extended,lora,60 +on1,0,0,24,1,0,180,1540.000000,107,0,13056.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,0,1540.000000,107,0,1202.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on4,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 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1852.000000,107,0,-1.000000,817.600000,extended,lora,60 +on7,0,0,24,1,0,1020,1540.000000,107,0,62583.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on6,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 +on2,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 +on4,0,0,24,1,0,1080,1540.000000,108,0,67099.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1020,1540.000000,108,0,63844.000000,641.600000,extended,lora,60 +on6,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 +on11,0,0,24,1,0,600,1540.000000,108,0,37410.000000,641.600000,extended,lora,60 +on1,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 +on10,0,0,24,1,0,60,1540.000000,108,0,5285.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,420,1540.000000,108,0,25890.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2110.000000,108,0,-1.000000,972.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,874,1574.000000,109,0,53924.000000,655.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,540,1540.000000,109,0,34242.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on12,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 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,680,1560.000000,109,0,42920.000000,649.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1888.000000,109,0,-1.000000,857.600000,extended,lora,60 +on11,0,0,24,1,0,120,1540.000000,109,0,7792.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,650,1590.000000,110,0,36866.000000,661.600000,extended,lora,60 +on9,0,0,24,1,0,1221,1561.000000,110,0,73088.000000,650.000000,extended,lora,60 +on5,0,0,24,1,0,494,1554.000000,110,0,30160.000000,647.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,21,1561.000000,110,0,2998.000000,650.000000,extended,lora,60 +on3,0,0,24,1,0,381,1561.000000,110,0,24383.000000,650.000000,extended,lora,60 +on12,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 +on0,1,7,24,0,0,0,2140.000000,110,0,-1.000000,1035.200000,extended,lora,60 +on2,0,0,24,1,0,967,1547.000000,110,0,60965.000000,644.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,123,1543.000000,110,0,8248.000000,642.800000,extended,lora,60 +on2,0,0,24,1,0,1140,1540.000000,111,0,69440.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1923.000000,111,0,-1.000000,871.600000,extended,lora,60 +on4,0,0,24,1,0,721,1541.000000,111,0,44275.000000,642.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,900,1540.000000,111,0,54688.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,111,0,36092.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on1,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 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,900,1540.000000,112,0,55651.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,451,1571.000000,112,0,26170.000000,654.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,391,1571.000000,112,0,22244.000000,654.000000,extended,lora,60 +on2,0,0,24,1,0,840,1540.000000,112,0,50610.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2158.000000,112,0,-1.000000,1016.800000,extended,lora,60 +on6,0,0,24,1,0,530,1590.000000,112,0,30871.000000,661.600000,extended,lora,60 +on7,0,0,24,1,0,0,1540.000000,112,0,2024.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,762,1582.000000,113,0,44380.000000,658.400000,extended,lora,60 +on2,0,0,24,1,0,123,1543.000000,113,0,10322.000000,642.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on1,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 +on10,0,0,24,1,0,655,1595.000000,113,0,38921.000000,663.600000,extended,lora,60 +on4,0,0,24,1,0,861,1561.000000,113,0,51820.000000,650.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1840.000000,113,0,-1.000000,838.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1164,1564.000000,114,0,69798.000000,651.200000,extended,lora,60 +on5,0,0,24,1,0,1077,1597.000000,114,0,62587.000000,664.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,114,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 +on3,0,0,24,1,0,749,1569.000000,114,0,44806.000000,653.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1393,1553.000000,114,0,85512.000000,646.800000,extended,lora,60 +on0,1,5,24,0,0,0,1940.000000,114,0,-1.000000,904.000000,extended,lora,60 +on6,0,0,24,1,0,879,1579.000000,114,0,51639.000000,657.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,540,1540.000000,115,0,32877.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,679,1559.000000,115,0,40782.000000,649.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,164,1584.000000,115,0,7534.000000,659.200000,extended,lora,60 +on11,0,0,24,1,0,606,1546.000000,115,0,39344.000000,644.000000,extended,lora,60 +on1,0,0,24,1,0,89,1569.000000,115,0,3795.000000,653.200000,extended,lora,60 +on7,0,0,24,1,0,960,1540.000000,115,0,59827.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,480,1540.000000,115,0,31887.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,720,1540.000000,115,0,44852.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,300,1540.000000,115,0,18806.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2492.000000,115,0,-1.000000,1227.200000,extended,lora,60 +on1,0,0,24,1,0,512,1572.000000,116,0,29066.000000,654.400000,extended,lora,60 +on6,0,0,24,1,0,574,1574.000000,116,0,35984.000000,655.200000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on3,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 +on5,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,734,1554.000000,116,0,44784.000000,647.200000,extended,lora,60 +on0,1,5,24,0,0,0,1964.000000,116,0,-1.000000,913.600000,extended,lora,60 +on7,0,0,24,1,0,240,1540.000000,116,0,15057.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,95,1575.000000,116,0,5987.000000,655.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,163,1583.000000,117,0,9279.000000,658.800000,extended,lora,60 +on2,0,0,24,1,0,1140,1540.000000,117,0,69525.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1320,1540.000000,117,0,79694.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1080,1540.000000,117,0,67673.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2278.000000,117,0,-1.000000,1090.400000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,840,1540.000000,117,0,51933.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,751,1571.000000,117,0,45044.000000,654.000000,extended,lora,60 +on5,0,0,24,1,0,422,1542.000000,117,0,28408.000000,642.400000,extended,lora,60 +on2,0,0,24,1,0,180,1540.000000,118,0,13571.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,480,1540.000000,118,0,32218.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,lora,60 +on7,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 +on5,0,0,24,1,0,816,1576.000000,118,0,50322.000000,656.000000,extended,lora,60 +on0,1,6,24,0,0,0,2141.000000,118,0,-1.000000,1010.000000,extended,lora,60 +on8,0,0,24,1,0,900,1540.000000,118,0,57652.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,595,1595.000000,118,0,34579.000000,663.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,420,1540.000000,118,0,26103.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,706,1586.000000,119,0,40668.000000,660.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,360,1540.000000,119,0,22319.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1320,1540.000000,119,0,80413.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2117.000000,119,0,-1.000000,1000.400000,extended,lora,60 +on8,0,0,24,1,0,998,1578.000000,119,0,58109.000000,656.800000,extended,lora,60 +on2,0,0,24,1,0,1080,1540.000000,119,0,67000.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,196,1556.000000,119,0,11885.000000,648.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1840.000000,120,0,-1.000000,838.400000,extended,lora,60 +on4,0,0,24,1,0,1301,1581.000000,120,0,76413.000000,658.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on9,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 +on5,0,0,24,1,0,939,1579.000000,120,0,55797.000000,657.200000,extended,lora,60 +on6,0,0,24,1,0,772,1592.000000,120,0,46136.000000,662.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,106,1586.000000,120,0,6704.000000,660.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,677,1557.000000,121,0,39866.000000,648.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1140,1540.000000,121,0,68665.000000,641.600000,extended,lora,60 +on0,1,2,24,0,0,0,1661.000000,121,0,-1.000000,715.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,361,1541.000000,122,0,25106.000000,642.000000,extended,lora,60 +on8,0,0,24,1,0,583,1583.000000,122,0,32888.000000,658.800000,extended,lora,60 +on1,0,0,24,1,0,507,1567.000000,122,0,29404.000000,652.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,703,1583.000000,122,0,41582.000000,658.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1128,1588.000000,122,0,65834.000000,660.800000,extended,lora,60 +on10,0,0,24,1,0,321,1561.000000,122,0,21315.000000,650.000000,extended,lora,60 +on0,1,8,24,0,0,0,2291.000000,122,0,-1.000000,1121.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,783,1543.000000,122,0,50365.000000,642.800000,extended,lora,60 +on7,0,0,24,1,0,180,1540.000000,122,0,14406.000000,641.600000,extended,lora,60 +on8,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 +on6,0,0,24,1,0,600,1540.000000,123,0,36471.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,23,1563.000000,123,0,3415.000000,650.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on10,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 +on9,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 +on1,0,0,24,1,0,120,1540.000000,123,0,8466.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1746.000000,123,0,-1.000000,775.200000,extended,lora,60 +on10,0,0,24,1,0,504,1564.000000,124,0,32451.000000,651.200000,extended,lora,60 +on8,0,0,24,1,0,1438,1598.000000,124,0,83661.000000,664.800000,extended,lora,60 +on0,1,7,24,0,0,0,2152.000000,124,0,-1.000000,1040.000000,extended,lora,60 +on6,0,0,24,1,0,367,1547.000000,124,0,23390.000000,644.400000,extended,lora,60 +on11,0,0,24,1,0,757,1577.000000,124,0,46887.000000,656.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,420,1540.000000,124,0,25834.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,46,1586.000000,124,0,1637.000000,660.000000,extended,lora,60 +on2,0,0,24,1,0,1098,1558.000000,124,0,67126.000000,648.800000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,124,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 +on8,0,0,24,1,0,120,1540.000000,125,0,10765.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2204.000000,125,0,-1.000000,1060.800000,extended,lora,60 +on12,0,0,24,1,0,825,1585.000000,125,0,49283.000000,659.600000,extended,lora,60 +on5,0,0,24,1,0,476,1596.000000,125,0,25536.000000,664.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,191,1551.000000,125,0,11094.000000,646.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,360,1540.000000,125,0,22275.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,279,1579.000000,125,0,15042.000000,657.200000,extended,lora,60 +on4,0,0,24,1,0,511,1571.000000,125,0,31308.000000,654.000000,extended,lora,60 +on0,1,6,24,0,0,0,2130.000000,126,0,-1.000000,1005.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1020,1540.000000,126,0,63737.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,316,1556.000000,126,0,20391.000000,648.000000,extended,lora,60 +on10,0,0,24,1,0,1260,1540.000000,126,0,78139.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,259,1559.000000,126,0,15177.000000,649.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1080,1540.000000,126,0,68383.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,907,1547.000000,126,0,54747.000000,644.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,418,1598.000000,127,0,23155.000000,664.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1200,1540.000000,127,0,74202.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1026,1546.000000,127,0,63264.000000,644.000000,extended,lora,60 +on2,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 +on3,0,0,24,1,0,282,1582.000000,127,0,15018.000000,658.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,341,1581.000000,127,0,18842.000000,658.000000,extended,lora,60 +on8,0,0,24,1,0,1080,1540.000000,127,0,68167.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1380,1540.000000,127,0,85998.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2212.000000,127,0,-1.000000,1064.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,0,1540.000000,128,0,1690.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,720,1540.000000,128,0,44576.000000,641.600000,extended,lora,60 +on4,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 +on5,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,90,1570.000000,128,0,5599.000000,653.600000,extended,lora,60 +on10,0,0,24,1,0,911,1551.000000,128,0,55673.000000,646.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,829,1589.000000,128,0,48326.000000,661.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1021,1541.000000,128,0,63958.000000,642.000000,extended,lora,60 +on12,0,0,24,1,0,840,1540.000000,128,0,51764.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2255.000000,128,0,-1.000000,1081.200000,extended,lora,60 +on8,0,0,24,1,0,240,1540.000000,129,0,15127.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2240.000000,129,0,-1.000000,1075.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,822,1582.000000,129,0,49086.000000,658.400000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,129,0,6277.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,204,1564.000000,129,0,14091.000000,651.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,540,1540.000000,129,0,33418.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1103,1563.000000,129,0,68256.000000,650.800000,extended,lora,60 +on1,0,0,24,1,0,17,1557.000000,129,0,395.000000,648.400000,extended,lora,60 +on9,0,0,24,1,0,0,1540.000000,130,0,1485.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,660,1540.000000,130,0,41470.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,1288,1568.000000,130,0,78071.000000,652.800000,extended,lora,60 +on10,0,0,24,1,0,145,1565.000000,130,0,7391.000000,651.600000,extended,lora,60 +on11,0,0,24,1,0,540,1540.000000,130,0,34348.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,lora,60 +on0,1,8,24,0,0,0,2352.000000,130,0,-1.000000,1145.600000,extended,lora,60 +on5,0,0,24,1,0,243,1543.000000,130,0,16065.000000,642.800000,extended,lora,60 +on12,0,0,24,1,0,322,1562.000000,130,0,18336.000000,650.400000,extended,lora,60 +on7,0,0,24,1,0,720,1540.000000,130,0,44296.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,703,1583.000000,131,0,40321.000000,658.800000,extended,lora,60 +on4,0,0,24,1,0,900,1540.000000,131,0,54383.000000,641.600000,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,131,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1080,1540.000000,131,0,66289.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,1380,1540.000000,131,0,85246.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2345.000000,131,0,-1.000000,1142.800000,extended,lora,60 +on1,0,0,24,1,0,290,1590.000000,131,0,15564.000000,661.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,540,1540.000000,131,0,33083.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,650,1590.000000,131,0,39539.000000,661.600000,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,474,1594.000000,131,0,25502.000000,663.200000,extended,lora,60 +on0,1,4,24,0,0,0,1908.000000,132,0,-1.000000,865.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,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 +on5,0,0,24,1,0,1200,1540.000000,132,0,74205.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,900,1540.000000,132,0,54713.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,729,1549.000000,132,0,46486.000000,645.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1020,1540.000000,132,0,61971.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,688,1568.000000,133,0,40420.000000,652.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,240,1540.000000,133,0,16691.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,835,1595.000000,133,0,49431.000000,663.600000,extended,lora,60 +on4,0,0,24,1,0,840,1540.000000,133,0,52973.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2330.000000,133,0,-1.000000,1136.800000,extended,lora,60 +on6,0,0,24,1,0,1336,1556.000000,133,0,82452.000000,648.000000,extended,lora,60 +on12,0,0,24,1,0,180,1540.000000,133,0,13105.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,173,1593.000000,133,0,7675.000000,662.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1159,1559.000000,133,0,69640.000000,649.200000,extended,lora,60 +on7,0,0,24,1,0,420,1540.000000,134,0,26893.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,0,1540.000000,134,0,1799.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1973.000000,134,0,-1.000000,891.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1320,1540.000000,134,0,81093.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,240,1540.000000,134,0,15898.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,57,1597.000000,135,0,581.000000,664.400000,extended,lora,60 +on11,0,0,24,1,0,1080,1540.000000,135,0,67604.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2014.000000,135,0,-1.000000,933.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,900,1540.000000,135,0,55764.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,1260,1540.000000,135,0,78865.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,191,1551.000000,135,0,11215.000000,646.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,60,1540.000000,136,0,5068.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1320,1540.000000,136,0,81767.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,0,1540.000000,136,0,967.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2113.000000,136,0,-1.000000,998.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1050,1570.000000,136,0,62255.000000,653.600000,extended,lora,60 +on10,0,0,24,1,0,240,1540.000000,136,0,17680.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,480,1540.000000,136,0,32253.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1770.000000,137,0,-1.000000,784.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,432,1552.000000,137,0,25462.000000,646.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,355,1595.000000,137,0,20119.000000,663.600000,extended,lora,60 +on2,0,0,24,1,0,240,1540.000000,137,0,17820.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,540,1540.000000,138,0,33074.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,420,1540.000000,138,0,28862.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1424,1584.000000,138,0,84127.000000,659.200000,extended,lora,60 +on0,1,7,24,0,0,0,2204.000000,138,0,-1.000000,1060.800000,extended,lora,60 +on7,0,0,24,1,0,804,1564.000000,138,0,47939.000000,651.200000,extended,lora,60 +on2,0,0,24,1,0,188,1548.000000,138,0,11670.000000,644.800000,extended,lora,60 +on4,0,0,24,1,0,701,1581.000000,138,0,41709.000000,658.000000,extended,lora,60 +on1,0,0,24,1,0,1222,1562.000000,138,0,73408.000000,650.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,478,1598.000000,139,0,28868.000000,664.800000,extended,lora,60 +on3,0,0,24,1,0,840,1540.000000,139,0,51365.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,lora,60 +on9,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 +on0,1,6,24,0,0,0,2102.000000,139,0,-1.000000,994.400000,extended,lora,60 +on6,0,0,24,1,0,1020,1540.000000,139,0,62125.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,99,1579.000000,139,0,7274.000000,657.200000,extended,lora,60 +on4,0,0,24,1,0,780,1540.000000,139,0,47119.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1277,1557.000000,139,0,77638.000000,648.400000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,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 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,600,1540.000000,140,0,37388.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1075,1595.000000,140,0,63115.000000,663.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on3,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 +on6,0,0,24,1,0,60,1540.000000,140,0,3780.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1398,1558.000000,140,0,85987.000000,648.800000,extended,lora,60 +on0,1,4,24,0,0,0,1860.000000,140,0,-1.000000,846.400000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,141,0,6616.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,1064,1584.000000,141,0,63209.000000,659.200000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,982,1562.000000,141,0,59766.000000,650.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1959.000000,141,0,-1.000000,911.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on7,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 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,900,1540.000000,141,0,55060.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,886,1586.000000,141,0,52349.000000,660.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1200,1540.000000,142,0,73687.000000,641.600000,extended,lora,60 +on7,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,1,0,1172,1572.000000,142,0,70360.000000,654.400000,extended,lora,60 +on12,0,0,24,1,0,1380,1540.000000,142,0,83979.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2254.000000,142,0,-1.000000,1080.800000,extended,lora,60 +on6,0,0,24,1,0,727,1547.000000,142,0,46663.000000,644.400000,extended,lora,60 +on11,0,0,24,1,0,840,1540.000000,142,0,51032.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,409,1589.000000,142,0,24530.000000,661.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,600,1540.000000,142,0,38924.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,615,1555.000000,143,0,39168.000000,647.600000,extended,lora,60 +on6,0,0,24,1,0,892,1592.000000,143,0,52608.000000,662.400000,extended,lora,60 +on1,0,0,24,1,0,180,1540.000000,143,0,14057.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,525,1585.000000,143,0,32377.000000,659.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1140,1540.000000,143,0,70204.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2218.000000,143,0,-1.000000,1066.400000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,63,1543.000000,143,0,6180.000000,642.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,660,1540.000000,143,0,40973.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1020,1540.000000,144,0,64781.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2509.000000,144,0,-1.000000,1234.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,360,1540.000000,144,0,23388.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,231,1591.000000,144,0,13427.000000,662.000000,extended,lora,60 +on7,0,0,24,1,0,114,1594.000000,144,0,4734.000000,663.200000,extended,lora,60 +on2,0,0,24,1,0,840,1540.000000,144,0,53345.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,963,1543.000000,144,0,61005.000000,642.800000,extended,lora,60 +on12,0,0,24,1,0,1237,1577.000000,144,0,75334.000000,656.400000,extended,lora,60 +on11,0,0,24,1,0,120,1540.000000,144,0,10456.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,0,1540.000000,144,0,988.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1200,1540.000000,145,0,74498.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,780,1540.000000,145,0,48856.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,982,1562.000000,145,0,57977.000000,650.400000,extended,lora,60 +on2,0,0,24,1,0,420,1540.000000,145,0,25811.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,687,1567.000000,145,0,42609.000000,652.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,770,1590.000000,145,0,44219.000000,661.600000,extended,lora,60 +on0,1,6,24,0,0,0,2171.000000,145,0,-1.000000,1022.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,600,1540.000000,146,0,36956.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,840,1540.000000,146,0,52800.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,53,1593.000000,146,0,3048.000000,662.800000,extended,lora,60 +on2,0,0,24,1,0,753,1573.000000,146,0,46605.000000,654.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,195,1555.000000,146,0,11212.000000,647.600000,extended,lora,60 +on10,0,0,24,1,0,120,1540.000000,146,0,8398.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2370.000000,146,0,-1.000000,1152.800000,extended,lora,60 +on4,0,0,24,1,0,932,1572.000000,146,0,56747.000000,654.400000,extended,lora,60 +on6,0,0,24,1,0,300,1540.000000,146,0,21254.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,240,1540.000000,147,0,15310.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1365,1585.000000,147,0,79566.000000,659.600000,extended,lora,60 +on6,0,0,24,1,0,120,1540.000000,147,0,8154.000000,641.600000,extended,lora,60 +on2,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,8,24,0,0,0,2325.000000,147,0,-1.000000,1134.800000,extended,lora,60 +on5,0,0,24,1,0,840,1540.000000,147,0,52193.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,774,1594.000000,147,0,44739.000000,663.200000,extended,lora,60 +on10,0,0,24,1,0,990,1570.000000,147,0,58507.000000,653.600000,extended,lora,60 +on12,0,0,24,1,0,785,1545.000000,147,0,47660.000000,643.600000,extended,lora,60 +on7,0,0,24,1,0,226,1586.000000,147,0,14172.000000,660.000000,extended,lora,60 +on12,0,0,24,1,0,300,1540.000000,148,0,19062.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,480,1540.000000,148,0,31063.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1951.000000,148,0,-1.000000,908.400000,extended,lora,60 +on3,0,0,24,1,0,1344,1564.000000,148,0,81507.000000,651.200000,extended,lora,60 +on4,0,0,24,1,0,998,1578.000000,148,0,58808.000000,656.800000,extended,lora,60 +on2,0,0,24,1,0,218,1578.000000,148,0,14194.000000,656.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1020,1540.000000,149,0,61473.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,111,1591.000000,149,0,6672.000000,662.000000,extended,lora,60 +on11,0,0,24,1,0,1140,1540.000000,149,0,68900.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,660,1540.000000,149,0,41085.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1273,1553.000000,149,0,77850.000000,646.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,360,1540.000000,149,0,22128.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2227.000000,149,0,-1.000000,1044.400000,extended,lora,60 +on2,0,0,24,1,0,540,1540.000000,150,0,33026.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,0,1540.000000,150,0,277.000000,641.600000,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,220,1580.000000,150,0,11279.000000,657.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,600,1540.000000,150,0,37743.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,300,1540.000000,150,0,21313.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1272,1552.000000,150,0,78949.000000,646.400000,extended,lora,60 +on0,1,7,24,0,0,0,2258.000000,150,0,-1.000000,1082.400000,extended,lora,60 +on1,0,0,24,1,0,728,1548.000000,150,0,43787.000000,644.800000,extended,lora,60 +on11,0,0,24,1,0,167,1587.000000,151,0,8475.000000,660.400000,extended,lora,60 +on5,0,0,24,1,0,1140,1540.000000,151,0,69233.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1020,1540.000000,151,0,63263.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,840,1540.000000,151,0,51354.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2076.000000,151,0,-1.000000,958.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1320,1540.000000,151,0,82184.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,372,1552.000000,152,0,22148.000000,646.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,60,1540.000000,152,0,7227.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1020,1540.000000,152,0,63324.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,19,1559.000000,152,0,3490.000000,649.200000,extended,lora,60 +on0,1,6,24,0,0,0,2123.000000,152,0,-1.000000,1002.800000,extended,lora,60 +on4,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 +on12,0,0,24,1,0,1153,1553.000000,152,0,70229.000000,646.800000,extended,lora,60 +on7,0,0,24,1,0,462,1582.000000,152,0,26984.000000,658.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,152,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 +on0,1,8,24,0,0,0,2314.000000,153,0,-1.000000,1130.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,136,1556.000000,153,0,8143.000000,648.000000,extended,lora,60 +on4,0,0,24,1,0,960,1540.000000,153,0,58737.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,780,1540.000000,153,0,49141.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,15,1555.000000,153,0,569.000000,647.600000,extended,lora,60 +on3,0,0,24,1,0,1239,1579.000000,153,0,74978.000000,657.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,287,1587.000000,153,0,16513.000000,660.400000,extended,lora,60 +on2,0,0,24,1,0,873,1573.000000,153,0,52062.000000,654.800000,extended,lora,60 +on9,0,0,24,1,0,1031,1551.000000,153,0,62441.000000,646.000000,extended,lora,60 +on9,0,0,24,1,0,1299,1579.000000,154,0,77439.000000,657.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2198.000000,154,0,-1.000000,1058.400000,extended,lora,60 +on6,0,0,24,1,0,0,1540.000000,154,0,830.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,660,1540.000000,154,0,43276.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1237,1577.000000,154,0,72828.000000,656.400000,extended,lora,60 +on4,0,0,24,1,0,159,1579.000000,154,0,9066.000000,657.200000,extended,lora,60 +on7,0,0,24,1,0,240,1540.000000,154,0,15403.000000,641.600000,extended,lora,60 +on3,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,1,0,840,1540.000000,154,0,53727.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,540,1540.000000,155,0,32890.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,168,1588.000000,155,0,8054.000000,660.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1989.000000,155,0,-1.000000,923.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,224,1584.000000,155,0,12202.000000,659.200000,extended,lora,60 +on6,0,0,24,1,0,900,1540.000000,155,0,56110.000000,641.600000,extended,lora,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1025,1545.000000,155,0,63862.000000,643.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2058.000000,156,0,-1.000000,951.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,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,1,0,46,1586.000000,156,0,2152.000000,660.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,780,1540.000000,156,0,49789.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,120,1540.000000,156,0,7896.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,156,0,4426.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1080,1540.000000,156,0,65686.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1084,1544.000000,157,0,68404.000000,643.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1020,1540.000000,157,0,63346.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,960,1540.000000,157,0,59800.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,600,1540.000000,157,0,36912.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2141.000000,157,0,-1.000000,1010.000000,extended,lora,60 +on12,0,0,24,1,0,56,1596.000000,157,0,1706.000000,664.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,320,1560.000000,157,0,21658.000000,649.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1140,1540.000000,158,0,71636.000000,641.600000,extended,lora,60 +on9,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 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,649,1589.000000,158,0,38978.000000,661.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,120,1540.000000,158,0,9447.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,908,1548.000000,158,0,56024.000000,644.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1928.000000,158,0,-1.000000,873.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,240,1540.000000,159,0,15876.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,120,1540.000000,159,0,7673.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,113,1593.000000,159,0,4485.000000,662.800000,extended,lora,60 +on12,0,0,24,1,0,671,1551.000000,159,0,42105.000000,646.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2194.000000,159,0,-1.000000,1056.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1289,1569.000000,159,0,78080.000000,653.200000,extended,lora,60 +on2,0,0,24,1,0,357,1597.000000,159,0,20867.000000,664.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,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,1018,1598.000000,159,0,59026.000000,664.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,160,0,6077.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,660,1540.000000,160,0,41563.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1260,1540.000000,160,0,78466.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,420,1540.000000,160,0,26562.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2263.000000,160,0,-1.000000,1084.400000,extended,lora,60 +on2,0,0,24,1,0,35,1575.000000,160,0,2135.000000,655.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,618,1558.000000,160,0,37605.000000,648.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,480,1540.000000,160,0,29225.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,160,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 +on1,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,360,1540.000000,161,0,22337.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1320,1540.000000,161,0,80610.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,888,1588.000000,161,0,51106.000000,660.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,420,1540.000000,161,0,28642.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2020.000000,161,0,-1.000000,936.000000,extended,lora,60 +on11,0,0,24,1,0,600,1540.000000,161,0,38807.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,720,1540.000000,162,0,45613.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2527.000000,162,0,-1.000000,1241.200000,extended,lora,60 +on11,0,0,24,1,0,300,1540.000000,162,0,19427.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,556,1556.000000,162,0,34349.000000,648.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,660,1540.000000,162,0,39859.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,8,1548.000000,162,0,3197.000000,644.800000,extended,lora,60 +on3,0,0,24,1,0,808,1568.000000,162,0,47022.000000,652.800000,extended,lora,60 +on1,0,0,24,1,0,1016,1596.000000,162,0,60113.000000,664.000000,extended,lora,60 +on4,0,0,24,1,0,900,1540.000000,162,0,56123.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,420,1540.000000,162,0,26713.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,163,0,6560.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,520,1580.000000,163,0,32087.000000,657.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1041,1561.000000,163,0,64621.000000,650.000000,extended,lora,60 +on9,0,0,24,1,0,334,1574.000000,163,0,19322.000000,655.200000,extended,lora,60 +on12,0,0,24,1,0,867,1567.000000,163,0,52664.000000,652.400000,extended,lora,60 +on7,0,0,24,1,0,360,1540.000000,163,0,24449.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,163,0,85528.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2265.000000,163,0,-1.000000,1085.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,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,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,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,865,1565.000000,164,0,51076.000000,651.600000,extended,lora,60 +on0,1,5,24,0,0,0,1955.000000,164,0,-1.000000,910.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,280,1580.000000,164,0,16991.000000,657.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,720,1540.000000,164,0,45198.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,926,1566.000000,164,0,55822.000000,652.000000,extended,lora,60 +on8,0,0,24,1,0,60,1540.000000,164,0,5586.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,452,1572.000000,165,0,26343.000000,654.400000,extended,lora,60 +on6,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 +on1,0,0,24,1,0,480,1540.000000,165,0,30459.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,83,1563.000000,165,0,6002.000000,650.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,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,1,0,1417,1577.000000,165,0,85948.000000,656.400000,extended,lora,60 +on0,1,4,24,0,0,0,1897.000000,165,0,-1.000000,861.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,600,1540.000000,166,0,36467.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,702,1582.000000,166,0,40404.000000,658.400000,extended,lora,60 +on10,0,0,24,1,0,977,1557.000000,166,0,61219.000000,648.400000,extended,lora,60 +on11,0,0,24,1,0,1020,1540.000000,166,0,63668.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,209,1569.000000,166,0,11329.000000,653.200000,extended,lora,60 +on12,0,0,24,1,0,791,1551.000000,166,0,49470.000000,646.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2185.000000,166,0,-1.000000,1053.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,23,1563.000000,166,0,403.000000,650.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1270,1550.000000,167,0,76705.000000,645.600000,extended,lora,60 +on5,0,0,24,1,0,87,1567.000000,167,0,6969.000000,652.400000,extended,lora,60 +on3,0,0,24,1,0,120,1540.000000,167,0,9730.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,952,1592.000000,167,0,57073.000000,662.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2093.000000,167,0,-1.000000,990.800000,extended,lora,60 +on1,0,0,24,1,0,607,1547.000000,167,0,39472.000000,644.400000,extended,lora,60 +on2,0,0,24,1,0,1140,1540.000000,167,0,70689.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2018.000000,168,0,-1.000000,935.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,660,1540.000000,168,0,41358.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,1020,1540.000000,168,0,61606.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,169,1589.000000,168,0,8622.000000,661.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,88,1568.000000,168,0,6572.000000,652.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,720,1540.000000,168,0,44296.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,117,1597.000000,169,0,6922.000000,664.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1080,1540.000000,169,0,66181.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,284,1584.000000,169,0,17672.000000,659.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1368,1588.000000,169,0,81798.000000,660.800000,extended,lora,60 +on6,0,0,24,1,0,161,1581.000000,169,0,10344.000000,658.000000,extended,lora,60 +on0,1,6,24,0,0,0,2070.000000,169,0,-1.000000,981.600000,extended,lora,60 +on9,0,0,24,1,0,379,1559.000000,169,0,25293.000000,649.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,169,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 +on2,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,960,1540.000000,170,0,60591.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,100,1580.000000,170,0,5341.000000,657.600000,extended,lora,60 +on0,1,5,24,0,0,0,2025.000000,170,0,-1.000000,938.000000,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 +on1,0,0,24,1,0,600,1540.000000,170,0,36887.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,1307,1587.000000,170,0,76304.000000,660.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,120,1540.000000,170,0,8672.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,720,1540.000000,171,0,44082.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,420,1540.000000,171,0,28473.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,lora,60 +on8,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 +on11,0,0,24,1,0,1414,1574.000000,171,0,84842.000000,655.200000,extended,lora,60 +on0,1,6,24,0,0,0,2171.000000,171,0,-1.000000,1022.000000,extended,lora,60 +on6,0,0,24,1,0,643,1583.000000,171,0,38567.000000,658.800000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,210,1570.000000,171,0,11262.000000,653.600000,extended,lora,60 +on4,0,0,24,1,0,1140,1540.000000,171,0,69915.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1320,1540.000000,172,0,79711.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,634,1574.000000,172,0,37884.000000,655.200000,extended,lora,60 +on8,0,0,24,1,0,1005,1585.000000,172,0,58132.000000,659.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2078.000000,172,0,-1.000000,984.800000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1140,1540.000000,172,0,69953.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,87,1567.000000,172,0,7171.000000,652.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,201,1561.000000,172,0,11524.000000,650.000000,extended,lora,60 +on0,1,5,24,0,0,0,2002.000000,173,0,-1.000000,928.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,930,1570.000000,173,0,54238.000000,653.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,480,1540.000000,173,0,29340.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,147,1567.000000,173,0,8359.000000,652.400000,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,220,1580.000000,173,0,13448.000000,657.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,173,0,34349.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,960,1540.000000,174,0,61111.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,720,1540.000000,174,0,46683.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,240,1540.000000,174,0,14783.000000,641.600000,extended,lora,60 +on7,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,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,327,1567.000000,174,0,18492.000000,652.400000,extended,lora,60 +on1,0,0,24,1,0,1320,1540.000000,174,0,82852.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2149.000000,174,0,-1.000000,1013.200000,extended,lora,60 +on2,0,0,24,1,0,714,1594.000000,174,0,40039.000000,663.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,175,0,3875.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2076.000000,175,0,-1.000000,958.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,0,1540.000000,175,0,2804.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,660,1540.000000,175,0,42333.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,300,1540.000000,175,0,18943.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,780,1540.000000,175,0,50297.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1320,1540.000000,176,0,82577.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,949,1589.000000,176,0,57590.000000,661.200000,extended,lora,60 +on0,1,6,24,0,0,0,2119.000000,176,0,-1.000000,1001.200000,extended,lora,60 +on4,0,0,24,1,0,468,1588.000000,176,0,25410.000000,660.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,660,1540.000000,176,0,40037.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,646,1586.000000,176,0,36797.000000,660.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,133,1553.000000,176,0,7753.000000,646.800000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,685,1565.000000,177,0,41991.000000,651.600000,extended,lora,60 +on2,0,0,24,1,0,191,1551.000000,177,0,12556.000000,646.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,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,240,1540.000000,177,0,16934.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,830,1590.000000,177,0,49696.000000,661.600000,extended,lora,60 +on6,0,0,24,1,0,401,1581.000000,177,0,21832.000000,658.000000,extended,lora,60 +on9,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,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1956.000000,177,0,-1.000000,910.400000,extended,lora,60 +on0,1,5,24,0,0,0,2044.000000,178,0,-1.000000,945.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,720,1540.000000,178,0,44733.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,600,1540.000000,178,0,38793.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,300,1540.000000,178,0,20976.000000,641.600000,extended,lora,60 +on9,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 +on3,0,0,24,1,0,124,1544.000000,178,0,9956.000000,643.200000,extended,lora,60 +on12,0,0,24,1,0,240,1540.000000,178,0,16312.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,28,1568.000000,179,0,578.000000,652.800000,extended,lora,60 +on2,0,0,24,1,0,540,1540.000000,179,0,35502.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,120,1540.000000,179,0,9230.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2154.000000,179,0,-1.000000,1015.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,883,1583.000000,179,0,53005.000000,658.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1245,1585.000000,179,0,72355.000000,659.600000,extended,lora,60 +on9,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 +on6,0,0,24,1,0,240,1540.000000,179,0,17875.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,102,1582.000000,180,0,4385.000000,658.400000,extended,lora,60 +on10,0,0,24,1,0,0,1540.000000,180,0,3279.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,360,1540.000000,180,0,25085.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,482,1542.000000,180,0,31951.000000,642.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,300,1540.000000,180,0,20238.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,540,1540.000000,180,0,35649.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,931,1571.000000,180,0,54811.000000,654.000000,extended,lora,60 +on0,1,8,24,0,0,0,2384.000000,180,0,-1.000000,1158.400000,extended,lora,60 +on8,0,0,24,1,0,1155,1555.000000,180,0,68693.000000,647.600000,extended,lora,60 +on0,1,8,24,0,0,0,2275.000000,181,0,-1.000000,1114.800000,extended,lora,60 +on2,0,0,24,1,0,0,1540.000000,181,0,811.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,597,1597.000000,181,0,32931.000000,664.400000,extended,lora,60 +on5,0,0,24,1,0,676,1556.000000,181,0,43132.000000,648.000000,extended,lora,60 +on3,0,0,24,1,0,641,1581.000000,181,0,38102.000000,658.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,391,1571.000000,181,0,22673.000000,654.000000,extended,lora,60 +on4,0,0,24,1,0,519,1579.000000,181,0,31272.000000,657.200000,extended,lora,60 +on7,0,0,24,1,0,60,1540.000000,181,0,5360.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,1264,1544.000000,181,0,75959.000000,643.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1020,1540.000000,182,0,63326.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,360,1540.000000,182,0,23415.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,lora,60 +on0,1,8,24,0,0,0,2441.000000,182,0,-1.000000,1181.200000,extended,lora,60 +on6,0,0,24,1,0,780,1540.000000,182,0,47726.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,180,1540.000000,182,0,12179.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,540,1540.000000,182,0,34662.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1145,1545.000000,182,0,68955.000000,643.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,879,1579.000000,182,0,51501.000000,657.200000,extended,lora,60 +on9,0,0,24,1,0,314,1554.000000,182,0,19631.000000,647.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1943.000000,183,0,-1.000000,879.600000,extended,lora,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1140,1540.000000,183,0,71472.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,186,1546.000000,183,0,13896.000000,644.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,420,1540.000000,183,0,26200.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,600,1540.000000,183,0,39223.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,768,1588.000000,184,0,45443.000000,660.800000,extended,lora,60 +on12,0,0,24,1,0,221,1581.000000,184,0,12206.000000,658.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,704,1584.000000,184,0,43154.000000,659.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,900,1540.000000,184,0,55461.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,873,1573.000000,184,0,54060.000000,654.800000,extended,lora,60 +on0,1,5,24,0,0,0,1989.000000,184,0,-1.000000,923.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,180,1540.000000,185,0,11779.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,261,1561.000000,185,0,17740.000000,650.000000,extended,lora,60 +on10,0,0,24,1,0,60,1540.000000,185,0,7112.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,825,1585.000000,185,0,47284.000000,659.600000,extended,lora,60 +on12,0,0,24,1,0,1382,1542.000000,185,0,85440.000000,642.400000,extended,lora,60 +on0,1,7,24,0,0,0,2228.000000,185,0,-1.000000,1070.400000,extended,lora,60 +on1,0,0,24,1,0,569,1569.000000,185,0,33978.000000,653.200000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,480,1540.000000,185,0,29127.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,1,0,60,1540.000000,186,0,5452.000000,641.600000,extended,lora,60 +on0,1,10,24,0,0,0,2594.000000,186,0,-1.000000,1293.600000,extended,lora,60 +on4,0,0,24,1,0,854,1554.000000,186,0,53951.000000,647.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,720,1540.000000,186,0,46756.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,360,1540.000000,186,0,24210.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,330,1570.000000,186,0,20547.000000,653.600000,extended,lora,60 +on2,0,0,24,1,0,519,1579.000000,186,0,29607.000000,657.200000,extended,lora,60 +on5,0,0,24,1,0,1200,1540.000000,186,0,73183.000000,641.600000,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,1,0,243,1543.000000,186,0,16414.000000,642.800000,extended,lora,60 +on1,0,0,24,1,0,20,1560.000000,186,0,1218.000000,649.600000,extended,lora,60 +on10,0,0,24,1,0,120,1540.000000,186,0,8277.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,13,1553.000000,187,0,1300.000000,646.800000,extended,lora,60 +on0,1,7,24,0,0,0,2140.000000,187,0,-1.000000,1035.200000,extended,lora,60 +on11,0,0,24,1,0,782,1542.000000,187,0,49389.000000,642.400000,extended,lora,60 +on4,0,0,24,1,0,885,1585.000000,187,0,53233.000000,659.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1322,1542.000000,187,0,80973.000000,642.400000,extended,lora,60 +on1,0,0,24,1,0,951,1591.000000,187,0,56411.000000,662.000000,extended,lora,60 +on7,0,0,24,1,0,575,1575.000000,187,0,34970.000000,655.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,259,1559.000000,187,0,17819.000000,649.200000,extended,lora,60 +on7,0,0,24,1,0,1260,1540.000000,188,0,78300.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,480,1540.000000,188,0,30320.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,120,1540.000000,188,0,8385.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,1380,1540.000000,188,0,84207.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2361.000000,188,0,-1.000000,1149.200000,extended,lora,60 +on1,0,0,24,1,0,420,1540.000000,188,0,25532.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1048,1568.000000,188,0,61851.000000,652.800000,extended,lora,60 +on5,0,0,24,1,0,1080,1540.000000,188,0,67177.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,21,1561.000000,188,0,1478.000000,650.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,480,1540.000000,189,0,31898.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1959.000000,189,0,-1.000000,911.600000,extended,lora,60 +on7,0,0,24,1,0,748,1568.000000,189,0,45989.000000,652.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,271,1571.000000,189,0,15396.000000,654.000000,extended,lora,60 +on3,0,0,24,1,0,1240,1580.000000,189,0,74053.000000,657.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,189,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 +on2,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 +on10,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1147,1547.000000,189,0,69485.000000,644.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2087.000000,190,0,-1.000000,962.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,660,1540.000000,190,0,42520.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,1,0,420,1540.000000,190,0,28084.000000,641.600000,extended,lora,60 +on7,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 +on9,0,0,24,1,0,240,1540.000000,190,0,16309.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,300,1540.000000,190,0,18813.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,220,1580.000000,190,0,11761.000000,657.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2042.000000,191,0,-1.000000,944.800000,extended,lora,60 +on3,0,0,24,1,0,364,1544.000000,191,0,23745.000000,643.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1260,1540.000000,191,0,76846.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,180,1540.000000,191,0,11820.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,480,1540.000000,191,0,29970.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,780,1540.000000,191,0,47684.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,73,1553.000000,192,0,3893.000000,646.800000,extended,lora,60 +on12,0,0,24,1,0,840,1540.000000,192,0,52636.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1784.000000,192,0,-1.000000,790.400000,extended,lora,60 +on5,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,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,316,1556.000000,192,0,19186.000000,648.000000,extended,lora,60 +on1,0,0,24,1,0,360,1540.000000,193,0,22777.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,180,1540.000000,193,0,13166.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,17,1557.000000,193,0,1971.000000,648.400000,extended,lora,60 +on11,0,0,24,1,0,720,1540.000000,193,0,46390.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,601,1541.000000,193,0,37306.000000,642.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,780,1540.000000,193,0,48683.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,309,1549.000000,193,0,19336.000000,645.200000,extended,lora,60 +on0,1,7,24,0,0,0,2246.000000,193,0,-1.000000,1077.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,474,1594.000000,194,0,27379.000000,663.200000,extended,lora,60 +on0,1,4,24,0,0,0,1932.000000,194,0,-1.000000,875.200000,extended,lora,60 +on8,0,0,24,1,0,27,1567.000000,194,0,860.000000,652.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,480,1540.000000,194,0,31973.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,60,1540.000000,194,0,6459.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,600,1540.000000,195,0,36835.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,529,1589.000000,195,0,29843.000000,661.200000,extended,lora,60 +on10,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,49,1589.000000,195,0,1789.000000,661.200000,extended,lora,60 +on4,0,0,24,1,0,300,1540.000000,195,0,20212.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2163.000000,195,0,-1.000000,1018.800000,extended,lora,60 +on3,0,0,24,1,0,420,1540.000000,195,0,27790.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,853,1553.000000,195,0,51773.000000,646.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,360,1540.000000,196,0,23594.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,660,1540.000000,196,0,43239.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on0,1,8,24,0,0,0,2428.000000,196,0,-1.000000,1176.000000,extended,lora,60 +on12,0,0,24,1,0,1140,1540.000000,196,0,71251.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,191,1551.000000,196,0,12601.000000,646.000000,extended,lora,60 +on9,0,0,24,1,0,1227,1567.000000,196,0,73187.000000,652.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,269,1569.000000,196,0,14876.000000,653.200000,extended,lora,60 +on5,0,0,24,1,0,300,1540.000000,196,0,19304.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,0,1540.000000,196,0,2246.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2069.000000,197,0,-1.000000,981.200000,extended,lora,60 +on6,0,0,24,1,0,449,1569.000000,197,0,26642.000000,653.200000,extended,lora,60 +on9,0,0,24,1,0,1082,1542.000000,197,0,68125.000000,642.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,804,1564.000000,197,0,49799.000000,651.200000,extended,lora,60 +on1,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 +on10,0,0,24,1,0,298,1598.000000,197,0,17810.000000,664.800000,extended,lora,60 +on2,0,0,24,1,0,660,1540.000000,197,0,42067.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1183,1583.000000,197,0,70834.000000,658.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,477,1597.000000,198,0,28728.000000,664.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,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,300,1540.000000,198,0,19371.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1098,1558.000000,198,0,68216.000000,648.800000,extended,lora,60 +on11,0,0,24,1,0,1424,1584.000000,198,0,85670.000000,659.200000,extended,lora,60 +on0,1,5,24,0,0,0,1968.000000,198,0,-1.000000,915.200000,extended,lora,60 +on4,0,0,24,1,0,1071,1591.000000,198,0,63360.000000,662.000000,extended,lora,60 +on5,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 +on0,1,7,24,0,0,0,2197.000000,199,0,-1.000000,1058.000000,extended,lora,60 +on9,0,0,24,1,0,960,1540.000000,199,0,60064.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,824,1584.000000,199,0,47355.000000,659.200000,extended,lora,60 +on5,0,0,24,1,0,114,1594.000000,199,0,3945.000000,663.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,509,1569.000000,199,0,31649.000000,653.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,240,1540.000000,199,0,15756.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,634,1574.000000,199,0,37748.000000,655.200000,extended,lora,60 +on4,0,0,24,1,0,123,1543.000000,199,0,10424.000000,642.800000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,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,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1888.000000,200,0,-1.000000,857.600000,extended,lora,60 +on7,0,0,24,1,0,1260,1540.000000,200,0,76586.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1141,1541.000000,200,0,69259.000000,642.000000,extended,lora,60 +on5,0,0,24,1,0,300,1540.000000,200,0,18400.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,220,1580.000000,200,0,13999.000000,657.600000,extended,lora,60 +on3,0,0,24,1,0,695,1575.001280,1,0,41961.001280,664.785126,hintandextended,lora,60 +on0,1,6,24,0,0,0,2079.608960,1,0,-1.000000,985.445632,hintandextended,lora,60 +on8,0,0,24,1,0,258,1558.001280,1,0,17814.001280,648.800717,hintandextended,lora,60 +on2,0,0,24,1,0,932,1572.001280,1,0,57469.001280,654.400717,hintandextended,lora,60 +on1,0,0,25,1,0,1080,1600.602560,1,1,67238.602560,675.329434,hintandextended,lora,60 +on9,0,0,24,1,0,600,1540.001280,1,0,37596.001280,641.600922,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1153,1553.001280,1,0,71573.001280,646.800717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,0,0,1478,1500.000000,1,1,-1.000000,600.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,660,1540.001280,2,0,39971.001280,651.040717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2002.006400,2,0,-1.000000,928.803584,hintandextended,lora,60 +on1,0,0,24,1,0,600,1540.001280,2,0,38727.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,12,1552.001280,2,0,3235.001280,646.400717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1366,1586.001280,2,0,80745.001280,660.000717,hintandextended,lora,60 +on2,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,2,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,255,1555.001280,2,0,18027.001280,647.600717,hintandextended,lora,60 +on4,0,0,24,1,0,1020,1540.001280,3,0,64615.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,1,0,456,1576.001280,3,0,26041.001280,656.000717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2131.608960,3,0,-1.000000,1006.245222,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1140,1540.001280,3,0,70253.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,1260,1600.602560,3,1,75882.602560,665.889638,hintandextended,lora,60 +on1,0,0,24,1,0,1254,1594.001280,3,0,75203.001280,663.200717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,300,1540.001280,3,0,19162.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,240,1600.602560,4,1,16377.602560,675.074048,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,4,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 +on10,0,0,24,1,0,435,1555.001280,4,0,28630.001280,647.600717,hintandextended,lora,60 +on5,0,0,24,1,0,1391,1551.000000,4,0,84147.000000,646.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2331.610240,4,0,-1.000000,1137.446554,hintandextended,lora,60 +on4,0,0,25,1,0,390,1600.001280,4,1,24431.001280,665.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,221,1581.001280,4,0,11897.001280,658.000717,hintandextended,lora,60 +on7,0,0,24,1,0,755,1575.001280,4,0,44269.001280,655.600922,hintandextended,lora,60 +on2,0,0,24,1,0,1200,1540.001280,4,0,73111.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1260,1540.001280,4,0,76279.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,428,1548.001280,5,0,26698.001280,644.800717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,120,1540.001280,5,0,10182.001280,650.785126,hintandextended,lora,60 +on6,0,0,24,1,0,786,1546.001280,5,0,50122.001280,647.680717,hintandextended,lora,60 +on11,0,0,24,1,0,255,1555.001280,5,0,17089.001280,647.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on5,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 +on7,0,0,25,0,0,1485,1500.000000,5,1,-1.000000,600.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1997.607680,5,0,-1.000000,927.044915,hintandextended,lora,60 +on10,0,0,25,1,0,1260,1600.602560,5,1,78400.602560,665.889638,hintandextended,lora,60 +on2,0,0,24,1,0,360,1540.001280,6,0,22809.001280,650.880717,hintandextended,lora,60 +on3,0,0,24,1,0,769,1589.001280,6,0,43512.001280,661.200717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,114,1594.001280,6,0,4815.001280,663.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,lora,60 +on9,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 +on12,0,0,24,1,0,698,1578.001280,6,0,40224.001280,656.800717,hintandextended,lora,60 +on8,0,0,25,1,0,468,1600.001280,6,1,27845.001280,667.520922,hintandextended,lora,60 +on11,0,0,24,1,0,266,1566.001280,6,0,14661.001280,652.000717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2186.008960,6,0,-1.000000,1053.605222,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,212,1572.001280,6,0,14356.001280,654.400717,hintandextended,lora,60 +on5,0,0,24,1,0,0,1540.001280,7,0,546.001280,641.600922,hintandextended,lora,60 +on0,1,6,24,0,0,0,2099.608960,7,0,-1.000000,993.445632,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,7,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 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,252,1552.001280,7,0,14603.001280,646.400717,hintandextended,lora,60 +on11,0,0,25,1,0,398,1600.001280,7,1,27992.001280,671.424717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,557,1600.001280,7,1,34589.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,300,1600.602560,7,1,18666.602560,668.353843,hintandextended,lora,60 +on10,0,0,25,1,0,458,1568.000000,7,1,31694.001280,656.864000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,984,1564.001280,8,0,60389.001280,651.200717,hintandextended,lora,60 +on8,0,0,25,1,0,780,1600.602560,8,1,49565.602560,674.753843,hintandextended,lora,60 +on9,0,0,24,0,0,1421,1443.000000,8,1,-1.000000,577.200000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2206.608960,8,0,-1.000000,1061.845837,hintandextended,lora,60 +on7,0,0,25,1,0,1358,1600.000000,8,1,83726.000000,665.808000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,878,1600.001280,8,1,56196.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,1,0,600,1540.001280,8,0,37351.001280,642.240922,hintandextended,lora,60 +on10,0,0,24,1,0,540,1540.001280,8,0,34131.001280,641.600922,hintandextended,lora,60 +on6,0,0,24,1,0,35,1575.001280,8,0,680.001280,655.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,622,1562.001280,9,0,37462.001280,650.400717,hintandextended,lora,60 +on12,0,0,24,1,0,480,1540.001280,9,0,29195.001280,641.600922,hintandextended,lora,60 +on8,0,0,24,1,0,180,1540.001280,9,0,13287.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1774.003840,9,0,-1.000000,786.402355,hintandextended,lora,60 +on6,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,10,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,459,1600.001280,10,1,28270.001280,665.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2050.007680,10,0,-1.000000,973.604710,hintandextended,lora,60 +on8,0,0,24,1,0,583,1583.001280,10,0,34608.001280,658.800922,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,150,1570.001280,10,0,8649.001280,653.600922,hintandextended,lora,60 +on4,0,0,24,1,0,1080,1540.001280,10,0,65430.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,363,1543.001280,10,0,22065.001280,651.984717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,248,1548.001280,10,0,16629.001280,644.800717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1080,1600.001280,11,1,65603.001280,665.600922,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,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2090.007680,11,0,-1.000000,989.604710,hintandextended,lora,60 +on4,0,0,24,1,0,65,1545.001280,11,0,4872.001280,643.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,661,1541.001280,11,0,41871.001280,642.000717,hintandextended,lora,60 +on2,0,0,24,1,0,120,1540.001280,11,0,9113.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,397,1577.001280,11,0,21943.001280,656.400717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,577,1577.001280,11,0,33108.001280,656.400922,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,900,1600.001280,12,1,56326.001280,675.040922,hintandextended,lora,60 +on2,0,0,25,0,0,1478,1500.000000,12,1,-1.000000,600.000000,hintandextended,lora,60 +on10,0,0,25,1,0,604,1614.001280,12,1,33470.001280,671.200717,hintandextended,lora,60 +on9,0,0,25,1,0,965,1600.001280,12,1,60893.001280,674.208717,hintandextended,lora,60 +on1,0,0,24,1,0,217,1577.001280,12,0,12600.001280,656.400717,hintandextended,lora,60 +on7,0,0,24,1,0,320,1560.001280,12,0,21461.001280,658.784922,hintandextended,lora,60 +on4,0,0,24,1,0,1080,1540.001280,12,0,65018.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,368,1548.001280,12,0,25020.001280,644.800717,hintandextended,lora,60 +on6,0,0,24,1,0,1020,1540.001280,12,0,61473.001280,641.600717,hintandextended,lora,60 +on11,0,0,25,1,0,840,1600.602560,12,1,53039.602560,671.937638,hintandextended,lora,60 +on5,0,0,25,1,0,120,1600.602560,12,1,8292.602560,665.889434,hintandextended,lora,60 +on8,0,0,24,1,0,780,1540.001280,12,0,50012.001280,641.600717,hintandextended,lora,60 +on0,1,11,24,0,0,0,2747.216640,12,0,-1.000000,1380.489933,hintandextended,lora,60 +on11,0,0,24,1,0,911,1551.001280,13,0,57135.001280,655.440717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,819,1579.001280,13,0,47598.001280,657.200922,hintandextended,lora,60 +on3,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 +on7,0,0,24,1,0,1140,1540.001280,13,0,68691.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2236.608960,13,0,-1.000000,1073.846451,hintandextended,lora,60 +on1,0,0,25,1,0,158,1600.001280,13,1,10011.001280,671.521331,hintandextended,lora,60 +on12,0,0,25,1,0,0,1600.602560,13,1,1469.602560,670.753843,hintandextended,lora,60 +on8,0,0,24,1,0,1020,1540.001280,13,0,64520.001280,641.600717,hintandextended,lora,60 +on6,0,0,25,1,0,1358,1600.000000,13,1,84983.000000,665.600000,hintandextended,lora,60 +on5,0,0,25,1,0,840,1600.602560,14,1,52194.602560,665.889434,hintandextended,lora,60 +on12,0,0,24,1,0,720,1540.001280,14,0,44296.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,130,1550.001280,14,0,9588.001280,645.600922,hintandextended,lora,60 +on3,0,0,24,1,0,917,1557.001280,14,0,54830.001280,648.400717,hintandextended,lora,60 +on6,0,0,24,1,0,1393,1553.000000,14,0,83627.000000,646.800000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2290.610240,14,0,-1.000000,1121.046349,hintandextended,lora,60 +on11,0,0,24,1,0,1012,1592.001280,14,0,59394.001280,662.400717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,17,1557.001280,14,0,1365.001280,648.400717,hintandextended,lora,60 +on10,0,0,24,1,0,198,1558.001280,14,0,12395.001280,648.801126,hintandextended,lora,60 +on9,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 +on4,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,910,1550.001280,15,0,57139.001280,645.600922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1380,1540.000000,15,0,84559.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2313.008960,15,0,-1.000000,1130.005222,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,779,1599.001280,15,0,46172.001280,665.200717,hintandextended,lora,60 +on4,0,0,25,0,0,1484,1500.000000,15,1,-1.000000,600.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,540,1540.001280,15,0,35525.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,892,1592.001280,15,0,52790.001280,662.400717,hintandextended,lora,60 +on5,0,0,24,1,0,155,1575.001280,15,0,10653.001280,655.600717,hintandextended,lora,60 +on10,0,0,24,1,0,983,1563.001280,15,0,58167.001280,650.800717,hintandextended,lora,60 +on1,0,0,24,1,0,116,1596.001280,15,0,6011.001280,673.184717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,620,1560.001280,16,0,36619.001280,658.784717,hintandextended,lora,60 +on9,0,0,25,1,0,719,1600.001280,16,1,41590.001280,665.600922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1756.003840,16,0,-1.000000,779.202355,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,60,1540.001280,16,0,5489.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2216.610240,17,0,-1.000000,1065.846144,hintandextended,lora,60 +on5,0,0,24,1,0,1336,1556.001280,17,0,82406.001280,648.000717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,834,1594.001280,17,0,49830.001280,663.200717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1169,1569.001280,17,0,71119.001280,653.200717,hintandextended,lora,60 +on3,0,0,26,1,0,891,1660.602560,17,2,53517.602560,690.433638,hintandextended,lora,60 +on6,0,0,24,1,0,89,1569.001280,17,0,5374.001280,662.384922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1260,1540.001280,17,0,77619.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,1,0,977,1600.001280,17,1,61218.001280,665.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,1200,1600.602560,18,1,73286.602560,665.889434,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,414,1594.001280,18,0,22242.001280,663.200922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1380,1540.000000,18,0,84937.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2396.610240,18,0,-1.000000,1163.446144,hintandextended,lora,60 +on2,0,0,24,1,0,615,1555.001280,18,0,39313.001280,647.600922,hintandextended,lora,60 +on12,0,0,24,1,0,300,1540.001280,18,0,20194.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,1,0,1268,1548.001280,18,0,76641.001280,644.800717,hintandextended,lora,60 +on9,0,0,24,1,0,180,1540.001280,18,0,12525.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,486,1546.001280,18,0,29579.001280,644.000717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,255,1555.001280,19,0,16578.001280,647.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,180,1540.001280,19,0,13197.001280,641.600717,hintandextended,lora,60 +on0,1,4,24,0,0,0,1879.005120,19,0,-1.000000,854.002867,hintandextended,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1016,1596.001280,19,0,58854.001280,664.000717,hintandextended,lora,60 +on8,0,0,24,1,0,420,1540.001280,19,0,27098.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,835,1595.001280,20,0,49136.001280,673.040717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,600,1600.602560,20,1,38252.602560,675.329638,hintandextended,lora,60 +on0,1,7,24,0,0,0,2172.211520,20,0,-1.000000,1048.087066,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,1080,1600.001280,20,1,64497.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,1,0,332,1572.001280,20,0,20824.001280,654.400717,hintandextended,lora,60 +on1,0,0,24,1,0,74,1554.001280,20,0,6004.001280,647.200717,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,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,900,1600.602560,20,1,55747.602560,675.073843,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1188,1588.001280,20,0,69637.001280,660.800717,hintandextended,lora,60 +on1,0,0,24,1,0,0,1540.001280,21,0,592.001280,641.600717,hintandextended,lora,60 +on11,0,0,25,1,0,158,1600.001280,21,1,9969.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,1190,1600.001280,21,1,70818.001280,665.600717,hintandextended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,21,0,84569.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2343.610240,21,0,-1.000000,1142.246554,hintandextended,lora,60 +on9,0,0,24,1,0,105,1585.001280,21,0,5541.001280,662.545126,hintandextended,lora,60 +on12,0,0,24,1,0,220,1580.001280,21,0,12956.001280,657.600717,hintandextended,lora,60 +on7,0,0,25,1,0,1020,1600.001280,21,1,61690.001280,680.864922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,0,0,1456,1500.000000,21,1,-1.000000,600.208000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,960,1600.602560,21,1,59762.602560,665.889638,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,814,1595.001280,22,1,49919.001280,672.881126,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,420,1540.001280,22,0,26450.001280,641.600717,hintandextended,lora,60 +on6,0,0,25,1,0,60,1600.602560,22,1,6220.602560,665.889843,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1164,1564.001280,22,0,71105.001280,651.200717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2477.612800,22,0,-1.000000,1221.448806,hintandextended,lora,60 +on9,0,0,24,1,0,770,1590.001280,22,0,43723.001280,665.024717,hintandextended,lora,60 +on5,0,0,25,1,0,578,1600.001280,22,1,34214.001280,665.600922,hintandextended,lora,60 +on12,0,0,25,1,0,480,1600.001280,22,1,29556.001280,667.041126,hintandextended,lora,60 +on4,0,0,24,1,0,180,1540.001280,22,0,11345.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,29,1569.001280,22,0,1484.001280,658.064922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,838,1600.001280,23,1,49985.001280,665.600717,hintandextended,lora,60 +on6,0,0,24,1,0,1259,1599.001280,23,0,72528.001280,665.200717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,720,1540.001280,23,0,43721.001280,650.784717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,707,1587.001280,23,0,42517.001280,660.400717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2052.007680,23,0,-1.000000,974.404301,hintandextended,lora,60 +on1,0,0,24,1,0,139,1559.001280,23,0,10598.001280,649.200717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1353,1573.001280,23,0,81755.001280,654.800717,hintandextended,lora,60 +on3,0,0,25,1,0,731,1633.001280,24,1,41909.001280,678.800717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2329.010240,24,0,-1.000000,1136.405939,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,943,1583.001280,24,0,57633.001280,658.800717,hintandextended,lora,60 +on5,0,0,24,1,0,599,1599.001280,24,0,35767.001280,665.200922,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,300,1540.001280,24,0,20266.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,1,0,484,1600.001280,24,1,31121.001280,683.744717,hintandextended,lora,60 +on7,0,0,24,1,0,478,1598.001280,24,0,26361.001280,665.568717,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,1372,1592.001280,24,0,82348.001280,662.400717,hintandextended,lora,60 +on10,0,0,25,0,0,1456,1500.000000,24,1,-1.000000,607.040000,hintandextended,lora,60 +on2,0,0,24,1,0,960,1540.001280,24,0,61111.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,240,1540.001280,25,0,17250.001280,641.600922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,540,1540.001280,25,0,33168.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,1,0,1320,1540.001280,25,0,81353.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,0,1540.001280,25,0,1193.001280,641.601126,hintandextended,lora,60 +on1,0,0,24,1,0,1426,1586.000000,25,0,85368.000000,660.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2275.007680,25,0,-1.000000,1089.205120,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,902,1542.001280,25,0,57607.001280,642.400922,hintandextended,lora,60 +on2,0,0,24,1,0,1198,1598.001280,25,0,69464.001280,664.800717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,60,1600.602560,26,1,5935.602560,665.889434,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,477,1597.001280,26,0,28174.001280,673.584922,hintandextended,lora,60 +on6,0,0,24,1,0,179,1599.001280,26,0,7505.001280,665.200717,hintandextended,lora,60 +on12,0,0,24,1,0,1376,1596.001280,26,0,81485.001280,664.000717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1434,1594.000000,26,0,84931.000000,663.200000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2283.610240,26,0,-1.000000,1118.246144,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,536,1600.001280,26,1,30612.001280,665.600922,hintandextended,lora,60 +on5,0,0,24,1,0,226,1586.001280,26,0,13271.001280,660.000717,hintandextended,lora,60 +on3,0,0,24,1,0,240,1540.001280,26,0,16931.001280,641.600717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2312.611520,27,0,-1.000000,1129.847270,hintandextended,lora,60 +on2,0,0,25,1,0,480,1600.602560,27,1,31839.602560,684.257843,hintandextended,lora,60 +on11,0,0,24,1,0,420,1540.001280,27,0,27247.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,384,1564.001280,27,0,22389.001280,651.200717,hintandextended,lora,60 +on1,0,0,24,1,0,72,1552.001280,27,0,6538.001280,646.400922,hintandextended,lora,60 +on8,0,0,24,1,0,1028,1548.001280,27,0,64237.001280,644.800717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,965,1545.001280,27,0,58365.001280,643.600717,hintandextended,lora,60 +on10,0,0,25,1,0,618,1600.001280,27,1,37378.001280,670.880922,hintandextended,lora,60 +on12,0,0,24,1,0,339,1579.001280,27,0,19288.001280,657.200717,hintandextended,lora,60 +on4,0,0,25,0,0,1478,1500.000000,27,1,-1.000000,600.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,70,1550.001280,28,0,6113.001280,645.600717,hintandextended,lora,60 +on11,0,0,24,1,0,171,1591.001280,28,0,9271.001280,662.000717,hintandextended,lora,60 +on9,0,0,24,1,0,934,1574.001280,28,0,56324.001280,655.200717,hintandextended,lora,60 +on10,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 +on6,0,0,24,1,0,1140,1540.001280,28,0,70187.001280,650.784922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,725,1545.001280,28,0,44289.001280,643.600922,hintandextended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,28,0,85307.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2365.008960,28,0,-1.000000,1150.805427,hintandextended,lora,60 +on3,0,0,25,1,0,1379,1600.001280,28,1,82463.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,180,1540.001280,28,0,13053.001280,641.600717,hintandextended,lora,60 +on5,0,0,25,1,0,1179,1600.001280,29,1,71715.001280,668.960717,hintandextended,lora,60 +on2,0,0,24,1,0,360,1581.602560,29,1,24580.602560,679.217434,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,1090,1600.001280,29,1,66777.001280,682.208717,hintandextended,lora,60 +on9,0,0,25,1,0,1418,1600.000000,29,1,83931.000000,665.600000,hintandextended,lora,60 +on0,1,10,24,0,0,0,2526.815360,29,0,-1.000000,1266.729216,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,490,1550.001280,29,0,31269.001280,645.600922,hintandextended,lora,60 +on4,0,0,24,1,0,1320,1540.001280,29,0,81316.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,358,1598.001280,29,0,19184.001280,664.864717,hintandextended,lora,60 +on3,0,0,26,1,0,1071,1660.602560,29,2,64444.602560,692.097434,hintandextended,lora,60 +on1,0,0,24,1,0,840,1540.001280,29,0,53244.001280,641.600717,hintandextended,lora,60 +on11,0,0,25,1,0,420,1600.602560,29,1,28743.602560,665.889434,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,1,24,0,0,0,1540.001280,30,0,-1.000000,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on12,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 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,30,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 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,398,1578.001280,30,0,25267.001280,656.800717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,180,1540.001280,31,0,11936.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1795.003840,31,0,-1.000000,794.802355,hintandextended,lora,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,720,1540.001280,31,0,44389.001280,641.600922,hintandextended,lora,60 +on9,0,0,24,1,0,994,1574.001280,31,0,59389.001280,655.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,0,0,1490,1500.000000,32,1,-1.000000,600.000000,hintandextended,lora,60 +on12,0,0,24,1,0,404,1584.001280,32,0,23959.001280,659.200717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1026,1546.001280,32,0,62351.001280,653.184717,hintandextended,lora,60 +on9,0,0,24,1,0,1082,1542.001280,32,0,66276.001280,642.400717,hintandextended,lora,60 +on7,0,0,24,1,0,260,1560.001280,32,0,15983.001280,649.600922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1402,1562.000000,32,0,84384.000000,650.400000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2144.007680,32,0,-1.000000,1036.804506,hintandextended,lora,60 +on8,0,0,24,1,0,600,1540.001280,32,0,37316.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,451,1571.001280,32,0,27327.001280,654.000717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,998,1578.001280,33,0,57892.001280,666.240922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,298,1600.001280,33,1,17260.001280,665.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,611,1551.001280,33,0,36844.001280,646.000717,hintandextended,lora,60 +on1,0,0,24,1,0,1320,1540.001280,33,0,81734.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2050.007680,33,0,-1.000000,973.604506,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,874,1574.001280,33,0,51364.001280,655.200717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,196,1556.001280,33,0,13202.001280,657.184717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,299,1599.001280,34,0,17058.001280,665.200922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1080,1540.001280,34,0,67148.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,693,1573.001280,34,0,40198.001280,654.800717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,34,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 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,360,1600.602560,34,1,24171.602560,682.209638,hintandextended,lora,60 +on0,1,4,24,0,0,0,1905.606400,34,0,-1.000000,864.644198,hintandextended,lora,60 +on3,0,0,25,1,0,780,1600.602560,35,1,50222.602560,674.113638,hintandextended,lora,60 +on0,1,8,24,0,0,0,2342.212800,35,0,-1.000000,1141.688192,hintandextended,lora,60 +on5,0,0,25,1,0,158,1600.001280,35,1,9021.001280,665.600922,hintandextended,lora,60 +on4,0,0,25,0,0,1494,1500.000000,35,1,-1.000000,600.000000,hintandextended,lora,60 +on12,0,0,25,1,0,480,1600.602560,35,1,30615.602560,685.057843,hintandextended,lora,60 +on2,0,0,24,1,0,255,1555.001280,35,0,15322.001280,656.784717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,590,1600.001280,35,1,38962.001280,675.040922,hintandextended,lora,60 +on7,0,0,25,1,0,844,1600.001280,35,1,53814.001280,674.272717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,60,1540.001280,35,0,4576.001280,645.504717,hintandextended,lora,60 +on6,0,0,25,1,0,340,1600.001280,35,1,21352.001280,665.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,90,1570.001280,36,0,6295.001280,653.600717,hintandextended,lora,60 +on4,0,0,25,1,0,720,1600.602560,36,1,44583.602560,665.889434,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,300,1540.001280,36,0,21432.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2089.210240,36,0,-1.000000,989.285734,hintandextended,lora,60 +on2,0,0,25,1,0,0,1600.602560,36,1,2851.602560,665.889434,hintandextended,lora,60 +on5,0,0,24,1,0,947,1587.001280,36,0,56878.001280,665.040717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,786,1546.001280,36,0,48335.001280,644.000717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1022,1542.001280,37,0,64880.001280,642.400922,hintandextended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,37,0,83546.000000,641.600000,hintandextended,lora,60 +on0,1,11,24,0,0,0,2775.614080,37,0,-1.000000,1391.848909,hintandextended,lora,60 +on8,0,0,24,1,0,240,1540.001280,37,0,15019.001280,641.600922,hintandextended,lora,60 +on10,0,0,24,1,0,369,1549.001280,37,0,24315.001280,646.960717,hintandextended,lora,60 +on6,0,0,25,1,0,649,1600.001280,37,1,38038.001280,665.600717,hintandextended,lora,60 +on11,0,0,25,1,0,1080,1600.602560,37,1,66674.602560,675.969638,hintandextended,lora,60 +on9,0,0,25,1,0,458,1600.001280,37,1,29938.001280,683.968717,hintandextended,lora,60 +on12,0,0,25,1,0,834,1600.001280,37,1,47939.001280,665.600717,hintandextended,lora,60 +on2,0,0,24,1,0,1,1541.001280,37,0,2405.001280,642.000717,hintandextended,lora,60 +on7,0,0,25,1,0,574,1600.001280,37,1,35774.001280,680.384922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,720,1540.001280,37,0,45316.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,273,1573.001280,38,0,14949.001280,654.864922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,60,1540.001280,38,0,6860.001280,641.600717,hintandextended,lora,60 +on0,1,3,24,0,0,0,1792.003840,38,0,-1.000000,793.602355,hintandextended,lora,60 +on12,0,0,25,1,0,1298,1600.001280,38,1,78814.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on9,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,39,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2237.008960,39,0,-1.000000,1074.005427,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,199,1559.001280,39,0,11764.001280,649.200717,hintandextended,lora,60 +on10,0,0,24,1,0,576,1576.001280,39,0,35604.001280,665.440922,hintandextended,lora,60 +on5,0,0,24,1,0,503,1563.001280,39,0,31408.001280,650.800717,hintandextended,lora,60 +on7,0,0,24,1,0,1020,1540.001280,39,0,63111.001280,641.600717,hintandextended,lora,60 +on9,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 +on11,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,437,1557.001280,39,0,27264.001280,648.400922,hintandextended,lora,60 +on8,0,0,24,1,0,846,1546.001280,39,0,52049.001280,644.000717,hintandextended,lora,60 +on12,0,0,24,1,0,900,1540.001280,39,0,54356.001280,641.600717,hintandextended,lora,60 +on3,0,0,25,1,0,278,1600.001280,40,1,15864.001280,665.600717,hintandextended,lora,60 +on11,0,0,24,1,0,780,1540.001280,40,0,48169.001280,645.504717,hintandextended,lora,60 +on10,0,0,24,1,0,507,1567.001280,40,0,31838.001280,652.400717,hintandextended,lora,60 +on1,0,0,24,1,0,420,1540.001280,40,0,27827.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,227,1587.001280,40,0,11257.001280,667.664922,hintandextended,lora,60 +on6,0,0,24,1,0,966,1546.001280,40,0,59273.001280,644.000717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,134,1554.001280,40,0,7938.001280,647.200717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2406.011520,40,0,-1.000000,1192.806656,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,864,1600.001280,40,1,53301.001280,678.688717,hintandextended,lora,60 +on7,0,0,24,1,0,71,1551.001280,40,0,3963.001280,646.000717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,0,0,1491,1500.000000,41,1,-1.000000,600.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,180,1600.602560,41,1,12008.602560,675.073638,hintandextended,lora,60 +on12,0,0,25,1,0,474,1600.001280,41,1,29345.001280,665.808922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,1298,1600.001280,41,1,78288.001280,665.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2204.610240,41,0,-1.000000,1061.046758,hintandextended,lora,60 +on6,0,0,24,1,0,85,1565.001280,41,0,5667.001280,651.601126,hintandextended,lora,60 +on4,0,0,25,1,0,398,1600.001280,41,1,25721.001280,675.088717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,344,1600.001280,41,1,20871.001280,666.720717,hintandextended,lora,60 +on2,0,0,24,1,0,1140,1540.001280,41,0,70099.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,480,1540.001280,42,0,31918.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1427,1587.000000,42,0,83689.000000,660.400000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2148.208960,42,0,-1.000000,1012.885632,hintandextended,lora,60 +on12,0,0,25,1,0,300,1600.602560,42,1,20062.602560,665.889843,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,900,1600.602560,42,1,56889.602560,665.889638,hintandextended,lora,60 +on7,0,0,24,1,0,1159,1559.001280,42,0,70954.001280,649.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,895,1595.001280,42,0,54080.001280,663.600717,hintandextended,lora,60 +on5,0,0,24,1,0,420,1540.001280,43,0,28717.001280,650.784717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,180,1540.001280,43,0,12647.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,1030,1550.001280,43,0,64006.001280,645.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,120,1540.001280,43,0,8342.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2138.007680,43,0,-1.000000,1008.804301,hintandextended,lora,60 +on7,0,0,25,1,0,520,1600.001280,43,1,31692.001280,665.600717,hintandextended,lora,60 +on1,0,0,24,1,0,1080,1540.001280,43,0,66600.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,120,1540.001280,44,0,10357.001280,644.065126,hintandextended,lora,60 +on7,0,0,24,1,0,975,1555.001280,44,0,60321.001280,647.600717,hintandextended,lora,60 +on5,0,0,25,0,0,1478,1500.000000,44,1,-1.000000,600.000000,hintandextended,lora,60 +on4,0,0,24,1,0,350,1590.001280,44,0,20707.001280,672.384922,hintandextended,lora,60 +on9,0,0,24,1,0,24,1564.001280,44,0,1742.001280,651.200717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2421.011520,44,0,-1.000000,1198.807680,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,399,1600.001280,44,1,24558.001280,665.808717,hintandextended,lora,60 +on2,0,0,24,1,0,420,1540.001280,44,0,28261.001280,651.040922,hintandextended,lora,60 +on11,0,0,24,1,0,642,1582.001280,44,0,37257.001280,658.400922,hintandextended,lora,60 +on8,0,0,25,1,0,218,1600.001280,44,1,14217.001280,665.600922,hintandextended,lora,60 +on6,0,0,25,1,0,1363,1600.001280,44,1,82613.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,1,0,221,1581.001280,45,0,11933.001280,658.000922,hintandextended,lora,60 +on5,0,0,24,1,0,1260,1540.001280,45,0,77226.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1340,1560.001280,45,0,81394.001280,649.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,540,1540.001280,45,0,32959.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,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1919.005120,45,0,-1.000000,870.003072,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 +on6,0,0,24,1,0,438,1558.001280,46,0,28358.001280,648.800717,hintandextended,lora,60 +on2,0,0,25,0,0,1480,1500.000000,46,1,-1.000000,600.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,639,1600.001280,46,1,38010.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2353.212800,46,0,-1.000000,1146.087578,hintandextended,lora,60 +on9,0,0,24,1,0,780,1540.001280,46,0,48748.001280,651.040717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,213,1573.001280,46,0,13536.001280,654.800717,hintandextended,lora,60 +on3,0,0,25,1,0,596,1600.001280,46,1,35837.001280,667.792717,hintandextended,lora,60 +on5,0,0,25,1,0,60,1600.602560,46,1,5873.602560,675.073638,hintandextended,lora,60 +on10,0,0,25,1,0,1189,1600.001280,46,1,71960.001280,665.600717,hintandextended,lora,60 +on4,0,0,25,1,0,480,1600.602560,46,1,30804.602560,675.169638,hintandextended,lora,60 +on12,0,0,24,1,0,225,1585.001280,47,0,13334.001280,659.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,480,1540.001280,47,0,29816.001280,641.600922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,662,1542.001280,47,0,39957.001280,642.720922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,415,1600.001280,47,1,22314.001280,665.600717,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,1380,1540.000000,47,0,85255.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2300.008960,47,0,-1.000000,1124.805427,hintandextended,lora,60 +on4,0,0,24,1,0,255,1555.001280,47,0,14761.001280,647.600717,hintandextended,lora,60 +on5,0,0,24,1,0,300,1540.001280,47,0,19674.001280,650.784717,hintandextended,lora,60 +on9,0,0,24,1,0,1052,1572.001280,47,0,63480.001280,654.400717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,660,1540.001280,48,0,41559.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,1140,1540.001280,48,0,69290.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,540,1540.001280,48,0,35960.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1078,1598.001280,48,0,62688.001280,664.800717,hintandextended,lora,60 +on12,0,0,25,1,0,459,1600.001280,48,1,26185.001280,665.600922,hintandextended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,48,0,85487.000000,641.600000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2475.611520,48,0,-1.000000,1220.647066,hintandextended,lora,60 +on2,0,0,24,1,0,1080,1540.001280,48,0,65440.001280,641.600717,hintandextended,lora,60 +on1,0,0,25,1,0,120,1600.602560,48,1,8885.602560,665.889638,hintandextended,lora,60 +on11,0,0,24,1,0,87,1567.001280,48,0,3911.001280,653.904922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,360,1540.001280,49,0,23706.001280,641.600922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,148,1568.001280,49,0,9476.001280,652.800717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1892.005120,49,0,-1.000000,859.203072,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on5,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 +on9,0,0,24,1,0,60,1540.001280,49,0,6009.001280,647.424717,hintandextended,lora,60 +on1,0,0,24,1,0,326,1566.001280,49,0,18519.001280,652.000717,hintandextended,lora,60 +on12,0,0,25,0,0,1478,1500.000000,49,1,-1.000000,600.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,702,1600.001280,50,1,42576.001280,665.600717,hintandextended,lora,60 +on4,0,0,24,1,0,180,1540.001280,50,0,12614.001280,641.600922,hintandextended,lora,60 +on7,0,0,24,1,0,720,1540.001280,50,0,45933.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,600,1540.001280,50,0,38380.001280,650.784922,hintandextended,lora,60 +on0,1,6,24,0,0,0,2115.007680,50,0,-1.000000,999.604915,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1140,1600.001280,50,1,72497.001280,675.200717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,575,1575.001280,50,0,33507.001280,655.600717,hintandextended,lora,60 +on7,0,0,25,0,0,1478,1500.000000,51,1,-1.000000,600.000000,hintandextended,lora,60 +on2,0,0,24,1,0,60,1540.001280,51,0,4045.001280,650.784717,hintandextended,lora,60 +on12,0,0,24,1,0,689,1569.001280,51,0,39996.001280,653.200717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,167,1600.001280,51,1,9443.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,1,0,949,1589.001280,51,0,57304.001280,661.200717,hintandextended,lora,60 +on9,0,0,25,1,0,0,1600.602560,51,1,1817.602560,674.593843,hintandextended,lora,60 +on8,0,0,24,1,0,180,1540.001280,51,0,13687.001280,641.600922,hintandextended,lora,60 +on10,0,0,24,1,0,1020,1540.001280,51,0,62190.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,240,1540.001280,51,0,14663.001280,641.600922,hintandextended,lora,60 +on0,1,8,24,0,0,0,2378.611520,51,0,-1.000000,1156.247270,hintandextended,lora,60 +on7,0,0,24,1,0,1014,1594.001280,52,0,59531.001280,669.761126,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,0,0,1478,1500.000000,52,1,-1.000000,600.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1867.606400,52,0,-1.000000,849.444608,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,561,1561.001280,52,0,36023.001280,650.000922,hintandextended,lora,60 +on4,0,0,25,1,0,0,1600.602560,52,1,955.602560,674.817843,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,212,1600.001280,52,1,12148.001280,669.024717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,702,1600.001280,53,1,41720.001280,671.712922,hintandextended,lora,60 +on1,0,0,24,1,0,879,1579.001280,53,0,53585.001280,666.384717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2429.612800,53,0,-1.000000,1202.247578,hintandextended,lora,60 +on4,0,0,25,1,0,1200,1600.602560,53,1,75493.602560,669.249434,hintandextended,lora,60 +on3,0,0,25,1,0,1298,1600.001280,53,1,79218.001280,665.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,180,1540.001280,53,0,12963.001280,641.600717,hintandextended,lora,60 +on9,0,0,25,1,0,959,1600.001280,53,1,57048.001280,666.880717,hintandextended,lora,60 +on11,0,0,24,1,0,240,1540.001280,53,0,14738.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,600,1540.001280,53,0,39611.001280,650.528717,hintandextended,lora,60 +on10,0,0,24,1,0,731,1557.001280,53,1,44748.001280,648.400717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,720,1540.001280,54,0,45700.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2066.007680,54,0,-1.000000,980.004915,hintandextended,lora,60 +on7,0,0,24,1,0,1276,1556.001280,54,0,77191.001280,648.000717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,674,1554.001280,54,0,39793.001280,647.200922,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,995,1575.001280,54,0,60450.001280,655.600922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,218,1600.001280,54,1,12947.001280,665.600717,hintandextended,lora,60 +on1,0,0,24,1,0,165,1585.001280,54,0,9936.001280,665.424922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,837,1597.001280,55,0,47246.001280,673.840717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,650,1590.001280,55,0,39407.001280,661.600717,hintandextended,lora,60 +on10,0,0,24,1,0,725,1545.001280,55,0,46612.001280,643.600717,hintandextended,lora,60 +on2,0,0,24,1,0,518,1578.001280,55,0,29252.001280,656.800922,hintandextended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,55,0,84608.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2246.008960,55,0,-1.000000,1103.205427,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,251,1551.001280,55,0,16191.001280,646.000922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,18,1558.001280,55,0,1634.001280,648.800717,hintandextended,lora,60 +on9,0,0,24,1,0,1291,1571.001280,55,0,76147.001280,654.000717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,0,1600.602560,56,1,3585.602560,665.889638,hintandextended,lora,60 +on0,1,8,24,0,0,0,2326.611520,56,0,-1.000000,1135.447066,hintandextended,lora,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,420,1540.001280,56,0,26196.001280,650.784717,hintandextended,lora,60 +on2,0,0,24,1,0,360,1540.001280,56,0,22158.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,804,1564.001280,56,0,47084.001280,651.200717,hintandextended,lora,60 +on3,0,0,25,1,0,763,1600.001280,56,1,44230.001280,665.600922,hintandextended,lora,60 +on12,0,0,24,1,0,674,1554.001280,56,0,41873.001280,656.384717,hintandextended,lora,60 +on5,0,0,25,1,0,519,1600.001280,56,1,31517.001280,665.600922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1067,1587.001280,56,0,62682.001280,660.400717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2011.006400,57,0,-1.000000,932.404403,hintandextended,lora,60 +on3,0,0,24,1,0,200,1560.001280,57,0,14142.001280,649.600922,hintandextended,lora,60 +on10,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 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1254,1594.001280,57,0,72767.001280,663.200717,hintandextended,lora,60 +on11,0,0,24,1,0,0,1540.001280,57,0,2694.001280,641.600922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,795,1555.001280,57,0,47203.001280,647.600922,hintandextended,lora,60 +on8,0,0,24,1,0,300,1540.001280,57,0,21485.001280,641.600922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1140,1540.001280,58,0,69627.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,480,1540.001280,58,0,29657.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,888,1588.001280,58,0,53121.001280,660.800717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2409.610240,58,0,-1.000000,1143.046144,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,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1260,1540.001280,58,0,79119.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,1037,1557.001280,58,0,62599.001280,648.720922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,0,1600.602560,58,1,3087.602560,665.889638,hintandextended,lora,60 +on11,0,0,24,1,0,420,1540.001280,58,0,25765.001280,641.600717,hintandextended,lora,60 +on11,0,0,25,1,0,1080,1600.602560,59,1,67285.602560,668.609638,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2333.814080,59,0,-1.000000,1138.328499,hintandextended,lora,60 +on5,0,0,25,1,0,480,1600.602560,59,1,30466.602560,675.073638,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,0,1600.602560,59,1,1505.602560,673.153638,hintandextended,lora,60 +on12,0,0,24,1,0,1274,1554.001280,59,0,76647.001280,656.640717,hintandextended,lora,60 +on7,0,0,24,1,0,900,1540.001280,59,0,54666.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,166,1586.001280,59,0,8993.001280,660.000717,hintandextended,lora,60 +on2,0,0,25,0,0,1479,1500.000000,59,1,-1.000000,600.000000,hintandextended,lora,60 +on3,0,0,25,1,0,581,1600.001280,59,1,38138.001280,665.600717,hintandextended,lora,60 +on9,0,0,24,1,0,1221,1561.001280,59,0,74199.001280,650.000717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on7,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 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,530,1590.001280,60,0,30271.001280,661.600717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1940.006400,60,0,-1.000000,904.003584,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,993,1600.001280,60,1,59138.001280,669.920717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,713,1593.001280,60,0,41767.001280,662.800717,hintandextended,lora,60 +on5,0,0,24,1,0,899,1599.001280,60,0,52728.001280,671.024717,hintandextended,lora,60 +on10,0,0,25,1,0,938,1600.001280,60,1,56981.001280,674.880717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,431,1551.001280,61,0,28061.001280,646.000717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1339,1559.001280,61,0,80395.001280,649.200717,hintandextended,lora,60 +on6,0,0,24,1,0,313,1553.001280,61,0,18763.001280,653.841126,hintandextended,lora,60 +on0,1,8,24,0,0,0,2346.212800,61,0,-1.000000,1143.288192,hintandextended,lora,60 +on8,0,0,25,1,0,0,1600.602560,61,1,307.602560,665.889843,hintandextended,lora,60 +on9,0,0,24,1,0,1069,1589.001280,61,0,63886.001280,661.200717,hintandextended,lora,60 +on7,0,0,24,1,0,540,1540.001280,61,0,35542.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,0,0,1478,1500.000000,61,1,-1.000000,600.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,780,1540.001280,61,0,47203.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,1,0,180,1600.602560,61,1,11272.602560,665.889638,hintandextended,lora,60 +on10,0,0,24,1,0,433,1553.001280,62,0,26750.001280,646.800717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2140.608960,62,0,-1.000000,1009.845018,hintandextended,lora,60 +on1,0,0,24,1,0,72,1552.001280,62,0,7249.001280,646.400717,hintandextended,lora,60 +on5,0,0,24,1,0,120,1540.001280,62,0,9008.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,360,1600.602560,62,1,22489.602560,665.889434,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,480,1540.001280,62,0,32333.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,964,1544.001280,62,0,57896.001280,643.200717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,360,1540.001280,63,0,23363.001280,641.600922,hintandextended,lora,60 +on4,0,0,24,1,0,1297,1577.001280,63,0,78390.001280,659.120717,hintandextended,lora,60 +on5,0,0,24,1,0,808,1568.001280,63,0,47615.001280,659.840717,hintandextended,lora,60 +on6,0,0,24,1,0,240,1540.001280,63,0,18049.001280,641.601126,hintandextended,lora,60 +on2,0,0,24,1,0,97,1577.001280,63,0,4693.001280,656.400717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,0,1600.602560,63,1,878.602560,665.889434,hintandextended,lora,60 +on3,0,0,24,1,0,300,1540.001280,63,0,18859.001280,641.600922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1232,1572.001280,63,0,73289.001280,654.400717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2427.612800,63,0,-1.000000,1201.447987,hintandextended,lora,60 +on8,0,0,24,1,0,537,1597.001280,63,0,30109.001280,664.400717,hintandextended,lora,60 +on2,0,0,24,1,0,230,1590.001280,64,0,13125.001280,661.600922,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1883.005120,64,0,-1.000000,855.603277,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,9,1549.001280,64,0,1607.001280,645.200922,hintandextended,lora,60 +on12,0,0,24,1,0,1320,1540.001280,64,0,79566.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,1,0,1228,1568.001280,64,0,73256.001280,652.800717,hintandextended,lora,60 +on3,0,0,24,1,0,1244,1584.001280,65,0,75684.001280,659.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,170,1590.001280,65,0,7789.001280,661.600717,hintandextended,lora,60 +on2,0,0,24,1,0,181,1541.001280,65,0,13022.001280,642.000922,hintandextended,lora,60 +on4,0,0,24,1,0,300,1540.001280,65,0,18790.001280,641.600717,hintandextended,lora,60 +on11,0,0,25,1,0,1320,1600.602560,65,1,82489.602560,675.073434,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,1405,1600.000000,65,1,84905.000000,670.912000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2075.607680,65,0,-1.000000,983.844506,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,65,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 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,196,1556.001280,66,0,11670.001280,657.184922,hintandextended,lora,60 +on8,0,0,24,1,0,112,1592.001280,66,0,6272.001280,662.400717,hintandextended,lora,60 +on5,0,0,24,1,0,321,1561.001280,66,0,20008.001280,650.000717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1840.005120,66,0,-1.000000,838.403072,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,719,1600.001280,66,1,41944.001280,665.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1080,1600.602560,67,1,67870.602560,675.329638,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2095.210240,67,0,-1.000000,991.686349,hintandextended,lora,60 +on9,0,0,24,1,0,1009,1589.001280,67,0,59403.001280,661.200717,hintandextended,lora,60 +on10,0,0,25,1,0,0,1600.602560,67,1,564.602560,675.073434,hintandextended,lora,60 +on11,0,0,24,1,0,643,1583.001280,67,0,37486.001280,658.800922,hintandextended,lora,60 +on2,0,0,24,1,0,61,1541.001280,67,0,6444.001280,650.704922,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,159,1600.001280,67,1,9333.001280,665.600717,hintandextended,lora,60 +on4,0,0,25,0,0,1484,1500.000000,67,1,-1.000000,600.000000,hintandextended,lora,60 +on6,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,68,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2172.608960,68,0,-1.000000,1022.645837,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,1020,1600.602560,68,1,62796.602560,665.889638,hintandextended,lora,60 +on11,0,0,25,0,0,1489,1500.000000,68,1,-1.000000,600.000000,hintandextended,lora,60 +on9,0,0,24,1,0,575,1575.001280,68,0,34338.001280,655.600922,hintandextended,lora,60 +on1,0,0,24,1,0,420,1540.001280,68,0,25532.001280,650.784717,hintandextended,lora,60 +on3,0,0,24,1,0,240,1540.001280,68,0,17357.001280,641.600922,hintandextended,lora,60 +on6,0,0,24,1,0,300,1540.001280,68,0,19289.001280,648.640922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,524,1584.001280,68,0,31695.001280,659.200717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,240,1600.602560,69,1,17422.602560,665.889434,hintandextended,lora,60 +on0,1,8,24,0,0,0,2274.212800,69,0,-1.000000,1114.487578,hintandextended,lora,60 +on10,0,0,24,1,0,445,1565.001280,69,0,25579.001280,651.600717,hintandextended,lora,60 +on12,0,0,25,1,0,360,1600.602560,69,1,24982.602560,665.889434,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,209,1569.001280,69,0,12909.001280,662.640717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,347,1587.001280,69,0,21118.001280,660.400922,hintandextended,lora,60 +on5,0,0,24,1,0,720,1540.001280,69,0,45337.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,54,1594.001280,69,0,2424.001280,663.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,569,1569.001280,69,0,34150.001280,653.200922,hintandextended,lora,60 +on10,0,0,25,1,0,240,1600.001280,70,1,16570.001280,665.600922,hintandextended,lora,60 +on9,0,0,25,1,0,356,1600.001280,70,1,20681.001280,665.808717,hintandextended,lora,60 +on8,0,0,24,1,0,1203,1543.001280,70,0,73103.001280,642.800717,hintandextended,lora,60 +on1,0,0,24,1,0,234,1594.001280,70,0,11352.001280,672.480922,hintandextended,lora,60 +on0,1,9,24,0,0,0,2438.214080,70,0,-1.000000,1205.688294,hintandextended,lora,60 +on6,0,0,24,1,0,592,1592.001280,70,0,34731.001280,662.400717,hintandextended,lora,60 +on12,0,0,24,1,0,1260,1540.001280,70,0,77599.001280,651.040717,hintandextended,lora,60 +on11,0,0,25,1,0,1320,1600.602560,70,1,82359.602560,665.889434,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,1005,1600.001280,70,1,60035.001280,665.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,1140,1600.602560,70,1,71274.602560,665.889434,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2171.608960,71,0,-1.000000,1022.245837,hintandextended,lora,60 +on2,0,0,24,1,0,288,1588.001280,71,0,15968.001280,660.800717,hintandextended,lora,60 +on3,0,0,24,1,0,540,1540.001280,71,0,35435.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1260,1540.001280,71,0,78027.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1320,1540.001280,71,0,80761.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,960,1600.602560,71,1,58471.602560,665.890048,hintandextended,lora,60 +on5,0,0,24,1,0,300,1540.001280,71,0,18327.001280,641.600922,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,1,0,1080,1540.001280,72,0,66618.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2127.210240,72,0,-1.000000,1004.486554,hintandextended,lora,60 +on6,0,0,24,1,0,235,1595.001280,72,0,13730.001280,663.600922,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,360,1600.602560,72,1,23410.602560,665.889638,hintandextended,lora,60 +on11,0,0,25,1,0,1200,1600.602560,72,1,72758.602560,665.889638,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,142,1562.001280,72,0,9906.001280,650.400717,hintandextended,lora,60 +on1,0,0,24,1,0,309,1549.001280,72,0,19792.001280,645.200922,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1020,1540.001280,73,0,64855.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,1,0,180,1540.001280,73,0,12510.001280,641.600717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2411.611520,73,0,-1.000000,1169.447066,hintandextended,lora,60 +on1,0,0,24,1,0,44,1584.001280,73,0,2366.001280,659.200922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1140,1552.001280,73,1,71298.001280,646.400922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,300,1600.001280,73,1,20026.001280,665.600717,hintandextended,lora,60 +on5,0,0,25,1,0,240,1600.602560,73,1,16259.602560,674.113638,hintandextended,lora,60 +on3,0,0,25,1,0,818,1600.001280,73,1,48450.001280,665.600717,hintandextended,lora,60 +on2,0,0,25,1,0,377,1600.001280,73,1,23595.001280,665.808717,hintandextended,lora,60 +on5,0,0,24,1,0,1320,1540.001280,74,0,80753.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,338,1600.001280,74,1,19636.001280,665.600717,hintandextended,lora,60 +on11,0,0,24,1,0,270,1570.001280,74,0,15078.001280,654.624922,hintandextended,lora,60 +on12,0,0,25,1,0,60,1600.602560,74,1,5506.602560,665.889843,hintandextended,lora,60 +on3,0,0,24,1,0,1067,1587.001280,74,0,61678.001280,660.400717,hintandextended,lora,60 +on6,0,0,24,1,0,1380,1540.000000,74,0,85070.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2396.610240,74,0,-1.000000,1163.446349,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,480,1540.001280,74,0,30652.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,1,0,600,1540.001280,74,0,37263.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1361,1581.001280,75,0,79856.001280,658.000717,hintandextended,lora,60 +on8,0,0,24,1,0,480,1540.001280,75,0,32202.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2132.007680,75,0,-1.000000,1006.404915,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,112,1592.001280,75,0,5579.001280,662.400717,hintandextended,lora,60 +on2,0,0,24,1,0,728,1548.001280,75,0,44815.001280,644.801126,hintandextended,lora,60 +on12,0,0,24,1,0,214,1574.001280,75,0,12261.001280,655.200922,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,840,1540.001280,75,0,52792.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,900,1540.001280,76,0,57560.001280,641.600717,hintandextended,lora,60 +on5,0,0,25,1,0,159,1600.001280,76,1,8457.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,1,0,60,1540.001280,76,0,5994.001280,645.504922,hintandextended,lora,60 +on0,1,6,24,0,0,0,2188.007680,76,0,-1.000000,1028.804710,hintandextended,lora,60 +on4,0,0,24,1,0,420,1540.001280,76,0,28284.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,1260,1540.001280,76,0,77984.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,660,1540.001280,76,0,40849.001280,641.600922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on10,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 +on7,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,195,1555.001280,77,0,12923.001280,647.600717,hintandextended,lora,60 +on2,0,0,25,1,0,720,1600.602560,77,1,46511.602560,665.889638,hintandextended,lora,60 +on9,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,1,0,1020,1540.001280,77,0,61528.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,1,0,103,1583.001280,77,0,6469.001280,658.800717,hintandextended,lora,60 +on8,0,0,24,1,0,484,1544.001280,77,0,31527.001280,643.201126,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2098.608960,77,0,-1.000000,993.045632,hintandextended,lora,60 +on3,0,0,24,1,0,0,1540.001280,77,0,2030.001280,641.600717,hintandextended,lora,60 +on7,0,0,25,1,0,479,1600.001280,78,1,27057.001280,665.601126,hintandextended,lora,60 +on0,1,8,24,0,0,0,2359.010240,78,0,-1.000000,1148.406349,hintandextended,lora,60 +on10,0,0,25,1,0,398,1600.001280,78,1,22648.001280,674.880717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,0,1540.001280,78,0,2897.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,120,1540.001280,78,0,10335.001280,641.600922,hintandextended,lora,60 +on9,0,0,25,1,0,1006,1600.001280,78,1,58364.001280,665.808717,hintandextended,lora,60 +on5,0,0,24,1,0,305,1545.001280,78,0,20885.001280,651.824717,hintandextended,lora,60 +on12,0,0,24,1,0,1020,1540.001280,78,0,63909.001280,651.040717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,107,1587.001280,78,0,5899.001280,660.400717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,78,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 +on4,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on3,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 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,983,1563.001280,79,0,59662.001280,650.800717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,367,1547.001280,79,0,22136.001280,644.400717,hintandextended,lora,60 +on0,1,2,24,0,0,0,1640.002560,79,0,-1.000000,707.201434,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,286,1586.001280,80,0,17821.001280,660.001331,hintandextended,lora,60 +on0,1,4,24,0,0,0,1896.005120,80,0,-1.000000,860.804096,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,150,1570.001280,80,0,9381.001280,653.600922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,60,1540.001280,80,0,4393.001280,641.601126,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1106,1566.001280,80,0,67959.001280,652.000717,hintandextended,lora,60 +on10,0,0,24,1,0,147,1567.001280,81,0,7544.001280,654.961126,hintandextended,lora,60 +on9,0,0,25,1,0,1200,1600.602560,81,1,74440.602560,673.889638,hintandextended,lora,60 +on7,0,0,24,1,0,1320,1540.001280,81,0,80288.001280,641.600717,hintandextended,lora,60 +on5,0,0,25,1,0,527,1600.001280,81,1,31390.001280,665.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,436,1556.001280,81,0,26201.001280,657.184717,hintandextended,lora,60 +on2,0,0,24,1,0,0,1540.001280,81,0,2770.001280,641.600922,hintandextended,lora,60 +on4,0,0,25,1,0,1156,1600.001280,81,1,69300.001280,665.600922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2346.611520,81,0,-1.000000,1143.447475,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1040,1560.001280,81,0,64606.001280,649.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,120,1540.001280,82,0,8390.001280,641.600922,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,2,24,0,0,0,1679.002560,82,0,-1.000000,722.801638,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,363,1543.001280,82,0,22126.001280,642.800717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,398,1578.001280,83,0,24799.001280,657.120922,hintandextended,lora,60 +on0,1,6,24,0,0,0,2146.608960,83,0,-1.000000,1012.245837,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,900,1540.001280,83,0,56027.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,960,1540.001280,83,0,59317.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,0,1540.001280,83,0,3059.001280,641.601126,hintandextended,lora,60 +on10,0,0,25,1,0,1080,1600.602560,83,1,65826.602560,668.609638,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,540,1540.001280,83,0,32920.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,117,1600.001280,84,1,6853.001280,665.601126,hintandextended,lora,60 +on3,0,0,24,1,0,272,1572.001280,84,0,17597.001280,654.400717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2050.007680,84,0,-1.000000,973.605325,hintandextended,lora,60 +on10,0,0,24,1,0,338,1578.001280,84,0,18640.001280,656.800717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,479,1599.001280,84,0,27849.001280,665.200717,hintandextended,lora,60 +on7,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 +on2,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,13,1553.001280,84,0,3618.001280,663.345331,hintandextended,lora,60 +on5,0,0,24,1,0,180,1540.001280,84,0,13138.001280,641.600717,hintandextended,lora,60 +on0,1,10,24,0,0,0,2492.012800,85,0,-1.000000,1252.807987,hintandextended,lora,60 +on2,0,0,25,1,0,387,1600.001280,85,1,22788.001280,674.784922,hintandextended,lora,60 +on7,0,0,24,1,0,749,1569.001280,85,0,44628.001280,653.200922,hintandextended,lora,60 +on3,0,0,25,1,0,698,1648.001280,85,1,36235.001280,684.800717,hintandextended,lora,60 +on10,0,0,25,1,0,278,1600.001280,85,1,19182.001280,674.784922,hintandextended,lora,60 +on4,0,0,24,1,0,28,1568.001280,85,0,3157.001280,652.800717,hintandextended,lora,60 +on9,0,0,24,1,0,151,1571.001280,85,0,8554.001280,656.560922,hintandextended,lora,60 +on11,0,0,24,1,0,445,1565.001280,85,0,27669.001280,651.600717,hintandextended,lora,60 +on8,0,0,24,1,0,872,1572.001280,85,0,52174.001280,654.400717,hintandextended,lora,60 +on12,0,0,24,1,0,540,1540.001280,85,0,35456.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,1,0,1064,1584.001280,85,0,62107.001280,659.200717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2152.608960,86,0,-1.000000,1014.645427,hintandextended,lora,60 +on3,0,0,24,1,0,840,1540.001280,86,0,53721.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,300,1540.001280,86,0,18721.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,960,1540.001280,86,0,59509.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,408,1588.001280,86,0,24398.001280,660.800922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,0,1563.602560,86,1,3594.602560,651.089638,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,473,1593.001280,86,0,25613.001280,662.800717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2076.007680,87,0,-1.000000,984.004710,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,420,1540.001280,87,0,28512.001280,641.600922,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,278,1600.001280,87,1,18043.001280,665.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1108,1568.001280,87,0,68246.001280,661.984717,hintandextended,lora,60 +on3,0,0,25,1,0,1199,1600.001280,87,1,71251.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,523,1583.001280,87,0,29693.001280,658.800922,hintandextended,lora,60 +on1,0,0,24,1,0,218,1578.001280,87,0,12268.001280,656.864717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,241,1541.001280,88,0,17172.001280,642.000922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,0,1540.001280,88,0,2844.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,143,1563.001280,88,0,10344.001280,659.985331,hintandextended,lora,60 +on0,1,6,24,0,0,0,2076.007680,88,0,-1.000000,984.005734,hintandextended,lora,60 +on8,0,0,25,1,0,235,1600.001280,88,1,12888.001280,666.145126,hintandextended,lora,60 +on7,0,0,25,1,0,819,1600.001280,88,1,48407.001280,665.600922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,480,1540.001280,88,0,32019.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on1,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 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1188,1588.001280,89,0,70081.001280,670.240717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1112,1572.001280,89,0,67467.001280,654.400717,hintandextended,lora,60 +on0,1,5,24,0,0,0,2026.006400,89,0,-1.000000,938.403584,hintandextended,lora,60 +on11,0,0,24,1,0,104,1584.001280,89,0,4724.001280,659.200717,hintandextended,lora,60 +on6,0,0,24,1,0,900,1540.001280,89,0,55329.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,1,0,600,1540.001280,89,0,38176.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,540,1540.001280,90,0,32730.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,328,1568.001280,90,0,20932.001280,652.800922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,240,1540.001280,90,0,14820.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,120,1540.001280,90,0,10520.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,600,1540.001280,90,0,37290.001280,660.224922,hintandextended,lora,60 +on0,1,9,24,0,0,0,2581.612800,90,0,-1.000000,1263.048192,hintandextended,lora,60 +on3,0,0,25,1,0,720,1600.602560,90,1,43629.602560,666.209638,hintandextended,lora,60 +on11,0,0,24,1,0,1218,1558.001280,90,0,73238.001280,648.800717,hintandextended,lora,60 +on12,0,0,24,1,0,1020,1540.001280,90,0,63981.001280,641.600922,hintandextended,lora,60 +on10,0,0,25,1,0,717,1600.001280,90,1,42714.001280,668.480922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,120,1600.602560,91,1,8525.602560,665.889638,hintandextended,lora,60 +on2,0,0,24,1,0,240,1540.001280,91,0,15871.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,339,1579.001280,91,0,18377.001280,666.704922,hintandextended,lora,60 +on6,0,0,24,1,0,540,1540.001280,91,0,35148.001280,641.600922,hintandextended,lora,60 +on9,0,0,24,1,0,928,1568.001280,91,0,56487.001280,652.800717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2340.611520,91,0,-1.000000,1141.047066,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 +on3,0,0,24,1,0,1160,1560.001280,91,0,69096.001280,649.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,811,1571.001280,91,0,49623.001280,654.000717,hintandextended,lora,60 +on11,0,0,25,1,0,420,1600.001280,91,1,23940.001280,665.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on4,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 +on7,0,0,24,1,0,1326,1546.001280,92,0,81564.001280,644.000717,hintandextended,lora,60 +on0,1,4,24,0,0,0,1894.005120,92,0,-1.000000,860.003072,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1020,1540.001280,92,0,61900.001280,641.600922,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,780,1540.001280,92,0,48050.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,707,1587.001280,92,0,41676.001280,660.400717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,297,1597.001280,93,0,17636.001280,664.400922,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1020,1540.001280,93,0,62558.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,349,1589.001280,93,0,21419.001280,661.200717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2110.608960,93,0,-1.000000,997.845222,hintandextended,lora,60 +on5,0,0,25,1,0,1080,1600.602560,93,1,67637.602560,665.889434,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1199,1599.001280,93,0,69950.001280,665.744717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,1238,1600.001280,93,1,74262.001280,665.600717,hintandextended,lora,60 +on2,0,0,24,1,0,212,1572.001280,94,0,13585.001280,654.400717,hintandextended,lora,60 +on5,0,0,24,1,0,649,1589.001280,94,0,39576.001280,661.200922,hintandextended,lora,60 +on10,0,0,25,1,0,1020,1600.602560,94,1,64469.602560,675.329638,hintandextended,lora,60 +on7,0,0,25,1,0,60,1600.602560,94,1,6062.602560,665.889638,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2096.811520,94,0,-1.000000,992.327270,hintandextended,lora,60 +on4,0,0,25,1,0,900,1600.602560,94,1,57499.602560,665.889638,hintandextended,lora,60 +on3,0,0,24,1,0,418,1598.001280,94,0,22211.001280,664.800717,hintandextended,lora,60 +on12,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 +on6,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1211,1551.001280,95,0,74520.001280,646.000717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,824,1584.001280,95,0,50407.001280,668.160717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on9,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 +on4,0,0,24,1,0,730,1550.001280,95,0,46325.001280,645.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,208,1568.001280,95,0,14210.001280,652.800922,hintandextended,lora,60 +on0,1,4,24,0,0,0,1840.005120,95,0,-1.000000,838.403072,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,642,1582.001280,96,0,37666.001280,658.400717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,lora,60 +on2,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,1,0,586,1586.001280,96,0,33476.001280,661.024717,hintandextended,lora,60 +on4,0,0,25,0,0,1477,1500.000000,96,1,-1.000000,600.000000,hintandextended,lora,60 +on12,0,0,25,0,0,1479,1500.000000,96,1,-1.000000,600.208000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1220,1560.001280,96,0,73696.001280,649.600717,hintandextended,lora,60 +on10,0,0,24,1,0,22,1562.001280,96,0,3322.001280,650.400922,hintandextended,lora,60 +on7,0,0,24,1,0,960,1540.001280,96,0,60386.001280,651.040717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2077.007680,96,0,-1.000000,984.404506,hintandextended,lora,60 +on6,0,0,24,1,0,1260,1540.001280,96,0,77331.001280,641.600717,hintandextended,lora,60 +on11,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 +on12,0,0,24,1,0,265,1565.001280,97,0,16699.001280,660.784717,hintandextended,lora,60 +on4,0,0,25,1,0,1184,1600.001280,97,1,69878.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,1,0,1080,1540.001280,97,0,67912.001280,650.880717,hintandextended,lora,60 +on5,0,0,24,1,0,1327,1547.001280,97,0,81695.001280,644.400717,hintandextended,lora,60 +on6,0,0,24,1,0,228,1588.001280,97,0,11177.001280,660.800717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2048.007680,97,0,-1.000000,972.804506,hintandextended,lora,60 +on3,0,0,25,1,0,355,1600.001280,97,1,19733.001280,665.600922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,0,0,1479,1500.000000,97,1,-1.000000,600.208000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2141.007680,98,0,-1.000000,1010.004710,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,240,1540.001280,98,0,15885.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,1080,1540.001280,98,0,65761.001280,645.024922,hintandextended,lora,60 +on12,0,0,25,1,0,1178,1600.001280,98,1,69992.001280,665.808717,hintandextended,lora,60 +on10,0,0,24,1,0,781,1541.001280,98,0,48711.001280,642.000717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,467,1587.001280,98,0,28489.001280,660.400922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,0,0,1478,1500.000000,98,1,-1.000000,600.000000,hintandextended,lora,60 +on3,0,0,24,1,0,720,1540.001280,98,0,43476.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,600,1540.001280,99,0,38488.001280,650.880717,hintandextended,lora,60 +on9,0,0,24,1,0,300,1540.001280,99,0,20446.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,60,1600.001280,99,1,4404.001280,684.224717,hintandextended,lora,60 +on11,0,0,25,1,0,0,1600.602560,99,1,1632.602560,665.889843,hintandextended,lora,60 +on3,0,0,25,1,0,177,1594.000000,99,1,12314.001280,663.200205,hintandextended,lora,60 +on10,0,0,24,1,0,1045,1565.001280,99,0,63980.001280,651.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,941,1600.001280,99,1,54359.001280,665.600717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2521.612800,99,0,-1.000000,1239.048192,hintandextended,lora,60 +on6,0,0,24,1,0,240,1540.001280,99,0,16740.001280,641.600922,hintandextended,lora,60 +on12,0,0,25,1,0,701,1600.001280,99,1,42472.001280,669.488922,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,436,1556.001280,100,0,27019.001280,648.000717,hintandextended,lora,60 +on8,0,0,24,1,0,0,1540.001280,100,0,1106.001280,650.784717,hintandextended,lora,60 +on11,0,0,24,1,0,116,1596.001280,100,0,5474.001280,664.000717,hintandextended,lora,60 +on3,0,0,24,1,0,840,1540.001280,100,0,53540.001280,641.600717,hintandextended,lora,60 +on5,0,0,25,0,0,1482,1500.000000,100,1,-1.000000,600.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2220.008960,100,0,-1.000000,1067.205018,hintandextended,lora,60 +on12,0,0,24,1,0,1320,1540.001280,100,0,82357.001280,641.600717,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,1,0,700,1580.001280,100,0,39997.001280,657.600717,hintandextended,lora,60 +on10,0,0,24,1,0,380,1560.001280,100,0,24356.001280,658.784717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,0,0,1480,1500.000000,100,1,-1.000000,600.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1153,1553.001280,101,0,71087.001280,646.800717,hintandextended,lora,60 +on1,0,0,24,1,0,540,1540.001280,101,0,34061.001280,663.264717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2200.008960,101,0,-1.000000,1059.205837,hintandextended,lora,60 +on8,0,0,25,1,0,159,1600.001280,101,1,9951.001280,667.840922,hintandextended,lora,60 +on3,0,0,25,1,0,658,1600.001280,101,1,36498.001280,665.808922,hintandextended,lora,60 +on5,0,0,24,1,0,0,1540.001280,101,0,2686.001280,645.024922,hintandextended,lora,60 +on2,0,0,24,1,0,802,1562.001280,101,0,50457.001280,650.400717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,lora,60 +on11,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 +on7,0,0,25,1,0,951,1600.001280,101,1,57334.001280,665.600717,hintandextended,lora,60 +on12,0,0,25,0,0,1485,1500.000000,101,1,-1.000000,600.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1183,1583.001280,102,0,70084.001280,658.800717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,102,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 +on9,0,0,24,1,0,1261,1541.001280,102,0,78960.001280,642.000717,hintandextended,lora,60 +on5,0,0,24,1,0,540,1540.001280,102,0,35847.001280,650.144922,hintandextended,lora,60 +on12,0,0,24,1,0,735,1555.001280,102,0,44559.001280,647.600717,hintandextended,lora,60 +on4,0,0,24,1,0,240,1540.001280,102,0,14817.001280,641.600717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2387.611520,102,0,-1.000000,1159.846861,hintandextended,lora,60 +on2,0,0,24,1,0,814,1574.001280,102,0,50230.001280,655.200717,hintandextended,lora,60 +on3,0,0,25,1,0,1320,1600.602560,102,2,80713.602560,665.889434,hintandextended,lora,60 +on7,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 +on6,0,0,24,1,0,420,1540.001280,102,0,26508.001280,641.600717,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,659,1599.001280,103,0,39347.001280,665.200717,hintandextended,lora,60 +on11,0,0,24,1,0,87,1567.001280,103,0,3818.001280,652.400717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1080,1540.001280,103,0,67550.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,240,1540.001280,103,0,15630.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,145,1565.001280,103,0,10616.001280,651.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2248.008960,103,0,-1.000000,1078.405222,hintandextended,lora,60 +on9,0,0,24,1,0,572,1572.001280,103,0,33193.001280,654.400922,hintandextended,lora,60 +on8,0,0,24,1,0,1295,1575.001280,103,0,76731.001280,655.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,727,1547.001280,104,0,45518.001280,644.400922,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,1,0,35,1575.001280,104,0,1047.001280,655.600717,hintandextended,lora,60 +on0,1,5,24,0,0,0,2001.006400,104,0,-1.000000,928.403789,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,900,1540.001280,104,0,57526.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,1162,1562.001280,104,0,69874.001280,650.400717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1020,1540.001280,104,0,64339.001280,643.360717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,660,1540.001280,105,0,40804.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1286,1600.001280,105,1,79048.001280,668.832922,hintandextended,lora,60 +on0,1,7,24,0,0,0,2260.008960,105,0,-1.000000,1083.205427,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1200,1540.001280,105,0,73205.001280,648.864717,hintandextended,lora,60 +on2,0,0,24,1,0,1025,1545.001280,105,0,61530.001280,643.600717,hintandextended,lora,60 +on5,0,0,24,1,0,540,1540.001280,105,0,35610.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,298,1600.001280,105,1,16942.001280,665.600922,hintandextended,lora,60 +on4,0,0,24,1,0,219,1579.001280,105,0,11742.001280,666.384717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1325,1545.001280,106,0,82230.001280,643.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2056.007680,106,0,-1.000000,976.004710,hintandextended,lora,60 +on4,0,0,24,1,0,960,1540.001280,106,0,58864.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1220,1560.001280,106,0,75401.001280,649.600717,hintandextended,lora,60 +on9,0,0,24,1,0,181,1541.001280,106,0,11879.001280,642.000922,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,60,1540.001280,106,0,5592.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,423,1543.001280,106,0,25552.001280,642.800922,hintandextended,lora,60 +on1,0,0,24,1,0,180,1540.001280,107,0,13056.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,0,1540.001280,107,0,1202.001280,641.600717,hintandextended,lora,60 +on5,0,0,25,1,0,1128,1600.001280,107,1,68462.001280,665.600717,hintandextended,lora,60 +on4,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 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1952.005120,107,0,-1.000000,883.202867,hintandextended,lora,60 +on7,0,0,24,1,0,1020,1540.001280,107,0,62583.001280,650.784717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on6,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 +on2,0,0,25,1,0,1246,1600.001280,108,1,73817.001280,667.840717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,1080,1600.602560,108,1,67099.602560,675.073638,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,759,1600.001280,108,1,45827.001280,675.040922,hintandextended,lora,60 +on6,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 +on11,0,0,25,1,0,600,1600.602560,108,1,37410.602560,671.713638,hintandextended,lora,60 +on1,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 +on10,0,0,24,1,0,60,1540.001280,108,0,5285.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,1,0,420,1540.001280,108,0,25890.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2153.210240,108,0,-1.000000,1014.886349,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,874,1574.001280,109,0,53924.001280,659.104717,hintandextended,lora,60 +on4,0,0,25,0,0,1478,1500.000000,109,1,-1.000000,600.000000,hintandextended,lora,60 +on5,0,0,24,1,0,540,1540.001280,109,0,34242.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.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,25,1,0,938,1600.001280,109,1,57453.001280,674.528717,hintandextended,lora,60 +on9,0,0,25,1,0,972,1600.001280,109,1,60727.001280,672.800717,hintandextended,lora,60 +on3,0,0,24,1,0,680,1560.001280,109,0,42920.001280,649.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2088.007680,109,0,-1.000000,988.804506,hintandextended,lora,60 +on11,0,0,24,1,0,120,1540.001280,109,0,7792.001280,641.600922,hintandextended,lora,60 +on1,0,0,24,1,0,650,1590.001280,110,0,36866.001280,661.600922,hintandextended,lora,60 +on9,0,0,24,1,0,1221,1561.001280,110,0,73088.001280,650.000922,hintandextended,lora,60 +on5,0,0,24,1,0,494,1554.001280,110,0,30160.001280,647.200717,hintandextended,lora,60 +on7,0,0,25,0,0,1477,1500.000000,110,1,-1.000000,600.000000,hintandextended,lora,60 +on8,0,0,24,1,0,21,1561.001280,110,0,2998.001280,650.000717,hintandextended,lora,60 +on3,0,0,24,1,0,381,1561.001280,110,0,24383.001280,650.000717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,1024,1600.001280,110,1,63986.001280,683.456717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2340.011520,110,0,-1.000000,1166.407066,hintandextended,lora,60 +on2,0,0,24,1,0,967,1547.001280,110,0,60965.001280,645.648717,hintandextended,lora,60 +on4,0,0,25,1,0,1138,1600.001280,110,1,68213.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,123,1543.001280,110,0,8248.001280,642.800922,hintandextended,lora,60 +on2,0,0,24,1,0,1140,1540.001280,111,0,69440.001280,646.720717,hintandextended,lora,60 +on0,1,5,24,0,0,0,2024.208960,111,0,-1.000000,937.685222,hintandextended,lora,60 +on4,0,0,24,1,0,721,1541.001280,111,0,44275.001280,642.000717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,900,1600.602560,111,1,54688.602560,665.889638,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,540,1600.602560,111,1,36092.602560,674.113434,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,638,1600.001280,111,1,38882.001280,665.600717,hintandextended,lora,60 +on3,0,0,25,1,0,1298,1600.001280,112,1,81036.001280,679.840717,hintandextended,lora,60 +on5,0,0,25,1,0,117,1600.001280,112,1,5869.001280,672.160922,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,451,1571.001280,112,0,26170.001280,654.000922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,391,1571.001280,112,0,22244.001280,654.001126,hintandextended,lora,60 +on2,0,0,24,1,0,840,1540.001280,112,0,50610.001280,641.600922,hintandextended,lora,60 +on10,0,0,25,1,0,1382,1600.000000,112,1,85336.000000,671.456000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2301.008960,112,0,-1.000000,1125.206246,hintandextended,lora,60 +on6,0,0,24,1,0,530,1590.001280,112,0,30871.001280,661.600717,hintandextended,lora,60 +on7,0,0,24,1,0,0,1540.001280,112,0,2024.001280,650.784717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,762,1582.001280,113,0,44380.001280,662.304717,hintandextended,lora,60 +on2,0,0,24,1,0,123,1543.001280,113,0,10322.001280,642.800717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,0,0,1441,1500.000000,113,1,-1.000000,609.440000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,655,1595.001280,113,0,38921.001280,663.600717,hintandextended,lora,60 +on4,0,0,24,1,0,861,1561.001280,113,0,51820.001280,659.440717,hintandextended,lora,60 +on11,0,0,25,1,0,809,1600.001280,113,1,49852.001280,668.320717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1940.006400,113,0,-1.000000,904.003584,hintandextended,lora,60 +on10,0,0,25,0,0,1478,1500.000000,114,1,-1.000000,600.000000,hintandextended,lora,60 +on8,0,0,25,1,0,934,1600.001280,114,1,57262.001280,668.608717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1164,1564.001280,114,0,69798.001280,651.200717,hintandextended,lora,60 +on5,0,0,26,1,0,1140,1717.001280,114,2,62587.001280,715.760717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,0,0,1471,1500.000000,114,1,-1.000000,601.728000,hintandextended,lora,60 +on3,0,0,24,1,0,749,1569.001280,114,0,44806.001280,661.872717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,791,1600.001280,114,1,49195.001280,673.248717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2040.007680,114,0,-1.000000,969.604301,hintandextended,lora,60 +on6,0,0,24,1,0,879,1579.001280,114,0,51639.001280,665.968717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,540,1540.001280,115,0,32877.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,679,1559.001280,115,0,40782.001280,649.200717,hintandextended,lora,60 +on6,0,0,25,1,0,220,1600.001280,115,1,11227.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,1,0,164,1584.001280,115,0,7534.001280,668.480717,hintandextended,lora,60 +on11,0,0,24,1,0,606,1546.001280,115,0,39344.001280,644.000717,hintandextended,lora,60 +on1,0,0,24,1,0,89,1569.001280,115,0,3795.001280,653.200922,hintandextended,lora,60 +on7,0,0,24,1,0,960,1540.001280,115,0,59827.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,0,0,1479,1500.000000,115,1,-1.000000,600.208000,hintandextended,lora,60 +on5,0,0,25,1,0,480,1600.602560,115,1,31887.602560,669.569434,hintandextended,lora,60 +on12,0,0,24,1,0,720,1540.001280,115,0,44852.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,1,0,300,1540.001280,115,0,18806.001280,641.600922,hintandextended,lora,60 +on0,1,10,24,0,0,0,2592.614080,115,0,-1.000000,1293.048499,hintandextended,lora,60 +on1,0,0,24,1,0,512,1572.001280,116,0,29066.001280,663.584717,hintandextended,lora,60 +on6,0,0,25,1,0,172,1600.001280,116,1,9750.001280,675.040922,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,734,1554.001280,116,0,44784.001280,664.480922,hintandextended,lora,60 +on0,1,6,24,0,0,0,2064.007680,116,0,-1.000000,979.204710,hintandextended,lora,60 +on7,0,0,24,1,0,240,1540.001280,116,0,15057.001280,641.600717,hintandextended,lora,60 +on11,0,0,25,1,0,588,1600.001280,116,1,35984.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,1,0,95,1575.001280,116,0,5987.001280,664.784717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,163,1583.001280,117,0,9279.001280,669.648922,hintandextended,lora,60 +on2,0,0,24,1,0,1140,1540.001280,117,0,69525.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,878,1600.001280,117,1,54177.001280,665.600922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,1118,1600.001280,117,1,67673.001280,665.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2201.008960,117,0,-1.000000,1059.605837,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,231,1600.001280,117,1,13276.001280,671.264922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,751,1571.001280,117,0,45044.001280,654.000717,hintandextended,lora,60 +on5,0,0,24,1,0,422,1542.001280,117,0,28408.001280,642.400922,hintandextended,lora,60 +on2,0,0,24,1,0,180,1540.001280,118,0,13571.001280,650.784922,hintandextended,lora,60 +on3,0,0,24,1,0,480,1540.001280,118,0,32218.001280,650.784717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,816,1576.001280,118,0,50322.001280,657.984717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2341.010240,118,0,-1.000000,1141.206144,hintandextended,lora,60 +on8,0,0,24,1,0,900,1540.001280,118,0,57652.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,1,0,595,1595.001280,118,0,34579.001280,663.600922,hintandextended,lora,60 +on11,0,0,25,1,0,878,1600.001280,118,1,53345.001280,665.600717,hintandextended,lora,60 +on1,0,0,24,1,0,420,1540.001280,118,0,26103.001280,641.600717,hintandextended,lora,60 +on12,0,0,25,1,0,1124,1600.001280,118,1,67009.001280,665.600717,hintandextended,lora,60 +on4,0,0,25,0,0,1498,1500.000000,118,1,-1.000000,600.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,706,1586.001280,119,0,40668.001280,669.184717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,836,1600.001280,119,1,48929.001280,665.600717,hintandextended,lora,60 +on3,0,0,25,1,0,360,1600.602560,119,1,22319.602560,665.889843,hintandextended,lora,60 +on11,0,0,24,1,0,1320,1540.001280,119,0,80413.001280,641.600717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2317.611520,119,0,-1.000000,1131.847270,hintandextended,lora,60 +on8,0,0,25,1,0,770,1600.001280,119,1,45905.001280,674.784922,hintandextended,lora,60 +on2,0,0,26,1,0,1118,1660.001280,119,2,67000.001280,699.040922,hintandextended,lora,60 +on6,0,0,25,1,0,278,1600.001280,119,1,16770.001280,665.808717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,196,1556.001280,119,0,11885.001280,648.544717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1840.005120,120,0,-1.000000,838.402867,hintandextended,lora,60 +on4,0,0,24,1,0,1301,1581.001280,120,0,76413.001280,658.000717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,939,1579.001280,120,0,55797.001280,663.280717,hintandextended,lora,60 +on6,0,0,24,1,0,772,1592.001280,120,0,46136.001280,662.400717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,106,1586.001280,120,0,6704.001280,660.000717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,677,1557.001280,121,0,39866.001280,648.400717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1140,1540.001280,121,0,68665.001280,641.600717,hintandextended,lora,60 +on0,1,2,24,0,0,0,1661.002560,121,0,-1.000000,715.601434,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,361,1541.001280,122,0,25106.001280,642.000922,hintandextended,lora,60 +on8,0,0,24,1,0,583,1583.001280,122,0,32888.001280,658.800717,hintandextended,lora,60 +on1,0,0,24,1,0,507,1567.001280,122,0,29404.001280,652.400717,hintandextended,lora,60 +on11,0,0,25,1,0,279,1600.001280,122,1,17727.001280,665.600717,hintandextended,lora,60 +on2,0,0,24,1,0,703,1583.001280,122,0,41582.001280,672.080717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1128,1588.001280,122,0,65834.001280,660.800717,hintandextended,lora,60 +on10,0,0,24,1,0,321,1561.001280,122,0,21315.001280,650.000717,hintandextended,lora,60 +on9,0,0,25,1,0,1435,1600.000000,122,1,85268.000000,666.400000,hintandextended,lora,60 +on0,1,10,24,0,0,0,2491.011520,122,0,-1.000000,1252.406861,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,783,1543.001280,122,0,50365.001280,642.800717,hintandextended,lora,60 +on7,0,0,24,1,0,180,1540.001280,122,0,14406.001280,646.944717,hintandextended,lora,60 +on8,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 +on6,0,0,24,1,0,600,1540.001280,123,0,36471.001280,641.600922,hintandextended,lora,60 +on5,0,0,24,1,0,23,1563.001280,123,0,3415.001280,659.984717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,lora,60 +on10,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 +on9,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 +on1,0,0,25,1,0,108,1600.001280,123,1,5788.001280,665.601126,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1740.003840,123,0,-1.000000,772.802765,hintandextended,lora,60 +on10,0,0,24,1,0,504,1564.001280,124,0,32451.001280,651.200717,hintandextended,lora,60 +on8,0,0,24,1,0,1438,1598.000000,124,0,83661.000000,664.800000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2152.007680,124,0,-1.000000,1040.004506,hintandextended,lora,60 +on6,0,0,24,1,0,367,1547.001280,124,0,23390.001280,644.400717,hintandextended,lora,60 +on11,0,0,24,1,0,757,1577.001280,124,0,46887.001280,656.400717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,420,1540.001280,124,0,25834.001280,650.304717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,46,1586.001280,124,0,1637.001280,660.000922,hintandextended,lora,60 +on2,0,0,24,1,0,1098,1558.001280,124,0,67126.001280,648.800717,hintandextended,lora,60 +on1,0,0,25,0,0,1478,1500.000000,124,1,-1.000000,600.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,120,1540.001280,125,0,10765.001280,641.600922,hintandextended,lora,60 +on0,1,7,24,0,0,0,2204.008960,125,0,-1.000000,1060.806042,hintandextended,lora,60 +on12,0,0,24,1,0,825,1585.001280,125,0,49283.001280,659.601126,hintandextended,lora,60 +on5,0,0,24,1,0,476,1596.001280,125,0,25536.001280,664.000717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,191,1551.001280,125,0,11094.001280,646.000717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,360,1540.001280,125,0,22275.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,279,1579.001280,125,0,15042.001280,657.201126,hintandextended,lora,60 +on4,0,0,24,1,0,511,1571.001280,125,0,31308.001280,654.000717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2078.210240,126,0,-1.000000,984.886144,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,1020,1600.602560,126,1,63737.602560,679.457434,hintandextended,lora,60 +on7,0,0,24,1,0,316,1556.001280,126,0,20391.001280,648.000717,hintandextended,lora,60 +on10,0,0,25,1,0,1185,1600.001280,126,1,72068.001280,665.600922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,259,1559.001280,126,0,15177.001280,649.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1080,1600.602560,126,2,68383.602560,666.689434,hintandextended,lora,60 +on4,0,0,24,1,0,907,1547.001280,126,0,54747.001280,644.400717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,418,1598.001280,127,0,23155.001280,681.984922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1200,1540.001280,127,0,74202.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,1026,1546.001280,127,0,63264.001280,644.000717,hintandextended,lora,60 +on2,0,0,25,1,0,976,1600.001280,127,1,61167.001280,671.296717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,282,1582.001280,127,0,15018.001280,658.401126,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,341,1581.001280,127,0,18842.001280,658.000922,hintandextended,lora,60 +on8,0,0,25,1,0,1080,1600.001280,127,1,68167.001280,665.600922,hintandextended,lora,60 +on1,0,0,24,1,0,1380,1540.000000,127,0,85998.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2312.008960,127,0,-1.000000,1129.606042,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,0,1540.001280,128,0,1690.001280,641.600717,hintandextended,lora,60 +on6,0,0,25,1,0,720,1600.602560,128,1,44576.602560,665.889434,hintandextended,lora,60 +on4,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 +on5,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,90,1570.001280,128,0,5599.001280,653.600717,hintandextended,lora,60 +on10,0,0,24,1,0,911,1551.001280,128,0,55673.001280,646.000717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,829,1589.001280,128,0,48326.001280,661.200717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1021,1541.001280,128,0,63958.001280,642.000717,hintandextended,lora,60 +on12,0,0,24,1,0,840,1540.001280,128,0,51764.001280,644.320922,hintandextended,lora,60 +on0,1,7,24,0,0,0,2255.610240,128,0,-1.000000,1081.445939,hintandextended,lora,60 +on8,0,0,25,1,0,240,1600.602560,129,1,15127.602560,668.097638,hintandextended,lora,60 +on0,1,8,24,0,0,0,2341.212800,129,0,-1.000000,1141.287987,hintandextended,lora,60 +on9,0,0,25,0,0,1478,1500.000000,129,1,-1.000000,600.000000,hintandextended,lora,60 +on5,0,0,24,1,0,822,1582.001280,129,0,49086.001280,658.400717,hintandextended,lora,60 +on4,0,0,24,1,0,60,1540.001280,129,0,6277.001280,641.600922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,204,1564.001280,129,0,14091.001280,651.200717,hintandextended,lora,60 +on7,0,0,25,1,0,371,1600.001280,129,1,24705.001280,672.672717,hintandextended,lora,60 +on10,0,0,25,1,0,540,1600.602560,129,1,33418.602560,669.313638,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,637,1600.001280,129,1,40022.001280,675.360922,hintandextended,lora,60 +on1,0,0,24,1,0,17,1557.001280,129,0,395.001280,648.400717,hintandextended,lora,60 +on9,0,0,24,1,0,0,1540.001280,130,0,1485.001280,641.600922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,660,1540.001280,130,0,41470.001280,641.600922,hintandextended,lora,60 +on8,0,0,24,1,0,1288,1568.001280,130,0,78071.001280,656.000717,hintandextended,lora,60 +on10,0,0,24,1,0,145,1565.001280,130,0,7391.001280,651.600717,hintandextended,lora,60 +on11,0,0,25,1,0,540,1600.602560,130,1,34348.602560,665.889638,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2352.611520,130,0,-1.000000,1145.847270,hintandextended,lora,60 +on5,0,0,24,1,0,243,1543.001280,130,0,16065.001280,642.800922,hintandextended,lora,60 +on12,0,0,24,1,0,322,1562.001280,130,0,18336.001280,650.400717,hintandextended,lora,60 +on7,0,0,24,1,0,720,1540.001280,130,0,44296.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,703,1583.001280,131,0,40321.001280,658.800922,hintandextended,lora,60 +on4,0,0,24,1,0,900,1540.001280,131,0,54383.001280,650.304717,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,131,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,993,1600.001280,131,1,59220.001280,669.280922,hintandextended,lora,60 +on8,0,0,24,1,0,1380,1540.000000,131,0,85246.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2334.008960,131,0,-1.000000,1138.405837,hintandextended,lora,60 +on1,0,0,24,1,0,290,1590.001280,131,0,15564.001280,661.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,540,1540.001280,131,0,33083.001280,642.720717,hintandextended,lora,60 +on12,0,0,24,1,0,650,1590.001280,131,0,39539.001280,661.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,474,1594.001280,131,0,25502.001280,663.200922,hintandextended,lora,60 +on0,1,4,24,0,0,0,1908.606400,132,0,-1.000000,865.843994,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,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 +on5,0,0,24,1,0,1200,1540.001280,132,0,74205.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,900,1600.602560,132,1,54713.602560,665.889638,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,729,1549.001280,132,0,46486.001280,645.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1020,1540.001280,132,0,61971.001280,641.600922,hintandextended,lora,60 +on8,0,0,24,1,0,688,1568.001280,133,0,40420.001280,652.800717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,240,1540.001280,133,0,16691.001280,641.601126,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,835,1595.001280,133,0,49431.001280,663.600717,hintandextended,lora,60 +on4,0,0,24,1,0,840,1540.001280,133,0,52973.001280,641.600922,hintandextended,lora,60 +on0,1,8,24,0,0,0,2330.010240,133,0,-1.000000,1136.806554,hintandextended,lora,60 +on6,0,0,24,1,0,1336,1556.001280,133,0,82452.001280,648.000717,hintandextended,lora,60 +on12,0,0,24,1,0,180,1540.001280,133,0,13105.001280,641.600922,hintandextended,lora,60 +on1,0,0,24,1,0,173,1593.001280,133,0,7675.001280,662.800717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1159,1559.001280,133,0,69640.001280,649.200717,hintandextended,lora,60 +on7,0,0,24,1,0,697,1577.001280,134,0,40402.001280,665.840717,hintandextended,lora,60 +on5,0,0,25,1,0,0,1600.602560,134,1,1799.602560,665.889843,hintandextended,lora,60 +on0,1,6,24,0,0,0,2136.210240,134,0,-1.000000,1008.086349,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,387,1600.001280,134,1,23768.001280,673.824717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,459,1600.001280,134,1,26855.001280,665.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1320,1540.001280,134,0,81093.001280,641.600717,hintandextended,lora,60 +on2,0,0,25,1,0,240,1600.602560,134,1,15898.602560,675.073638,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,1178,1600.001280,135,1,71438.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,1,0,57,1597.001280,135,0,581.001280,664.400717,hintandextended,lora,60 +on11,0,0,24,1,0,1080,1540.001280,135,0,67604.001280,646.944717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2114.007680,135,0,-1.000000,999.204301,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,900,1540.001280,135,0,55764.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,1260,1540.001280,135,0,78865.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,191,1551.001280,135,0,11215.001280,646.000717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,60,1600.602560,136,1,5068.602560,665.889638,hintandextended,lora,60 +on11,0,0,25,1,0,1358,1600.001280,136,1,81767.001280,665.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,0,1540.001280,136,0,967.001280,651.040922,hintandextended,lora,60 +on2,0,0,25,0,0,1478,1500.000000,136,1,-1.000000,600.208000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2113.608960,136,0,-1.000000,999.045837,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,338,1600.001280,136,1,21052.001280,665.808922,hintandextended,lora,60 +on10,0,0,24,1,0,240,1540.001280,136,0,17680.001280,646.944717,hintandextended,lora,60 +on12,0,0,24,1,0,480,1540.001280,136,0,32253.001280,641.600922,hintandextended,lora,60 +on9,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 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1770.003840,137,0,-1.000000,784.802355,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,432,1552.001280,137,0,25462.001280,646.400922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,355,1595.001280,137,0,20119.001280,663.600717,hintandextended,lora,60 +on2,0,0,24,1,0,240,1540.001280,137,0,17820.001280,641.600717,hintandextended,lora,60 +on7,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,138,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,540,1600.602560,138,1,33074.602560,665.953434,hintandextended,lora,60 +on11,0,0,24,1,0,420,1540.001280,138,0,28862.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1200,1540.001280,138,0,73463.001280,641.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2259.610240,138,0,-1.000000,1083.045939,hintandextended,lora,60 +on7,0,0,24,1,0,804,1564.001280,138,0,47939.001280,651.200717,hintandextended,lora,60 +on2,0,0,24,1,0,188,1548.001280,138,0,11670.001280,644.800717,hintandextended,lora,60 +on4,0,0,25,1,0,738,1641.001280,138,1,41709.001280,682.000717,hintandextended,lora,60 +on1,0,0,25,1,0,639,1600.001280,138,1,37713.001280,665.808922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,478,1598.001280,139,0,28868.001280,664.800717,hintandextended,lora,60 +on3,0,0,25,1,0,840,1600.602560,139,1,51365.602560,665.889638,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,1239,1600.001280,139,1,72946.001280,665.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2302.611520,139,0,-1.000000,1125.847066,hintandextended,lora,60 +on6,0,0,24,1,0,1020,1540.001280,139,0,62125.001280,650.785126,hintandextended,lora,60 +on7,0,0,24,1,0,99,1579.001280,139,0,7274.001280,657.200717,hintandextended,lora,60 +on4,0,0,24,1,0,780,1540.001280,139,0,47119.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,1277,1557.001280,139,0,77638.001280,648.400717,hintandextended,lora,60 +on8,0,0,25,1,0,1182,1600.001280,139,1,70286.001280,668.544717,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 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,600,1540.001280,140,0,37388.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,1075,1595.001280,140,0,63115.001280,663.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,lora,60 +on3,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 +on6,0,0,24,1,0,60,1540.001280,140,0,3780.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1398,1558.000000,140,0,85987.000000,648.800000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1860.003840,140,0,-1.000000,846.402150,hintandextended,lora,60 +on4,0,0,24,1,0,60,1540.001280,141,0,6616.001280,643.104717,hintandextended,lora,60 +on9,0,0,25,1,0,281,1600.001280,141,1,16952.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,974,1562.001280,141,1,59766.001280,659.584922,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2050.007680,141,0,-1.000000,973.604915,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,1065,1600.001280,141,1,63209.001280,665.600717,hintandextended,lora,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,158,1600.001280,141,1,8549.001280,679.648922,hintandextended,lora,60 +on1,0,0,25,1,0,222,1600.001280,141,1,14273.001280,674.784922,hintandextended,lora,60 +on9,0,0,25,1,0,1298,1600.001280,142,1,77660.001280,665.600717,hintandextended,lora,60 +on1,0,0,24,1,0,1200,1540.001280,142,0,73687.001280,650.784717,hintandextended,lora,60 +on7,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,1,0,1172,1572.001280,142,0,70360.001280,654.400717,hintandextended,lora,60 +on12,0,0,24,1,0,1380,1540.000000,142,0,83979.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2354.008960,142,0,-1.000000,1146.405018,hintandextended,lora,60 +on6,0,0,24,1,0,727,1547.001280,142,0,46663.001280,644.400717,hintandextended,lora,60 +on11,0,0,24,1,0,840,1540.001280,142,0,51032.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,1,0,409,1589.001280,142,0,24530.001280,661.200717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,600,1540.001280,142,0,38924.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,615,1555.001280,143,0,39168.001280,649.104922,hintandextended,lora,60 +on6,0,0,25,1,0,780,1600.001280,143,1,46470.001280,665.600922,hintandextended,lora,60 +on1,0,0,24,1,0,180,1540.001280,143,0,14057.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,525,1585.001280,143,0,32377.001280,659.600922,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1140,1540.001280,143,0,70204.001280,641.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2184.008960,143,0,-1.000000,1052.805632,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,63,1543.001280,143,0,6180.001280,642.800717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,698,1600.001280,143,1,40939.001280,665.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1020,1540.001280,144,0,64781.001280,641.600717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2509.011520,144,0,-1.000000,1234.007066,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,360,1540.001280,144,0,23388.001280,651.041126,hintandextended,lora,60 +on6,0,0,24,1,0,231,1591.001280,144,0,13427.001280,662.000922,hintandextended,lora,60 +on7,0,0,24,1,0,114,1594.001280,144,0,4734.001280,663.200717,hintandextended,lora,60 +on2,0,0,24,1,0,840,1540.001280,144,0,53345.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,1,0,963,1543.001280,144,0,61005.001280,642.800717,hintandextended,lora,60 +on12,0,0,24,1,0,1237,1577.001280,144,0,75334.001280,656.400717,hintandextended,lora,60 +on11,0,0,24,1,0,120,1540.001280,144,0,10456.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,0,1540.001280,144,0,988.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,1,0,1200,1540.001280,145,0,74498.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,780,1540.001280,145,0,48856.001280,646.240922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,982,1562.001280,145,0,57977.001280,659.584717,hintandextended,lora,60 +on2,0,0,24,1,0,420,1540.001280,145,0,25811.001280,641.600717,hintandextended,lora,60 +on6,0,0,25,1,0,1071,1600.001280,145,1,63575.001280,665.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,687,1567.001280,145,0,42609.001280,652.400922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,770,1590.001280,145,0,44219.001280,661.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2271.008960,145,0,-1.000000,1087.605427,hintandextended,lora,60 +on8,0,0,25,1,0,824,1600.001280,146,1,49496.001280,674.784717,hintandextended,lora,60 +on1,0,0,25,1,0,418,1600.001280,146,1,23266.001280,665.600922,hintandextended,lora,60 +on5,0,0,25,1,0,897,1600.001280,146,1,52764.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,53,1593.001280,146,0,3048.001280,662.800922,hintandextended,lora,60 +on2,0,0,24,1,0,753,1573.001280,146,0,46605.001280,663.984717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,195,1555.001280,146,0,11212.001280,647.600717,hintandextended,lora,60 +on10,0,0,24,1,0,120,1540.001280,146,0,8398.001280,641.600717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2391.011520,146,0,-1.000000,1186.807066,hintandextended,lora,60 +on4,0,0,24,1,0,932,1572.001280,146,0,56747.001280,654.400922,hintandextended,lora,60 +on6,0,0,24,1,0,300,1540.001280,146,0,21254.001280,650.784717,hintandextended,lora,60 +on11,0,0,24,1,0,240,1540.001280,147,0,15310.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1365,1585.001280,147,0,79566.001280,659.600717,hintandextended,lora,60 +on6,0,0,25,1,0,120,1600.602560,147,1,8154.602560,665.889434,hintandextended,lora,60 +on2,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,8,24,0,0,0,2325.611520,147,0,-1.000000,1135.046656,hintandextended,lora,60 +on5,0,0,24,1,0,840,1540.001280,147,0,52193.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,774,1594.001280,147,0,44739.001280,663.200922,hintandextended,lora,60 +on10,0,0,24,1,0,990,1570.001280,147,0,58507.001280,653.600717,hintandextended,lora,60 +on12,0,0,24,1,0,785,1545.001280,147,0,47660.001280,643.600717,hintandextended,lora,60 +on7,0,0,24,1,0,226,1586.001280,147,0,14172.001280,660.000717,hintandextended,lora,60 +on12,0,0,24,1,0,300,1540.001280,148,0,19062.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,480,1540.001280,148,0,31063.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1951.006400,148,0,-1.000000,908.403789,hintandextended,lora,60 +on3,0,0,24,1,0,1344,1564.001280,148,0,81507.001280,651.200717,hintandextended,lora,60 +on4,0,0,24,1,0,998,1578.001280,148,0,58808.001280,656.800922,hintandextended,lora,60 +on2,0,0,24,1,0,218,1578.001280,148,0,14194.001280,656.800717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1020,1540.001280,149,0,61473.001280,642.400922,hintandextended,lora,60 +on10,0,0,24,1,0,111,1591.001280,149,0,6672.001280,662.000717,hintandextended,lora,60 +on11,0,0,24,1,0,1140,1540.001280,149,0,68900.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,660,1540.001280,149,0,41085.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1273,1553.001280,149,0,77850.001280,646.800717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,360,1600.602560,149,1,22128.602560,665.890048,hintandextended,lora,60 +on0,1,6,24,0,0,0,2227.608960,149,0,-1.000000,1044.645837,hintandextended,lora,60 +on2,0,0,25,1,0,540,1600.602560,150,1,33026.602560,675.329638,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,0,1540.001280,150,0,277.001280,641.600922,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,220,1580.001280,150,0,11279.001280,657.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,600,1540.001280,150,0,37743.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,300,1540.001280,150,0,21313.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1272,1552.001280,150,0,78949.001280,646.400717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2258.610240,150,0,-1.000000,1082.646144,hintandextended,lora,60 +on1,0,0,24,1,0,728,1548.001280,150,0,43787.001280,644.800717,hintandextended,lora,60 +on11,0,0,24,1,0,167,1587.001280,151,0,8475.001280,669.584717,hintandextended,lora,60 +on5,0,0,24,1,0,1140,1540.001280,151,0,69233.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1020,1540.001280,151,0,63263.001280,641.600922,hintandextended,lora,60 +on10,0,0,24,1,0,840,1540.001280,151,0,51354.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2148.007680,151,0,-1.000000,1012.804710,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,299,1600.001280,151,1,17555.001280,665.600922,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,227,1600.001280,151,1,14492.001280,674.784717,hintandextended,lora,60 +on1,0,0,24,1,0,372,1552.001280,152,0,22148.001280,646.400717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,60,1540.001280,152,0,7227.001280,641.600717,hintandextended,lora,60 +on6,0,0,25,1,0,566,1600.001280,152,1,35062.001280,677.824922,hintandextended,lora,60 +on5,0,0,24,1,0,19,1559.001280,152,0,3490.001280,652.624922,hintandextended,lora,60 +on0,1,7,24,0,0,0,2174.008960,152,0,-1.000000,1048.805837,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,698,1600.001280,152,1,42255.001280,665.600922,hintandextended,lora,60 +on7,0,0,24,1,0,462,1582.001280,152,0,26984.001280,665.888922,hintandextended,lora,60 +on11,0,0,26,1,0,1165,1660.001280,152,2,66395.001280,689.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,152,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 +on0,1,8,24,0,0,0,2277.010240,153,0,-1.000000,1115.606554,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,136,1556.001280,153,0,8143.001280,652.640922,hintandextended,lora,60 +on4,0,0,25,1,0,98,1600.001280,153,1,6241.001280,665.600922,hintandextended,lora,60 +on10,0,0,24,1,0,780,1540.001280,153,0,49141.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,15,1555.001280,153,0,569.001280,656.304717,hintandextended,lora,60 +on3,0,0,24,1,0,1239,1579.001280,153,0,74978.001280,657.200717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,287,1587.001280,153,0,16513.001280,660.400922,hintandextended,lora,60 +on2,0,0,24,1,0,873,1573.001280,153,0,52062.001280,654.800922,hintandextended,lora,60 +on9,0,0,24,1,0,1031,1551.001280,153,0,62441.001280,646.000717,hintandextended,lora,60 +on9,0,0,24,1,0,1299,1579.001280,154,0,77439.001280,659.440717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2199.211520,154,0,-1.000000,1058.887270,hintandextended,lora,60 +on6,0,0,24,1,0,0,1540.001280,154,0,830.001280,641.601126,hintandextended,lora,60 +on5,0,0,24,1,0,660,1540.001280,154,0,43276.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1237,1577.001280,154,0,72828.001280,656.400717,hintandextended,lora,60 +on4,0,0,24,1,0,159,1579.001280,154,0,9066.001280,657.200717,hintandextended,lora,60 +on7,0,0,25,1,0,240,1600.602560,154,1,15403.602560,665.889638,hintandextended,lora,60 +on3,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,25,1,0,840,1600.602560,154,1,53727.602560,665.889638,hintandextended,lora,60 +on12,0,0,24,1,0,540,1540.001280,155,0,32890.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,168,1588.001280,155,0,8054.001280,660.800922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1989.006400,155,0,-1.000000,923.603994,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,224,1584.001280,155,0,12202.001280,659.200922,hintandextended,lora,60 +on6,0,0,24,1,0,900,1540.001280,155,0,56110.001280,641.600717,hintandextended,lora,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1025,1545.001280,155,0,63862.001280,643.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2058.607680,156,0,-1.000000,951.444915,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,46,1586.001280,156,0,2152.001280,660.000717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,780,1600.602560,156,1,49789.602560,665.889843,hintandextended,lora,60 +on10,0,0,24,1,0,120,1540.001280,156,0,7896.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,60,1540.001280,156,0,4426.001280,641.600922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1080,1540.001280,156,0,65686.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1084,1544.001280,157,0,68404.001280,643.200922,hintandextended,lora,60 +on4,0,0,25,1,0,698,1600.001280,157,1,42899.001280,665.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1020,1540.001280,157,0,63346.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,960,1540.001280,157,0,59800.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,600,1600.602560,157,1,36912.602560,668.833434,hintandextended,lora,60 +on0,1,7,24,0,0,0,2241.610240,157,0,-1.000000,1075.846349,hintandextended,lora,60 +on12,0,0,24,1,0,56,1596.001280,157,0,1706.001280,664.000922,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,320,1560.001280,157,0,21658.001280,649.600922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1140,1540.001280,158,0,71636.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,649,1589.001280,158,0,38978.001280,662.704717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,120,1540.001280,158,0,9447.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,908,1548.001280,158,0,56024.001280,644.800922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2028.006400,158,0,-1.000000,939.203789,hintandextended,lora,60 +on2,0,0,25,1,0,698,1600.001280,158,1,42735.001280,665.600717,hintandextended,lora,60 +on9,0,0,24,1,0,240,1540.001280,159,0,15876.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,120,1540.001280,159,0,7673.001280,651.040922,hintandextended,lora,60 +on11,0,0,24,1,0,113,1593.001280,159,0,4485.001280,662.800717,hintandextended,lora,60 +on12,0,0,24,1,0,671,1551.001280,159,0,42105.001280,646.000717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2294.010240,159,0,-1.000000,1122.405939,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1289,1569.001280,159,0,78080.001280,653.200717,hintandextended,lora,60 +on2,0,0,24,1,0,357,1597.001280,159,0,20867.001280,673.584717,hintandextended,lora,60 +on4,0,0,25,1,0,418,1600.001280,159,1,24811.001280,666.400717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,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,1018,1598.001280,159,0,59026.001280,671.840717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,60,1540.001280,160,0,6077.001280,641.601126,hintandextended,lora,60 +on8,0,0,25,1,0,660,1600.602560,160,1,41563.602560,675.073638,hintandextended,lora,60 +on5,0,0,25,1,0,770,1600.001280,160,1,47500.001280,680.640922,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,420,1600.602560,160,1,26562.602560,665.889638,hintandextended,lora,60 +on0,1,7,24,0,0,0,2226.211520,160,0,-1.000000,1069.687885,hintandextended,lora,60 +on2,0,0,24,1,0,35,1575.001280,160,0,2135.001280,655.601126,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,618,1558.001280,160,0,37605.001280,648.800717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,480,1540.001280,160,0,29225.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,160,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 +on1,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,458,1600.001280,161,1,28624.001280,665.600717,hintandextended,lora,60 +on3,0,0,25,1,0,360,1600.602560,161,1,22337.602560,672.673638,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1320,1540.001280,161,0,80610.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,888,1588.001280,161,0,51106.001280,660.800717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2002.607680,161,0,-1.000000,929.044506,hintandextended,lora,60 +on11,0,0,24,1,0,600,1540.001280,161,0,38807.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,720,1600.602560,162,1,45613.602560,665.889434,hintandextended,lora,60 +on0,1,10,24,0,0,0,2621.215360,162,0,-1.000000,1304.490035,hintandextended,lora,60 +on11,0,0,24,1,0,300,1540.001280,162,0,19427.001280,645.984717,hintandextended,lora,60 +on8,0,0,24,1,0,556,1556.001280,162,0,34349.001280,648.000922,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,287,1600.001280,162,1,15225.001280,665.600717,hintandextended,lora,60 +on6,0,0,25,1,0,518,1600.001280,162,1,30990.001280,665.601126,hintandextended,lora,60 +on5,0,0,24,1,0,8,1548.001280,162,0,3197.001280,653.984922,hintandextended,lora,60 +on3,0,0,24,1,0,808,1568.001280,162,0,47022.001280,652.800717,hintandextended,lora,60 +on1,0,0,24,1,0,1016,1596.001280,162,0,60113.001280,664.000922,hintandextended,lora,60 +on4,0,0,24,1,0,900,1540.001280,162,0,56123.001280,641.600717,hintandextended,lora,60 +on7,0,0,25,1,0,420,1600.602560,162,2,26713.602560,673.633638,hintandextended,lora,60 +on4,0,0,24,1,0,60,1540.001280,163,0,6560.001280,641.600922,hintandextended,lora,60 +on10,0,0,24,1,0,520,1580.001280,163,0,32087.001280,673.120922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,1238,1600.001280,163,1,75328.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1041,1561.001280,163,0,64621.001280,651.984922,hintandextended,lora,60 +on9,0,0,24,1,0,334,1574.001280,163,0,19322.001280,663.424717,hintandextended,lora,60 +on12,0,0,25,1,0,398,1600.001280,163,1,24397.001280,669.281126,hintandextended,lora,60 +on7,0,0,24,1,0,1318,1598.001280,163,0,76008.001280,664.800717,hintandextended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,163,0,85528.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2313.008960,163,0,-1.000000,1130.006042,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,lora,60 +on4,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,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,865,1565.001280,164,0,51076.001280,651.600922,hintandextended,lora,60 +on0,1,5,24,0,0,0,1955.006400,164,0,-1.000000,910.003994,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,280,1580.001280,164,0,16991.001280,657.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,720,1540.001280,164,0,45198.001280,641.600922,hintandextended,lora,60 +on6,0,0,24,1,0,926,1566.001280,164,0,55822.001280,652.000717,hintandextended,lora,60 +on8,0,0,24,1,0,60,1540.001280,164,0,5586.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,452,1572.001280,165,0,26343.001280,654.400717,hintandextended,lora,60 +on6,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 +on1,0,0,25,1,0,480,1600.602560,165,1,30459.602560,665.889638,hintandextended,lora,60 +on5,0,0,24,1,0,83,1563.001280,165,0,6002.001280,650.800922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,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,1,0,1417,1577.000000,165,0,85948.000000,656.400000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1897.605120,165,0,-1.000000,861.443277,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,600,1540.001280,166,0,36467.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,702,1582.001280,166,0,40404.001280,658.400717,hintandextended,lora,60 +on10,0,0,24,1,0,977,1557.001280,166,0,61219.001280,657.680717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,209,1569.001280,166,0,11329.001280,653.200717,hintandextended,lora,60 +on12,0,0,24,1,0,791,1551.001280,166,0,49470.001280,646.000922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2147.008960,166,0,-1.000000,1038.005222,hintandextended,lora,60 +on9,0,0,25,1,0,1034,1600.001280,166,1,63630.001280,672.960717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,23,1563.001280,166,0,403.001280,650.800717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1270,1550.001280,167,0,76705.001280,645.600717,hintandextended,lora,60 +on5,0,0,24,1,0,87,1567.001280,167,0,6969.001280,652.400717,hintandextended,lora,60 +on3,0,0,24,1,0,120,1540.001280,167,0,9730.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,952,1592.001280,167,0,57073.001280,662.400717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2093.007680,167,0,-1.000000,990.804301,hintandextended,lora,60 +on1,0,0,24,1,0,607,1547.001280,167,0,39472.001280,644.400717,hintandextended,lora,60 +on2,0,0,24,1,0,1140,1540.001280,167,0,70689.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2018.607680,168,0,-1.000000,935.445120,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,660,1540.001280,168,0,41358.001280,641.600717,hintandextended,lora,60 +on8,0,0,25,1,0,1020,1600.602560,168,1,61606.602560,675.329843,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,169,1589.001280,168,0,8622.001280,661.200922,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,88,1568.001280,168,0,6572.001280,662.240922,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,720,1540.001280,168,0,44296.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,117,1597.001280,169,0,6922.001280,664.400717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1080,1540.001280,169,0,66181.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,284,1584.001280,169,0,17672.001280,659.200922,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1368,1588.001280,169,0,81798.001280,660.800717,hintandextended,lora,60 +on6,0,0,24,1,0,161,1581.001280,169,0,10344.001280,658.000717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2070.007680,169,0,-1.000000,981.604915,hintandextended,lora,60 +on9,0,0,24,1,0,379,1559.001280,169,0,25293.001280,649.201126,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,169,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 +on2,0,0,25,0,0,1478,1500.000000,170,1,-1.000000,600.000000,hintandextended,lora,60 +on10,0,0,24,1,0,960,1540.001280,170,0,60591.001280,646.944717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,1059,1600.001280,170,1,63470.001280,665.808717,hintandextended,lora,60 +on4,0,0,24,1,0,100,1580.001280,170,0,5341.001280,657.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2125.608960,170,0,-1.000000,1003.845222,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 +on1,0,0,25,1,0,600,1600.602560,170,1,36887.602560,665.889638,hintandextended,lora,60 +on3,0,0,24,1,0,1307,1587.001280,170,0,76304.001280,660.400717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,120,1540.001280,170,0,8672.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,1,0,720,1540.001280,171,0,44082.001280,641.600717,hintandextended,lora,60 +on10,0,0,25,1,0,420,1600.602560,171,1,28473.602560,667.873434,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,lora,60 +on8,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 +on11,0,0,24,1,0,1414,1574.000000,171,0,84842.000000,655.200000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2371.610240,171,0,-1.000000,1153.445939,hintandextended,lora,60 +on6,0,0,24,1,0,643,1583.001280,171,0,38567.001280,658.800717,hintandextended,lora,60 +on2,0,0,25,1,0,1059,1600.001280,171,1,61804.001280,665.600717,hintandextended,lora,60 +on7,0,0,24,1,0,210,1570.001280,171,0,11262.001280,657.024922,hintandextended,lora,60 +on4,0,0,24,1,0,1140,1540.001280,171,0,69915.001280,641.600717,hintandextended,lora,60 +on1,0,0,25,1,0,518,1600.001280,171,1,30597.001280,665.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,634,1574.001280,172,0,37884.001280,655.200717,hintandextended,lora,60 +on8,0,0,24,1,0,1005,1585.001280,172,0,58132.001280,659.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,1320,1600.602560,172,1,79711.602560,666.689434,hintandextended,lora,60 +on0,1,6,24,0,0,0,2078.608960,172,0,-1.000000,985.045018,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1140,1540.001280,172,0,69953.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,87,1567.001280,172,0,7171.001280,652.400717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,201,1561.001280,172,0,11524.001280,650.000717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2202.008960,173,0,-1.000000,1060.005632,hintandextended,lora,60 +on9,0,0,25,1,0,278,1600.001280,173,1,17191.001280,665.600717,hintandextended,lora,60 +on2,0,0,25,1,0,698,1600.001280,173,1,46200.001280,675.040717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,930,1570.001280,173,0,54238.001280,653.600922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,480,1540.001280,173,0,29340.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,147,1567.001280,173,0,8359.001280,656.560922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,220,1580.001280,173,0,13448.001280,665.344717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,540,1540.001280,173,0,34349.001280,641.600922,hintandextended,lora,60 +on3,0,0,24,1,0,960,1540.001280,174,0,61111.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,720,1540.001280,174,0,46683.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,240,1540.001280,174,0,14783.001280,641.600922,hintandextended,lora,60 +on7,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,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,327,1567.001280,174,0,18492.001280,652.400717,hintandextended,lora,60 +on1,0,0,25,1,0,1320,1600.602560,174,1,82852.602560,665.889434,hintandextended,lora,60 +on0,1,6,24,0,0,0,2149.608960,174,0,-1.000000,1013.445427,hintandextended,lora,60 +on2,0,0,24,1,0,714,1594.001280,174,0,40039.001280,663.200922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,60,1540.001280,175,0,3875.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,796,1600.001280,175,1,50264.001280,665.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2143.608960,175,0,-1.000000,1011.046246,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,0,1600.602560,175,1,2804.602560,668.130048,hintandextended,lora,60 +on9,0,0,25,1,0,660,1600.001280,175,1,42333.001280,670.464922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,300,1540.001280,175,0,18943.001280,646.465126,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,398,1600.001280,175,1,24709.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,949,1589.001280,176,0,57590.001280,661.200717,hintandextended,lora,60 +on12,0,0,25,1,0,1320,1600.602560,176,1,82577.602560,665.889434,hintandextended,lora,60 +on0,1,6,24,0,0,0,2120.210240,176,0,-1.000000,1001.686144,hintandextended,lora,60 +on4,0,0,24,1,0,468,1588.001280,176,0,25410.001280,660.800717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,660,1600.602560,176,1,40037.602560,665.889638,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,646,1586.001280,176,0,36797.001280,660.000717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,133,1553.001280,176,0,7753.001280,646.800922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,685,1565.001280,177,0,41991.001280,651.600717,hintandextended,lora,60 +on2,0,0,24,1,0,191,1551.001280,177,0,12556.001280,648.944717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,278,1600.001280,177,1,16918.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,830,1590.001280,177,0,49696.001280,661.600717,hintandextended,lora,60 +on6,0,0,24,1,0,401,1581.001280,177,0,21832.001280,658.000717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1940.006400,177,0,-1.000000,904.003584,hintandextended,lora,60 +on0,1,5,24,0,0,0,2044.006400,178,0,-1.000000,945.603789,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,720,1540.001280,178,0,44733.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,600,1540.001280,178,0,38793.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,300,1540.001280,178,0,20976.001280,641.600922,hintandextended,lora,60 +on9,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 +on3,0,0,24,1,0,124,1544.001280,178,0,9956.001280,643.200717,hintandextended,lora,60 +on12,0,0,24,1,0,240,1540.001280,178,0,16312.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,28,1568.001280,179,0,578.001280,652.800922,hintandextended,lora,60 +on2,0,0,24,1,0,540,1540.001280,179,0,35502.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,120,1540.001280,179,0,9230.001280,641.600922,hintandextended,lora,60 +on0,1,6,24,0,0,0,2154.608960,179,0,-1.000000,1015.445632,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,883,1583.001280,179,0,53005.001280,658.800717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1245,1585.001280,179,0,72355.001280,659.600717,hintandextended,lora,60 +on9,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 +on6,0,0,25,1,0,240,1600.602560,179,1,17875.602560,665.889638,hintandextended,lora,60 +on5,0,0,24,1,0,102,1582.001280,180,0,4385.001280,664.801126,hintandextended,lora,60 +on10,0,0,25,1,0,0,1600.602560,180,1,3279.602560,676.673843,hintandextended,lora,60 +on4,0,0,25,1,0,360,1600.602560,180,2,25085.602560,665.889434,hintandextended,lora,60 +on7,0,0,25,1,0,278,1600.001280,180,1,17961.001280,674.304922,hintandextended,lora,60 +on12,0,0,25,1,0,1312,1600.001280,180,1,79223.001280,665.600717,hintandextended,lora,60 +on6,0,0,25,1,0,300,1600.602560,180,1,20238.602560,678.177638,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,475,1600.001280,180,1,28579.001280,665.600717,hintandextended,lora,60 +on1,0,0,25,1,0,1140,1600.602560,180,2,68733.602560,675.073638,hintandextended,lora,60 +on11,0,0,24,1,0,931,1571.001280,180,0,54811.001280,654.000717,hintandextended,lora,60 +on0,1,10,24,0,0,0,2597.417920,180,0,-1.000000,1294.971878,hintandextended,lora,60 +on8,0,0,25,1,0,578,1600.001280,180,1,35620.001280,675.744717,hintandextended,lora,60 +on0,1,10,24,0,0,0,2475.614080,181,0,-1.000000,1246.248704,hintandextended,lora,60 +on2,0,0,25,1,0,0,1600.602560,181,1,811.602560,670.849434,hintandextended,lora,60 +on1,0,0,25,1,0,136,1600.001280,181,1,9444.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,597,1597.001280,181,0,32931.001280,664.400922,hintandextended,lora,60 +on5,0,0,24,1,0,676,1556.001280,181,0,43132.001280,648.000922,hintandextended,lora,60 +on3,0,0,24,1,0,641,1581.001280,181,0,38102.001280,658.000717,hintandextended,lora,60 +on6,0,0,25,1,0,1358,1600.001280,181,1,82416.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,1,0,391,1571.001280,181,0,22673.001280,663.440922,hintandextended,lora,60 +on4,0,0,24,1,0,519,1579.001280,181,0,31272.001280,657.200717,hintandextended,lora,60 +on7,0,0,24,1,0,60,1540.001280,181,0,5360.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,1264,1544.001280,181,0,75959.001280,648.544717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1020,1540.001280,182,0,63326.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,360,1540.001280,182,0,23415.001280,648.960922,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2442.011520,182,0,-1.000000,1181.607066,hintandextended,lora,60 +on6,0,0,24,1,0,780,1540.001280,182,0,47726.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,1,0,180,1600.602560,182,1,12179.602560,666.913638,hintandextended,lora,60 +on3,0,0,24,1,0,540,1540.001280,182,0,34662.001280,641.600922,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1145,1545.001280,182,0,68955.001280,653.040717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,879,1579.001280,182,0,51501.001280,666.160717,hintandextended,lora,60 +on9,0,0,24,1,0,309,1554.401280,182,1,19631.401280,647.360717,hintandextended,lora,60 +on4,0,0,25,1,0,590,1600.001280,183,1,35498.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2043.607680,183,0,-1.000000,945.444710,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1140,1540.001280,183,0,71472.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,186,1546.001280,183,0,13896.001280,644.000717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,420,1600.602560,183,1,26200.602560,675.073843,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,600,1540.001280,183,0,39223.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,768,1588.001280,184,0,45443.001280,667.104717,hintandextended,lora,60 +on12,0,0,24,1,0,221,1581.001280,184,0,12206.001280,658.000717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,704,1584.001280,184,0,43154.001280,659.200717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,819,1600.001280,184,1,49088.001280,665.600922,hintandextended,lora,60 +on1,0,0,24,1,0,873,1573.001280,184,0,54060.001280,654.800717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1940.006400,184,0,-1.000000,904.003789,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,180,1540.001280,185,0,11779.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,261,1561.001280,185,0,17740.001280,650.000717,hintandextended,lora,60 +on10,0,0,24,1,0,60,1540.001280,185,0,7112.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,825,1585.001280,185,0,47284.001280,659.600717,hintandextended,lora,60 +on12,0,0,24,1,0,1382,1542.000000,185,0,85440.000000,642.400000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2228.007680,185,0,-1.000000,1070.404301,hintandextended,lora,60 +on1,0,0,24,1,0,569,1569.001280,185,0,33978.001280,659.760717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,480,1540.001280,185,0,29127.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,60,1540.001280,186,0,5452.001280,641.600922,hintandextended,lora,60 +on0,1,11,24,0,0,0,2694.615360,186,0,-1.000000,1359.449421,hintandextended,lora,60 +on4,0,0,24,1,0,854,1554.001280,186,0,53951.001280,649.664717,hintandextended,lora,60 +on6,0,0,25,1,0,938,1600.001280,186,1,57249.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,1,0,720,1540.001280,186,0,46756.001280,651.040717,hintandextended,lora,60 +on9,0,0,24,1,0,360,1540.001280,186,0,24210.001280,651.040717,hintandextended,lora,60 +on11,0,0,24,1,0,330,1570.001280,186,0,20547.001280,653.600922,hintandextended,lora,60 +on2,0,0,24,1,0,519,1579.001280,186,0,29607.001280,666.640922,hintandextended,lora,60 +on5,0,0,25,1,0,1255,1600.001280,186,1,73183.001280,665.600717,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,1,0,243,1543.001280,186,0,16414.001280,651.984717,hintandextended,lora,60 +on1,0,0,24,1,0,20,1560.001280,186,0,1218.001280,649.600717,hintandextended,lora,60 +on10,0,0,25,1,0,120,1600.602560,186,1,8277.602560,665.889638,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,13,1553.001280,187,0,1300.001280,646.800717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2240.010240,187,0,-1.000000,1100.806349,hintandextended,lora,60 +on11,0,0,24,1,0,782,1542.001280,187,0,49389.001280,642.400717,hintandextended,lora,60 +on4,0,0,24,1,0,885,1585.001280,187,0,53233.001280,659.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1322,1542.001280,187,0,80973.001280,642.400717,hintandextended,lora,60 +on1,0,0,24,1,0,951,1591.001280,187,0,56411.001280,671.440717,hintandextended,lora,60 +on7,0,0,24,1,0,575,1575.001280,187,0,34970.001280,655.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,1299,1600.001280,187,1,77953.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,1,0,259,1559.001280,187,0,17819.001280,653.105331,hintandextended,lora,60 +on7,0,0,24,1,0,1260,1540.001280,188,0,78300.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,518,1600.001280,188,1,30320.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,1,0,120,1540.001280,188,0,8385.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,1380,1540.000000,188,0,84207.000000,641.600000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2461.010240,188,0,-1.000000,1214.806349,hintandextended,lora,60 +on1,0,0,24,1,0,420,1540.001280,188,0,25532.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1048,1568.001280,188,0,61851.001280,652.800717,hintandextended,lora,60 +on5,0,0,24,1,0,1080,1540.001280,188,0,67177.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,1,0,73,1600.001280,188,1,6548.001280,671.968717,hintandextended,lora,60 +on8,0,0,24,1,0,21,1561.001280,188,0,1478.001280,658.929331,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,480,1540.001280,189,0,31898.001280,641.600717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1959.006400,189,0,-1.000000,911.603789,hintandextended,lora,60 +on7,0,0,24,1,0,748,1568.001280,189,0,45989.001280,652.800717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,271,1571.001280,189,0,15396.001280,654.000922,hintandextended,lora,60 +on3,0,0,24,1,0,1240,1580.001280,189,0,74053.001280,657.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on2,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 +on10,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1147,1547.001280,189,0,69485.001280,651.920717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2046.607680,190,0,-1.000000,946.644710,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,660,1540.001280,190,0,42520.001280,641.600922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,398,1540.001280,190,1,28043.001280,641.600717,hintandextended,lora,60 +on7,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 +on9,0,0,24,1,0,240,1540.001280,190,0,16309.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,300,1600.602560,190,1,18813.602560,667.873638,hintandextended,lora,60 +on2,0,0,24,1,0,220,1580.001280,190,0,11761.001280,657.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2042.607680,191,0,-1.000000,945.044710,hintandextended,lora,60 +on3,0,0,24,1,0,364,1544.001280,191,0,23745.001280,643.200717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1260,1540.001280,191,0,76846.001280,641.600717,hintandextended,lora,60 +on6,0,0,25,1,0,180,1600.602560,191,1,11820.602560,665.889638,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,480,1540.001280,191,0,29970.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,780,1540.001280,191,0,47684.001280,641.600922,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,73,1553.001280,192,0,3893.001280,646.800717,hintandextended,lora,60 +on12,0,0,24,1,0,840,1578.602560,192,1,52636.602560,657.089638,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1784.605120,192,0,-1.000000,790.643072,hintandextended,lora,60 +on5,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,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,316,1556.001280,192,0,19186.001280,648.000717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,180,1600.602560,193,1,13166.602560,665.889638,hintandextended,lora,60 +on8,0,0,25,1,0,916,1600.001280,193,1,55937.001280,665.600717,hintandextended,lora,60 +on7,0,0,25,1,0,398,1600.001280,193,1,22742.001280,666.400717,hintandextended,lora,60 +on3,0,0,24,1,0,17,1557.001280,193,0,1971.001280,648.400717,hintandextended,lora,60 +on11,0,0,25,1,0,720,1600.602560,193,1,46390.602560,677.089638,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,601,1541.001280,193,0,37306.001280,642.000717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,780,1600.001280,193,1,48683.001280,676.448922,hintandextended,lora,60 +on10,0,0,24,1,0,309,1549.001280,193,0,19336.001280,646.704717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2312.212800,193,0,-1.000000,1129.687782,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,532,1600.001280,194,1,31931.001280,665.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,474,1594.001280,194,0,27379.001280,672.384717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1990.006400,194,0,-1.000000,924.003994,hintandextended,lora,60 +on8,0,0,24,1,0,27,1567.001280,194,0,860.001280,652.400922,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,194,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 +on5,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,928,1568.001280,194,0,55584.001280,652.800922,hintandextended,lora,60 +on11,0,0,24,1,0,60,1540.001280,194,0,6459.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,600,1540.001280,195,0,36835.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,529,1589.001280,195,0,29843.001280,661.200922,hintandextended,lora,60 +on10,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,49,1589.001280,195,0,1789.001280,669.041126,hintandextended,lora,60 +on4,0,0,24,1,0,300,1540.001280,195,0,20212.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2163.007680,195,0,-1.000000,1018.804915,hintandextended,lora,60 +on3,0,0,24,1,0,420,1540.001280,195,0,27790.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,853,1553.001280,195,0,51773.001280,646.800717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,570,1570.001280,196,0,32813.001280,654.144717,hintandextended,lora,60 +on4,0,0,24,1,0,660,1540.001280,196,0,43239.001280,648.640717,hintandextended,lora,60 +on3,0,0,26,1,0,666,1660.001280,196,2,38989.001280,692.128717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,11,24,0,0,0,2686.014080,196,0,-1.000000,1356.008090,hintandextended,lora,60 +on12,0,0,24,1,0,1140,1540.001280,196,0,71251.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,191,1551.001280,196,0,12601.001280,646.000717,hintandextended,lora,60 +on9,0,0,24,1,0,1227,1567.001280,196,0,73187.001280,652.400717,hintandextended,lora,60 +on2,0,0,25,1,0,403,1600.001280,196,1,23552.001280,674.992717,hintandextended,lora,60 +on7,0,0,25,1,0,461,1600.001280,196,1,27577.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,1,0,269,1569.001280,196,0,14876.001280,653.200717,hintandextended,lora,60 +on5,0,0,24,1,0,300,1540.001280,196,0,19304.001280,650.880717,hintandextended,lora,60 +on6,0,0,24,1,0,0,1540.001280,196,0,2246.001280,641.600922,hintandextended,lora,60 +on0,1,6,24,0,0,0,2069.007680,197,0,-1.000000,981.204301,hintandextended,lora,60 +on6,0,0,24,1,0,449,1569.001280,197,0,26642.001280,653.200717,hintandextended,lora,60 +on9,0,0,24,1,0,1082,1542.001280,197,0,68125.001280,642.400717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,804,1564.001280,197,0,49799.001280,651.200717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,298,1598.001280,197,0,17810.001280,664.800717,hintandextended,lora,60 +on2,0,0,24,1,0,660,1540.001280,197,0,42067.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,1183,1583.001280,197,0,70834.001280,658.800717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,477,1597.001280,198,0,28728.001280,664.400922,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,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,300,1540.001280,198,0,19371.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1098,1558.001280,198,0,68216.001280,648.800717,hintandextended,lora,60 +on11,0,0,24,1,0,1424,1584.000000,198,0,85670.000000,659.200000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1968.005120,198,0,-1.000000,915.203072,hintandextended,lora,60 +on4,0,0,24,1,0,1071,1591.001280,198,0,63360.001280,671.184717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,0,0,1486,1500.000000,198,1,-1.000000,600.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2297.611520,199,0,-1.000000,1123.847680,hintandextended,lora,60 +on9,0,0,25,1,0,960,1600.602560,199,1,60064.602560,670.369638,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,824,1584.001280,199,0,47355.001280,659.200922,hintandextended,lora,60 +on5,0,0,24,1,0,114,1594.001280,199,0,3945.001280,663.200717,hintandextended,lora,60 +on8,0,0,25,1,0,360,1600.001280,199,1,19614.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,1,0,509,1569.001280,199,0,31649.001280,653.200922,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,240,1540.001280,199,0,15756.001280,641.601126,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,634,1574.001280,199,0,37748.001280,656.704717,hintandextended,lora,60 +on4,0,0,24,1,0,123,1543.001280,199,0,10424.001280,642.800717,hintandextended,lora,60 +on2,0,0,25,1,0,701,1600.001280,200,1,41514.001280,674.784717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,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,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1988.006400,200,0,-1.000000,923.204198,hintandextended,lora,60 +on7,0,0,24,1,0,1260,1540.001280,200,0,76586.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,772,1600.001280,200,1,46153.001280,665.600922,hintandextended,lora,60 +on5,0,0,24,1,0,300,1540.001280,200,0,18400.001280,641.600922,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,220,1580.001280,200,0,13999.001280,666.784922,hintandextended,lora,60 +on3,0,0,24,1,0,816,1440.000000,1,0,52583.000000,618.250000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,1,0,-1.000000,739.150000,baseline,nbiot,60 +on8,0,0,24,1,0,258,1440.000000,1,0,17694.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1413,1440.000000,1,0,-1.000000,594.200000,baseline,nbiot,60 +on1,0,0,24,0,0,1403,1440.000000,1,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,600,1440.000000,1,0,37476.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1153,1440.000000,1,0,71453.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1435,1440.000000,2,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,2,0,-1.000000,667.000000,baseline,nbiot,60 +on1,0,0,24,1,0,600,1440.000000,2,0,38607.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,1,0,12,1440.000000,2,0,3115.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1427,1440.000000,2,0,-1.000000,585.100000,baseline,nbiot,60 +on2,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,2,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,255,1440.000000,2,0,17907.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1430,1440.000000,3,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1417,1440.000000,3,0,-1.000000,591.600000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,3,0,-1.000000,676.750000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1140,1440.000000,3,0,70133.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1260,1440.000000,3,0,75762.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1435,1440.000000,3,0,-1.000000,579.900000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1407,1440.000000,3,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1343,1440.000000,4,0,-1.000000,693.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,4,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 +on10,0,0,24,1,0,435,1440.000000,4,0,28510.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1391,1440.000000,4,0,84027.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,4,0,-1.000000,766.450000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1422,1440.000000,4,0,-1.000000,588.350000,baseline,nbiot,60 +on7,0,0,24,1,0,1176,1440.000000,4,0,72978.000000,618.250000,baseline,nbiot,60 +on2,0,0,24,0,0,1423,1440.000000,4,0,-1.000000,597.450000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1430,1440.000000,4,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,428,1440.000000,5,0,26578.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,5,0,10062.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,1,0,786,1440.000000,5,0,50002.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,1,0,255,1440.000000,5,0,16969.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1421,1440.000000,5,0,-1.000000,610.450000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,5,0,-1.000000,707.950000,baseline,nbiot,60 +on10,0,0,24,0,0,1419,1440.000000,5,0,-1.000000,629.950000,baseline,nbiot,60 +on2,0,0,24,0,0,1427,1440.000000,6,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,420,1440.000000,6,0,27734.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1435,1440.000000,6,0,-1.000000,579.900000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on9,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 +on12,0,0,24,0,0,1419,1440.000000,6,0,-1.000000,590.300000,baseline,nbiot,60 +on8,0,0,24,0,0,1430,1440.000000,6,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1407,1440.000000,6,0,-1.000000,598.100000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,6,0,-1.000000,676.750000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1413,1440.000000,6,0,-1.000000,594.200000,baseline,nbiot,60 +on5,0,0,24,1,0,1353,1440.000000,7,0,83226.000000,680.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,7,0,-1.000000,689.750000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,7,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 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,252,1440.000000,7,0,14483.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1425,1440.000000,7,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,7,0,18546.000000,602.000000,baseline,nbiot,60 +on10,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,8,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1405,1440.000000,8,0,-1.000000,599.400000,baseline,nbiot,60 +on8,0,0,24,0,0,1387,1440.000000,8,0,-1.000000,650.750000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,8,0,-1.000000,741.750000,baseline,nbiot,60 +on9,0,0,24,1,0,1380,1440.000000,8,0,83609.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1383,1440.000000,8,0,-1.000000,639.700000,baseline,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,8,0,34011.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1416,1440.000000,8,0,-1.000000,592.250000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1403,1440.000000,9,0,-1.000000,600.700000,baseline,nbiot,60 +on12,0,0,24,0,0,1385,1440.000000,9,0,-1.000000,631.250000,baseline,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,9,0,13167.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1419,1440.000000,9,0,-1.000000,605.900000,baseline,nbiot,60 +on9,0,0,24,0,0,1427,1440.000000,9,0,-1.000000,603.950000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,9,0,-1.000000,687.150000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on7,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 +on6,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,10,0,-1.000000,747.600000,baseline,nbiot,60 +on8,0,0,24,1,0,1349,1440.000000,10,0,84211.000000,652.050000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1391,1440.000000,10,0,-1.000000,609.150000,baseline,nbiot,60 +on1,0,0,24,1,0,363,1440.000000,10,0,21945.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1061,1440.000000,10,0,65310.000000,639.050000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,248,1440.000000,10,0,16509.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1433,1440.000000,11,0,-1.000000,596.800000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,11,0,-1.000000,711.200000,baseline,nbiot,60 +on4,0,0,24,1,0,65,1440.000000,11,0,4752.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,661,1440.000000,11,0,41751.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,11,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1418,1440.000000,11,0,-1.000000,590.950000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1058,1440.000000,11,0,65471.000000,616.950000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,900,1440.000000,12,0,56206.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1421,1440.000000,12,0,-1.000000,606.550000,baseline,nbiot,60 +on10,0,0,24,1,0,533,1440.000000,12,0,33350.000000,641.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1424,1440.000000,12,0,-1.000000,612.400000,baseline,nbiot,60 +on1,0,0,24,0,0,1418,1440.000000,12,0,-1.000000,590.950000,baseline,nbiot,60 +on7,0,0,24,0,0,1392,1440.000000,12,0,-1.000000,608.500000,baseline,nbiot,60 +on4,0,0,24,0,0,1423,1440.000000,12,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,368,1440.000000,12,0,24900.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,12,0,61353.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1413,1440.000000,12,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1434,1440.000000,12,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1439,1440.000000,12,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,12,0,-1.000000,801.550000,baseline,nbiot,60 +on11,0,0,24,1,0,911,1440.000000,13,0,57015.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,1,0,120,1440.000000,13,0,9894.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1413,1440.000000,13,0,-1.000000,594.850000,baseline,nbiot,60 +on3,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 +on7,0,0,24,1,0,1140,1440.000000,13,0,68571.000000,602.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,13,0,-1.000000,754.750000,baseline,nbiot,60 +on4,0,0,24,0,0,1430,1440.000000,13,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,1,0,545,1440.000000,13,0,33979.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1254,1440.000000,13,0,76251.000000,641.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1413,1440.000000,13,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,14,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,14,0,44176.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,1,0,130,1440.000000,14,0,9468.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,1,0,917,1440.000000,14,0,54710.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1393,1440.000000,14,0,83507.000000,602.000000,baseline,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,14,0,-1.000000,775.550000,baseline,nbiot,60 +on11,0,0,24,0,0,1433,1440.000000,14,0,-1.000000,581.200000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,17,1440.000000,14,0,1245.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,1,0,198,1440.000000,14,0,12275.000000,602.000000,baseline,nbiot,60 +on9,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 +on4,0,0,24,0,0,1403,1440.000000,14,0,-1.000000,631.250000,baseline,nbiot,60 +on8,0,0,24,1,0,910,1440.000000,15,0,57019.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,15,0,-1.000000,721.600000,baseline,nbiot,60 +on9,0,0,24,0,0,1430,1440.000000,15,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1406,1440.000000,15,0,-1.000000,611.750000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1405,1440.000000,15,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1433,1440.000000,15,0,-1.000000,581.200000,baseline,nbiot,60 +on5,0,0,24,0,0,1390,1440.000000,15,0,-1.000000,609.800000,baseline,nbiot,60 +on10,0,0,24,0,0,1404,1440.000000,15,0,-1.000000,600.050000,baseline,nbiot,60 +on1,0,0,24,0,0,1437,1440.000000,15,0,-1.000000,578.600000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,16,0,-1.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1426,1440.000000,16,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,16,0,-1.000000,637.750000,baseline,nbiot,60 +on6,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 +on8,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 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,nbiot,60 +on4,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 +on2,0,0,24,1,0,60,1440.000000,16,0,5369.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,17,0,-1.000000,678.050000,baseline,nbiot,60 +on5,0,0,24,1,0,1336,1440.000000,17,0,82286.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1435,1440.000000,17,0,-1.000000,579.900000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,17,0,-1.000000,596.150000,baseline,nbiot,60 +on3,0,0,24,0,0,1425,1440.000000,17,0,-1.000000,615.650000,baseline,nbiot,60 +on6,0,0,24,0,0,1407,1440.000000,17,0,-1.000000,598.750000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1413,1440.000000,17,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1434,1440.000000,18,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1423,1440.000000,18,0,-1.000000,618.900000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,18,0,-1.000000,717.700000,baseline,nbiot,60 +on1,0,0,24,0,0,1426,1440.000000,18,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,615,1440.000000,18,0,39193.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1424,1440.000000,18,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1268,1440.000000,18,0,76521.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,18,0,12405.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,1,0,486,1440.000000,18,0,29459.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,255,1440.000000,19,0,16458.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,19,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,19,0,-1.000000,650.750000,baseline,nbiot,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1437,1440.000000,19,0,-1.000000,578.600000,baseline,nbiot,60 +on8,0,0,24,1,0,420,1440.000000,19,0,26978.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1436,1440.000000,20,0,-1.000000,579.250000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1393,1440.000000,20,0,-1.000000,622.150000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,20,0,-1.000000,689.100000,baseline,nbiot,60 +on9,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 +on8,0,0,24,0,0,1413,1440.000000,20,0,-1.000000,594.200000,baseline,nbiot,60 +on1,0,0,24,1,0,74,1440.000000,20,0,5884.000000,602.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,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,20,0,55627.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1429,1440.000000,20,0,-1.000000,583.800000,baseline,nbiot,60 +on1,0,0,24,0,0,1426,1440.000000,21,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,21,0,-1.000000,702.750000,baseline,nbiot,60 +on5,0,0,24,0,0,1426,1440.000000,21,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,817,1440.000000,21,0,51096.000000,650.750000,baseline,nbiot,60 +on12,0,0,24,0,0,1421,1440.000000,21,0,-1.000000,589.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,21,0,61570.000000,602.000000,baseline,nbiot,60 +on6,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 +on3,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,960,1440.000000,21,0,59642.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,836,1440.000000,22,0,53687.000000,605.250000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1436,1440.000000,22,0,-1.000000,654.000000,baseline,nbiot,60 +on6,0,0,24,1,0,60,1440.000000,22,0,6100.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1381,1440.000000,22,0,-1.000000,638.400000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,22,0,-1.000000,790.500000,baseline,nbiot,60 +on9,0,0,24,0,0,1431,1440.000000,22,0,-1.000000,582.500000,baseline,nbiot,60 +on5,0,0,24,0,0,1426,1440.000000,22,0,-1.000000,585.750000,baseline,nbiot,60 +on12,0,0,24,1,0,1238,1440.000000,22,0,77587.000000,639.700000,baseline,nbiot,60 +on4,0,0,24,0,0,1419,1440.000000,22,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1383,1440.000000,22,0,-1.000000,614.350000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.650000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,23,0,43601.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1412,1440.000000,23,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1428,1440.000000,23,0,-1.000000,584.450000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,23,0,-1.000000,678.700000,baseline,nbiot,60 +on1,0,0,24,1,0,139,1440.000000,23,0,10478.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1433,1440.000000,23,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1414,1440.000000,23,0,-1.000000,593.550000,baseline,nbiot,60 +on3,0,0,24,0,0,1414,1440.000000,24,0,-1.000000,593.550000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,24,0,-1.000000,661.800000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1424,1440.000000,24,0,-1.000000,587.050000,baseline,nbiot,60 +on5,0,0,24,0,0,1427,1440.000000,24,0,-1.000000,615.650000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1415,1440.000000,24,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1439,1440.000000,24,0,-1.000000,577.300000,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,545,1440.000000,24,0,35648.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1436,1440.000000,24,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,25,0,17130.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1432,1440.000000,25,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,25,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1427,1440.000000,25,0,-1.000000,585.100000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,25,0,-1.000000,675.450000,baseline,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,25,0,1073.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,902,1440.000000,25,0,57487.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1439,1440.000000,25,0,-1.000000,577.300000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1403,1440.000000,26,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,1,0,480,1440.000000,26,0,30498.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1401,1440.000000,26,0,-1.000000,602.650000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.650000,baseline,nbiot,60 +on12,0,0,24,0,0,1437,1440.000000,26,0,-1.000000,578.600000,baseline,nbiot,60 +on7,0,0,24,0,0,1435,1440.000000,26,0,-1.000000,579.900000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,26,0,-1.000000,746.950000,baseline,nbiot,60 +on4,0,0,24,1,0,1385,1440.000000,26,0,84817.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1200,1440.000000,26,0,74916.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1427,1440.000000,26,0,-1.000000,585.100000,baseline,nbiot,60 +on3,0,0,24,0,0,1402,1440.000000,26,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,27,0,-1.000000,787.250000,baseline,nbiot,60 +on2,0,0,24,1,0,899,1440.000000,27,0,55963.000000,641.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1409,1440.000000,27,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,27,0,-1.000000,599.400000,baseline,nbiot,60 +on1,0,0,24,1,0,72,1440.000000,27,0,6418.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1028,1440.000000,27,0,64117.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,965,1440.000000,27,0,58245.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1142,1440.000000,27,0,68542.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1420,1440.000000,27,0,-1.000000,589.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1421,1440.000000,27,0,-1.000000,601.350000,baseline,nbiot,60 +on4,0,0,24,1,0,70,1440.000000,28,0,5993.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1432,1440.000000,28,0,-1.000000,581.850000,baseline,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,28,0,-1.000000,592.900000,baseline,nbiot,60 +on10,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 +on6,0,0,24,1,0,1257,1440.000000,28,0,75688.000000,641.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,28,0,-1.000000,736.550000,baseline,nbiot,60 +on2,0,0,24,1,0,689,1440.000000,28,0,44169.000000,641.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1411,1440.000000,28,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1431,1440.000000,28,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,360,1440.000000,29,0,24460.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1427,1440.000000,29,0,-1.000000,585.100000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,29,0,-1.000000,777.500000,baseline,nbiot,60 +on9,0,0,24,1,0,1140,1440.000000,29,0,71610.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,490,1440.000000,29,0,31149.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1320,1440.000000,29,0,81196.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1416,1440.000000,29,0,-1.000000,592.900000,baseline,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,29,0,-1.000000,614.350000,baseline,nbiot,60 +on1,0,0,24,1,0,840,1440.000000,29,0,53124.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1408,1440.000000,29,0,-1.000000,654.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,30,0,-1.000000,590.300000,baseline,nbiot,60 +on11,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 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,30,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 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1419,1440.000000,30,0,-1.000000,590.300000,baseline,nbiot,60 +on6,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,31,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,31,0,11816.000000,602.000000,baseline,nbiot,60 +on1,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,648.150000,baseline,nbiot,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1397,1440.000000,31,0,-1.000000,633.200000,baseline,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,31,0,-1.000000,592.900000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,32,0,-1.000000,586.400000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1026,1440.000000,32,0,62231.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1082,1440.000000,32,0,66156.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1388,1440.000000,32,0,-1.000000,641.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1403,1440.000000,32,0,-1.000000,600.700000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,32,0,-1.000000,743.050000,baseline,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,32,0,37196.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1412,1440.000000,32,0,-1.000000,594.850000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1194,1440.000000,33,0,72330.000000,616.300000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,611,1440.000000,33,0,36724.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1320,1440.000000,33,0,81614.000000,602.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,33,0,-1.000000,711.200000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1415,1440.000000,33,0,-1.000000,592.900000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,196,1440.000000,33,0,13082.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1406,1440.000000,34,0,-1.000000,599.400000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1424,1440.000000,34,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1414,1440.000000,34,0,-1.000000,593.550000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,34,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 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1356,1440.000000,34,0,-1.000000,647.500000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,34,0,-1.000000,685.200000,baseline,nbiot,60 +on3,0,0,24,1,0,780,1440.000000,35,0,50102.000000,602.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,35,0,-1.000000,720.950000,baseline,nbiot,60 +on5,0,0,24,1,0,1343,1440.000000,35,0,83050.000000,626.700000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,721,1440.000000,35,0,44746.000000,641.000000,baseline,nbiot,60 +on2,0,0,24,1,0,255,1440.000000,35,0,15202.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1436,1440.000000,35,0,-1.000000,579.250000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1424,1440.000000,35,0,-1.000000,615.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,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1411,1440.000000,36,0,-1.000000,595.500000,baseline,nbiot,60 +on4,0,0,24,1,0,720,1440.000000,36,0,44463.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,36,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,36,0,-1.000000,699.500000,baseline,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,36,0,2731.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1428,1440.000000,36,0,-1.000000,584.450000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,786,1440.000000,36,0,48215.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1022,1440.000000,37,0,64760.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,37,0,-1.000000,737.850000,baseline,nbiot,60 +on5,0,0,24,0,0,1427,1440.000000,37,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1410,1440.000000,37,0,-1.000000,635.150000,baseline,nbiot,60 +on10,0,0,24,1,0,369,1440.000000,37,0,24195.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1434,1440.000000,37,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1402,1440.000000,37,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1,1440.000000,37,0,2285.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1408,1440.000000,37,0,-1.000000,597.450000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1437,1440.000000,37,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1394,1440.000000,38,0,-1.000000,607.200000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,38,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,38,0,-1.000000,612.400000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on9,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,39,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,39,0,-1.000000,725.500000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,199,1440.000000,39,0,11644.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1379,1440.000000,39,0,-1.000000,630.600000,baseline,nbiot,60 +on5,0,0,24,0,0,1404,1440.000000,39,0,-1.000000,600.050000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,615.000000,baseline,nbiot,60 +on9,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 +on11,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,437,1440.000000,39,0,27144.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,1,0,838,1440.000000,39,0,51929.000000,641.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1437,1440.000000,40,0,-1.000000,611.750000,baseline,nbiot,60 +on11,0,0,24,1,0,780,1440.000000,40,0,48049.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1408,1440.000000,40,0,-1.000000,597.450000,baseline,nbiot,60 +on1,0,0,24,0,0,1431,1440.000000,40,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1421,1440.000000,40,0,-1.000000,591.600000,baseline,nbiot,60 +on4,0,0,24,1,0,1188,1440.000000,40,0,74385.000000,610.450000,baseline,nbiot,60 +on6,0,0,24,1,0,966,1440.000000,40,0,59153.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,134,1440.000000,40,0,7818.000000,602.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,40,0,-1.000000,758.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,71,1440.000000,40,0,3843.000000,602.000000,baseline,nbiot,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,41,0,11888.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1409,1440.000000,41,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1425,1440.000000,41,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,41,0,-1.000000,722.250000,baseline,nbiot,60 +on6,0,0,24,1,0,1213,1440.000000,41,0,78127.000000,633.850000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1433,1440.000000,41,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,41,0,69979.000000,602.000000,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 +on2,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1428,1440.000000,42,0,-1.000000,584.450000,baseline,nbiot,60 +on8,0,0,24,1,0,1381,1440.000000,42,0,83582.000000,641.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,42,0,-1.000000,703.400000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,718,1440.000000,42,0,44393.000000,641.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,900,1440.000000,42,0,56769.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1159,1440.000000,42,0,70834.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1436,1440.000000,42,0,-1.000000,579.250000,baseline,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,43,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,43,0,12527.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1030,1440.000000,43,0,63886.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1427,1440.000000,43,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,43,0,-1.000000,735.900000,baseline,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,43,0,85744.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,43,0,66480.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1404,1440.000000,43,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1170,1440.000000,44,0,74517.000000,654.650000,baseline,nbiot,60 +on7,0,0,24,1,0,975,1440.000000,44,0,60201.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1429,1440.000000,44,0,-1.000000,584.450000,baseline,nbiot,60 +on9,0,0,24,1,0,1362,1440.000000,44,0,84791.000000,625.400000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,44,0,-1.000000,786.600000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,44,0,-1.000000,621.500000,baseline,nbiot,60 +on11,0,0,24,1,0,656,1440.000000,44,0,40161.000000,605.250000,baseline,nbiot,60 +on8,0,0,24,1,0,540,1440.000000,44,0,34154.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,402,1440.000000,45,0,26885.000000,614.350000,baseline,nbiot,60 +on5,0,0,24,0,0,1416,1440.000000,45,0,-1.000000,654.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1401,1440.000000,45,0,-1.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1424,1440.000000,45,0,-1.000000,615.000000,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,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,45,0,-1.000000,668.300000,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 +on6,0,0,24,1,0,438,1440.000000,46,0,28238.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,46,0,-1.000000,754.750000,baseline,nbiot,60 +on9,0,0,24,1,0,1346,1440.000000,46,0,84640.000000,641.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1414,1440.000000,46,0,-1.000000,593.550000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1412,1440.000000,46,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1415,1440.000000,46,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,1,0,876,1440.000000,46,0,54231.000000,641.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1426,1440.000000,47,0,-1.000000,585.750000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,480,1440.000000,47,0,29696.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,662,1440.000000,47,0,39837.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,47,0,-1.000000,735.900000,baseline,nbiot,60 +on8,0,0,24,1,0,1380,1440.000000,47,0,85135.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,1,0,255,1440.000000,47,0,14641.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1418,1440.000000,47,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1394,1440.000000,47,0,-1.000000,624.750000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1417,1440.000000,48,0,-1.000000,644.900000,baseline,nbiot,60 +on6,0,0,24,0,0,1404,1440.000000,48,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,48,0,35840.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1439,1440.000000,48,0,-1.000000,577.300000,baseline,nbiot,60 +on12,0,0,24,1,0,840,1440.000000,48,0,52897.000000,602.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,48,0,-1.000000,764.500000,baseline,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,48,0,85367.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1422,1440.000000,48,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,1,0,120,1440.000000,48,0,8765.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1395,1440.000000,48,0,-1.000000,636.450000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1393,1440.000000,49,0,-1.000000,654.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1409,1440.000000,49,0,-1.000000,596.800000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,49,0,-1.000000,674.150000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on5,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 +on9,0,0,24,0,0,1405,1440.000000,49,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1407,1440.000000,49,0,-1.000000,598.100000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on2,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,50,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,50,0,12494.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1420,1440.000000,50,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1425,1440.000000,50,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1113,1440.000000,50,0,71447.000000,641.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,50,0,-1.000000,700.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1421,1440.000000,50,0,-1.000000,589.650000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1416,1440.000000,50,0,-1.000000,592.250000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1422,1440.000000,51,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,51,0,-1.000000,596.150000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1430,1440.000000,51,0,-1.000000,583.150000,baseline,nbiot,60 +on9,0,0,24,1,0,460,1440.000000,51,0,30653.000000,641.000000,baseline,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,51,0,13567.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1428,1440.000000,51,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,229,1440.000000,51,0,14543.000000,641.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,51,0,-1.000000,731.350000,baseline,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,52,0,-1.000000,603.300000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,52,0,-1.000000,668.950000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1381,1440.000000,52,0,-1.000000,615.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,52,0,-1.000000,619.550000,baseline,nbiot,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1402,1440.000000,53,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1420,1440.000000,53,0,-1.000000,589.650000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,53,0,-1.000000,756.700000,baseline,nbiot,60 +on4,0,0,24,1,0,1200,1440.000000,53,0,75373.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1260,1440.000000,53,0,79098.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,53,0,12843.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1435,1440.000000,53,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1390,1440.000000,53,0,-1.000000,648.800000,baseline,nbiot,60 +on10,0,0,24,1,0,737,1440.000000,53,0,44628.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1391,1440.000000,54,0,-1.000000,654.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,54,0,-1.000000,742.400000,baseline,nbiot,60 +on7,0,0,24,1,0,1276,1440.000000,54,0,77071.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,674,1440.000000,54,0,39673.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1279,1440.000000,54,0,82075.000000,657.250000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,54,0,-1.000000,671.550000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1438,1440.000000,55,0,-1.000000,577.950000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1254,1440.000000,55,0,76027.000000,608.500000,baseline,nbiot,60 +on10,0,0,24,1,0,725,1440.000000,55,0,46492.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1402,1440.000000,55,0,-1.000000,629.300000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,55,0,-1.000000,741.750000,baseline,nbiot,60 +on7,0,0,24,1,0,1379,1440.000000,55,0,84488.000000,603.300000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,251,1440.000000,55,0,16071.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,18,1440.000000,55,0,1514.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,56,0,3465.000000,602.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,56,0,-1.000000,755.400000,baseline,nbiot,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,56,0,26076.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1437,1440.000000,56,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1405,1440.000000,56,0,-1.000000,599.400000,baseline,nbiot,60 +on3,0,0,24,0,0,1415,1440.000000,56,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,674,1440.000000,56,0,41753.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,988,1440.000000,56,0,62575.000000,641.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,1428,1440.000000,56,0,-1.000000,584.450000,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 +on0,1,3,24,0,0,0,1440.000000,57,0,-1.000000,724.850000,baseline,nbiot,60 +on3,0,0,24,1,0,868,1440.000000,57,0,56754.000000,628.000000,baseline,nbiot,60 +on10,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 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1435,1440.000000,57,0,-1.000000,579.900000,baseline,nbiot,60 +on11,0,0,24,0,0,1399,1440.000000,57,0,-1.000000,639.050000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,795,1440.000000,57,0,47083.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,1,0,281,1440.000000,57,0,21365.000000,624.100000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1436,1440.000000,58,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1429,1440.000000,58,0,-1.000000,583.800000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,58,0,-1.000000,629.950000,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,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1433,1440.000000,58,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1037,1440.000000,58,0,62479.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1434,1440.000000,58,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1431,1440.000000,58,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,59,0,67165.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,59,0,-1.000000,724.200000,baseline,nbiot,60 +on5,0,0,24,0,0,1438,1440.000000,59,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1408,1440.000000,59,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1274,1440.000000,59,0,76527.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,59,0,54546.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1427,1440.000000,59,0,-1.000000,585.100000,baseline,nbiot,60 +on2,0,0,24,0,0,1422,1440.000000,59,0,-1.000000,599.400000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1402,1440.000000,59,0,-1.000000,601.350000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on7,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 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1431,1440.000000,60,0,-1.000000,582.500000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,60,0,-1.000000,611.100000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1405,1440.000000,60,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1434,1440.000000,60,0,-1.000000,580.550000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.650000,baseline,nbiot,60 +on10,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 +on10,0,0,24,1,0,431,1440.000000,61,0,27941.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1339,1440.000000,61,0,80275.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,1,0,313,1440.000000,61,0,18643.000000,602.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,61,0,-1.000000,741.100000,baseline,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,61,0,187.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1430,1440.000000,61,0,-1.000000,583.150000,baseline,nbiot,60 +on7,0,0,24,0,0,1420,1440.000000,61,0,-1.000000,615.000000,baseline,nbiot,60 +on2,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 +on1,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1419,1440.000000,61,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,61,0,11152.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,1,0,433,1440.000000,62,0,26630.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,62,0,-1.000000,706.000000,baseline,nbiot,60 +on1,0,0,24,1,0,72,1440.000000,62,0,7129.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1405,1440.000000,62,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1421,1440.000000,62,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1417,1440.000000,62,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,964,1440.000000,62,0,57776.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,360,1440.000000,63,0,23243.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1418,1440.000000,63,0,-1.000000,590.950000,baseline,nbiot,60 +on5,0,0,24,0,0,1409,1440.000000,63,0,-1.000000,596.800000,baseline,nbiot,60 +on6,0,0,24,0,0,1395,1440.000000,63,0,-1.000000,725.500000,baseline,nbiot,60 +on2,0,0,24,0,0,1418,1440.000000,63,0,-1.000000,590.950000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1403,1440.000000,63,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1053,1440.000000,63,0,67194.000000,641.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,63,0,30005.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1413,1440.000000,63,0,-1.000000,594.200000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,63,0,-1.000000,799.600000,baseline,nbiot,60 +on8,0,0,24,0,0,1438,1440.000000,63,0,-1.000000,577.950000,baseline,nbiot,60 +on2,0,0,24,1,0,471,1440.000000,64,0,28880.000000,608.500000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on8,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 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,64,0,-1.000000,680.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,9,1440.000000,64,0,1487.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1404,1440.000000,64,0,-1.000000,654.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1409,1440.000000,64,0,-1.000000,596.800000,baseline,nbiot,60 +on3,0,0,24,0,0,1425,1440.000000,65,0,-1.000000,586.400000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1431,1440.000000,65,0,-1.000000,582.500000,baseline,nbiot,60 +on2,0,0,24,1,0,181,1440.000000,65,0,12902.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,65,0,82369.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,65,0,18670.000000,602.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,65,0,-1.000000,696.900000,baseline,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,65,0,84794.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,65,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 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,167,1440.000000,66,0,11550.000000,621.500000,baseline,nbiot,60 +on8,0,0,24,0,0,1433,1440.000000,66,0,-1.000000,581.200000,baseline,nbiot,60 +on5,0,0,24,0,0,1402,1440.000000,66,0,-1.000000,601.350000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on10,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 +on6,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,66,0,-1.000000,652.050000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1408,1440.000000,67,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,67,0,-1.000000,678.050000,baseline,nbiot,60 +on9,0,0,24,0,0,1423,1440.000000,67,0,-1.000000,622.150000,baseline,nbiot,60 +on10,0,0,24,0,0,1408,1440.000000,67,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1410,1440.000000,67,0,-1.000000,596.800000,baseline,nbiot,60 +on2,0,0,24,1,0,61,1440.000000,67,0,6324.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,nbiot,60 +on8,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 +on4,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,nbiot,60 +on6,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,68,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,68,0,-1.000000,680.650000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1020,1440.000000,68,0,62676.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1399,1440.000000,68,0,-1.000000,631.250000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1425,1440.000000,68,0,-1.000000,654.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1397,1440.000000,68,0,-1.000000,618.250000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1425,1440.000000,68,0,-1.000000,586.400000,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 +on11,0,0,24,0,0,1403,1440.000000,69,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,69,0,-1.000000,826.250000,baseline,nbiot,60 +on10,0,0,24,1,0,1346,1440.000000,69,0,83171.000000,624.750000,baseline,nbiot,60 +on12,0,0,24,1,0,360,1440.000000,69,0,24862.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1426,1440.000000,69,0,-1.000000,611.750000,baseline,nbiot,60 +on8,0,0,24,1,0,283,1440.000000,69,0,21011.000000,622.150000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,652,1440.000000,69,0,41657.000000,610.450000,baseline,nbiot,60 +on5,0,0,24,1,0,720,1440.000000,69,0,45217.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1435,1440.000000,69,0,-1.000000,579.900000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1395,1440.000000,69,0,-1.000000,635.150000,baseline,nbiot,60 +on10,0,0,24,1,0,401,1440.000000,70,0,25345.000000,628.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1203,1440.000000,70,0,72983.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,1,0,252,1440.000000,70,0,16430.000000,605.900000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,70,0,-1.000000,779.450000,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,70,0,-1.000000,618.250000,baseline,nbiot,60 +on12,0,0,24,1,0,1260,1440.000000,70,0,77479.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1408,1440.000000,70,0,-1.000000,615.000000,baseline,nbiot,60 +on7,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 +on3,0,0,24,1,0,960,1440.000000,70,0,59915.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1412,1440.000000,70,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 +on0,1,2,24,0,0,0,1440.000000,71,0,-1.000000,728.750000,baseline,nbiot,60 +on2,0,0,24,1,0,1369,1440.000000,71,0,83419.000000,609.800000,baseline,nbiot,60 +on3,0,0,24,0,0,1404,1440.000000,71,0,-1.000000,615.000000,baseline,nbiot,60 +on8,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 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1411,1440.000000,71,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1403,1440.000000,71,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,71,0,58351.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1404,1440.000000,71,0,-1.000000,654.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,1431,1440.000000,72,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.650000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,72,0,-1.000000,715.100000,baseline,nbiot,60 +on6,0,0,24,1,0,956,1440.000000,72,0,59556.000000,605.250000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,72,0,23290.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1200,1440.000000,72,0,72638.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1403,1440.000000,72,0,-1.000000,600.700000,baseline,nbiot,60 +on1,0,0,24,1,0,309,1440.000000,72,0,19672.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1405,1440.000000,73,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1437,1440.000000,73,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,73,0,-1.000000,743.050000,baseline,nbiot,60 +on1,0,0,24,1,0,1129,1440.000000,73,0,71166.000000,612.400000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1181,1440.000000,73,0,74023.000000,622.800000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1401,1440.000000,73,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1412,1440.000000,73,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1409,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 +on5,0,0,24,0,0,1414,1440.000000,74,0,-1.000000,654.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,nbiot,60 +on9,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 +on11,0,0,24,1,0,931,1440.000000,74,0,60726.000000,621.500000,baseline,nbiot,60 +on12,0,0,24,1,0,461,1440.000000,74,0,30523.000000,641.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1428,1440.000000,74,0,-1.000000,584.450000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,74,0,-1.000000,729.400000,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,74,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,594.850000,baseline,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,74,0,37143.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1422,1440.000000,75,0,-1.000000,588.350000,baseline,nbiot,60 +on8,0,0,24,0,0,1403,1440.000000,75,0,-1.000000,641.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,75,0,-1.000000,679.350000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,75,0,-1.000000,581.200000,baseline,nbiot,60 +on2,0,0,24,1,0,728,1440.000000,75,0,44695.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1412,1440.000000,75,0,-1.000000,595.500000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1418,1440.000000,75,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,76,0,57440.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1409,1440.000000,76,0,-1.000000,654.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,76,0,-1.000000,680.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1405,1440.000000,76,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1430,1440.000000,76,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,660,1440.000000,76,0,40729.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on10,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 +on7,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,195,1440.000000,77,0,12803.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1412,1440.000000,77,0,-1.000000,615.000000,baseline,nbiot,60 +on9,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,1,0,1020,1440.000000,77,0,61408.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1424,1440.000000,77,0,-1.000000,587.050000,baseline,nbiot,60 +on8,0,0,24,1,0,484,1440.000000,77,0,31407.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,77,0,-1.000000,709.900000,baseline,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,77,0,1910.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1372,1440.000000,78,0,-1.000000,640.350000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,78,0,-1.000000,778.150000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1434,1440.000000,78,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1422,1440.000000,78,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1372,1440.000000,78,0,-1.000000,654.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1386,1440.000000,78,0,-1.000000,636.450000,baseline,nbiot,60 +on5,0,0,24,1,0,305,1440.000000,78,0,20765.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1405,1440.000000,78,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1428,1440.000000,78,0,-1.000000,584.450000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on12,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 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,79,0,-1.000000,600.050000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,367,1440.000000,79,0,22016.000000,602.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,79,0,-1.000000,626.050000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,80,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1358,1440.000000,80,0,-1.000000,649.450000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,80,0,-1.000000,726.800000,baseline,nbiot,60 +on9,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 +on7,0,0,24,1,0,152,1440.000000,80,0,10963.000000,621.500000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1409,1440.000000,80,0,-1.000000,634.500000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1407,1440.000000,80,0,-1.000000,598.100000,baseline,nbiot,60 +on10,0,0,24,0,0,1377,1440.000000,81,0,-1.000000,675.450000,baseline,nbiot,60 +on9,0,0,24,0,0,1429,1440.000000,81,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1411,1440.000000,81,0,-1.000000,615.000000,baseline,nbiot,60 +on5,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 +on11,0,0,24,1,0,436,1440.000000,81,0,26081.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1369,1440.000000,81,0,-1.000000,642.300000,baseline,nbiot,60 +on4,0,0,24,1,0,1260,1440.000000,81,0,77689.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,81,0,-1.000000,754.100000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1429,1440.000000,81,0,-1.000000,583.800000,baseline,nbiot,60 +on3,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,82,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1384,1440.000000,82,0,-1.000000,654.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,82,0,-1.000000,639.700000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,363,1440.000000,82,0,22006.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1392,1440.000000,83,0,-1.000000,608.500000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,83,0,-1.000000,761.250000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,83,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,83,0,59197.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1352,1440.000000,83,0,-1.000000,691.050000,baseline,nbiot,60 +on10,0,0,24,1,0,1080,1440.000000,83,0,65706.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1411,1440.000000,83,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1117,1440.000000,84,0,69405.000000,617.600000,baseline,nbiot,60 +on3,0,0,24,0,0,1400,1440.000000,84,0,-1.000000,603.300000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,84,0,-1.000000,749.550000,baseline,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,84,0,-1.000000,629.300000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.650000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1409,1440.000000,84,0,-1.000000,596.800000,baseline,nbiot,60 +on2,0,0,24,0,0,1430,1440.000000,84,0,-1.000000,583.150000,baseline,nbiot,60 +on8,0,0,24,1,0,13,1440.000000,84,0,3498.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,84,0,13018.000000,602.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,85,0,-1.000000,777.500000,baseline,nbiot,60 +on2,0,0,24,1,0,1320,1440.000000,85,0,81056.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,1,0,870,1440.000000,85,0,57197.000000,622.150000,baseline,nbiot,60 +on3,0,0,24,0,0,1429,1440.000000,85,0,-1.000000,583.800000,baseline,nbiot,60 +on10,0,0,24,0,0,1413,1440.000000,85,0,-1.000000,594.200000,baseline,nbiot,60 +on4,0,0,24,0,0,1409,1440.000000,85,0,-1.000000,596.800000,baseline,nbiot,60 +on9,0,0,24,0,0,1402,1440.000000,85,0,-1.000000,633.850000,baseline,nbiot,60 +on11,0,0,24,0,0,1406,1440.000000,85,0,-1.000000,598.750000,baseline,nbiot,60 +on8,0,0,24,0,0,1413,1440.000000,85,0,-1.000000,594.200000,baseline,nbiot,60 +on12,0,0,24,0,0,1433,1440.000000,85,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1425,1440.000000,85,0,-1.000000,586.400000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,86,0,-1.000000,708.600000,baseline,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,86,0,53601.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1426,1440.000000,86,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,1,0,960,1440.000000,86,0,59389.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1402,1440.000000,86,0,-1.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1380,1440.000000,86,0,-1.000000,654.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1434,1440.000000,86,0,-1.000000,580.550000,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,1440,1440.000000,86,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,87,0,-1.000000,713.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,87,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,517,1440.000000,87,0,33324.000000,641.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1409,1440.000000,87,0,-1.000000,596.800000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1386,1440.000000,87,0,-1.000000,626.050000,baseline,nbiot,60 +on1,0,0,24,0,0,1419,1440.000000,87,0,-1.000000,590.300000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,241,1440.000000,88,0,17052.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1437,1440.000000,88,0,-1.000000,578.600000,baseline,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,88,0,2724.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1149,1440.000000,88,0,73930.000000,640.350000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,88,0,-1.000000,779.450000,baseline,nbiot,60 +on8,0,0,24,0,0,1375,1440.000000,88,0,-1.000000,678.700000,baseline,nbiot,60 +on7,0,0,24,0,0,1403,1440.000000,88,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1417,1440.000000,88,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on1,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 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1429,1440.000000,89,0,-1.000000,583.800000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1413,1440.000000,89,0,-1.000000,594.200000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,89,0,-1.000000,634.500000,baseline,nbiot,60 +on11,0,0,24,0,0,1425,1440.000000,89,0,-1.000000,586.400000,baseline,nbiot,60 +on6,0,0,24,0,0,1420,1440.000000,89,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1428,1440.000000,89,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1422,1440.000000,90,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1419,1440.000000,90,0,-1.000000,590.300000,baseline,nbiot,60 +on1,0,0,24,0,0,1395,1440.000000,90,0,-1.000000,635.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1422,1440.000000,90,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,90,0,-1.000000,654.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1388,1440.000000,90,0,-1.000000,654.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,90,0,-1.000000,813.250000,baseline,nbiot,60 +on3,0,0,24,1,0,1378,1440.000000,90,0,85746.000000,641.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1218,1440.000000,90,0,73118.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1112,1440.000000,90,0,70007.000000,641.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1438,1440.000000,90,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,120,1440.000000,91,0,8405.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1439,1440.000000,91,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1387,1440.000000,91,0,-1.000000,628.650000,baseline,nbiot,60 +on6,0,0,24,0,0,1370,1440.000000,91,0,-1.000000,654.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1409,1440.000000,91,0,-1.000000,596.800000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,91,0,-1.000000,769.700000,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 +on3,0,0,24,0,0,1401,1440.000000,91,0,-1.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1413,1440.000000,91,0,-1.000000,599.400000,baseline,nbiot,60 +on12,0,0,24,0,0,1412,1440.000000,91,0,-1.000000,594.850000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,91,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 +on4,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 +on7,0,0,24,1,0,1326,1440.000000,92,0,81444.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,92,0,-1.000000,689.100000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1060,1440.000000,92,0,67202.000000,641.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,780,1440.000000,92,0,47930.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1428,1440.000000,92,0,-1.000000,584.450000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,92,0,-1.000000,614.350000,baseline,nbiot,60 +on6,0,0,24,0,0,1400,1440.000000,93,0,-1.000000,603.300000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1437,1440.000000,93,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1430,1440.000000,93,0,-1.000000,583.150000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,93,0,-1.000000,642.950000,baseline,nbiot,60 +on5,0,0,24,1,0,1080,1440.000000,93,0,67517.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.650000,baseline,nbiot,60 +on3,0,0,24,0,0,1436,1440.000000,93,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1413,1440.000000,94,0,-1.000000,594.200000,baseline,nbiot,60 +on5,0,0,24,1,0,1130,1440.000000,94,0,68591.000000,609.150000,baseline,nbiot,60 +on10,0,0,24,1,0,1020,1440.000000,94,0,64349.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,1,0,60,1440.000000,94,0,5942.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,94,0,-1.000000,693.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1421,1440.000000,94,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1439,1440.000000,94,0,-1.000000,577.300000,baseline,nbiot,60 +on12,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 +on6,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,793,1440.000000,95,0,50303.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1425,1440.000000,95,0,-1.000000,586.400000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,730,1440.000000,95,0,46205.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,269,1440.000000,95,0,18599.000000,622.800000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,95,0,-1.000000,685.200000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1423,1440.000000,96,0,-1.000000,587.700000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1427,1440.000000,96,0,-1.000000,585.100000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1401,1440.000000,96,0,-1.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1399,1440.000000,96,0,-1.000000,639.700000,baseline,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,96,0,60266.000000,602.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,96,0,-1.000000,702.750000,baseline,nbiot,60 +on6,0,0,24,0,0,1401,1440.000000,96,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1403,1440.000000,97,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1406,1440.000000,97,0,-1.000000,598.750000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1080,1440.000000,97,0,67792.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1327,1440.000000,97,0,81575.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1429,1440.000000,97,0,-1.000000,583.800000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,97,0,-1.000000,722.250000,baseline,nbiot,60 +on3,0,0,24,1,0,604,1440.000000,97,0,38532.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1421,1440.000000,97,0,-1.000000,600.700000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,98,0,-1.000000,686.500000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1417,1440.000000,98,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1388,1440.000000,98,0,-1.000000,654.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,781,1440.000000,98,0,48591.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1405,1440.000000,98,0,-1.000000,600.050000,baseline,nbiot,60 +on5,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 +on3,0,0,24,0,0,1426,1440.000000,98,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1435,1440.000000,99,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,300,1440.000000,99,0,20326.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,99,0,4284.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,1,0,128,1440.000000,99,0,9336.000000,641.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1406,1440.000000,99,0,-1.000000,598.750000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1363,1440.000000,99,0,84908.000000,658.550000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,99,0,-1.000000,774.900000,baseline,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,99,0,16620.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1420,1440.000000,99,0,-1.000000,589.650000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,436,1440.000000,100,0,26899.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1405,1440.000000,100,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1437,1440.000000,100,0,-1.000000,578.600000,baseline,nbiot,60 +on3,0,0,24,0,0,1433,1440.000000,100,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,100,0,-1.000000,709.250000,baseline,nbiot,60 +on12,0,0,24,1,0,1320,1440.000000,100,0,82237.000000,602.000000,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,1405,1440.000000,100,0,-1.000000,628.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1401,1440.000000,100,0,-1.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1153,1440.000000,101,0,70967.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1415,1440.000000,101,0,-1.000000,615.000000,baseline,nbiot,60 +on4,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,733.300000,baseline,nbiot,60 +on8,0,0,24,0,0,1396,1440.000000,101,0,-1.000000,630.600000,baseline,nbiot,60 +on3,0,0,24,0,0,1406,1440.000000,101,0,-1.000000,598.750000,baseline,nbiot,60 +on5,0,0,24,0,0,1401,1440.000000,101,0,-1.000000,619.550000,baseline,nbiot,60 +on2,0,0,24,0,0,1403,1440.000000,101,0,-1.000000,600.700000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on11,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 +on7,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,101,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1424,1440.000000,102,0,-1.000000,587.050000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1421,1440.000000,102,0,-1.000000,603.300000,baseline,nbiot,60 +on9,0,0,24,1,0,1261,1440.000000,102,0,78840.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1295,1440.000000,102,0,80587.000000,652.700000,baseline,nbiot,60 +on12,0,0,24,1,0,735,1440.000000,102,0,44439.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1426,1440.000000,102,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,102,0,-1.000000,749.550000,baseline,nbiot,60 +on2,0,0,24,0,0,1409,1440.000000,102,0,-1.000000,597.450000,baseline,nbiot,60 +on3,0,0,24,0,0,1433,1440.000000,102,0,-1.000000,592.900000,baseline,nbiot,60 +on7,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 +on6,0,0,24,0,0,1414,1440.000000,102,0,-1.000000,615.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,0,0,1440,1440.000000,103,0,-1.000000,576.650000,baseline,nbiot,60 +on11,0,0,24,0,0,1408,1440.000000,103,0,-1.000000,597.450000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1433,1440.000000,103,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1437,1440.000000,103,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1406,1440.000000,103,0,-1.000000,598.750000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,103,0,-1.000000,667.650000,baseline,nbiot,60 +on9,0,0,24,0,0,1407,1440.000000,103,0,-1.000000,598.750000,baseline,nbiot,60 +on8,0,0,24,0,0,1416,1440.000000,103,0,-1.000000,592.250000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,727,1440.000000,104,0,45398.000000,602.000000,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,1379,1440.000000,104,0,-1.000000,616.950000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,104,0,-1.000000,724.200000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1430,1440.000000,104,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1388,1440.000000,104,0,-1.000000,626.050000,baseline,nbiot,60 +on1,0,0,24,0,0,1403,1440.000000,104,0,-1.000000,600.700000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1419,1440.000000,104,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1439,1440.000000,105,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1436,1440.000000,105,0,-1.000000,579.250000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,105,0,-1.000000,676.100000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1413,1440.000000,105,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1025,1440.000000,105,0,61410.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1411,1440.000000,105,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1413,1440.000000,105,0,-1.000000,594.200000,baseline,nbiot,60 +on4,0,0,24,0,0,1420,1440.000000,105,0,-1.000000,589.650000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1325,1440.000000,106,0,82110.000000,602.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,106,0,-1.000000,757.350000,baseline,nbiot,60 +on4,0,0,24,1,0,960,1440.000000,106,0,58744.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1422,1440.000000,106,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1401,1440.000000,106,0,-1.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,1,0,181,1440.000000,106,0,11759.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,60,1440.000000,106,0,5472.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1421,1440.000000,106,0,-1.000000,609.150000,baseline,nbiot,60 +on6,0,0,24,1,0,423,1440.000000,106,0,25432.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,1,0,180,1440.000000,107,0,12936.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1433,1440.000000,107,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on4,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 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,107,0,-1.000000,612.400000,baseline,nbiot,60 +on7,0,0,24,0,0,1433,1440.000000,107,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on6,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 +on2,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 +on4,0,0,24,0,0,1425,1440.000000,108,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1439,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 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,108,0,37290.000000,602.000000,baseline,nbiot,60 +on1,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 +on10,0,0,24,1,0,60,1440.000000,108,0,5165.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1429,1440.000000,108,0,-1.000000,652.050000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,108,0,-1.000000,648.150000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1415,1440.000000,109,0,-1.000000,592.900000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1419,1440.000000,109,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on12,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 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1401,1440.000000,109,0,-1.000000,602.000000,baseline,nbiot,60 +on7,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,659.200000,baseline,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,109,0,7672.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1410,1440.000000,110,0,-1.000000,651.400000,baseline,nbiot,60 +on9,0,0,24,0,0,1365,1440.000000,110,0,-1.000000,626.050000,baseline,nbiot,60 +on5,0,0,24,1,0,494,1440.000000,110,0,30040.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1402,1440.000000,110,0,-1.000000,601.350000,baseline,nbiot,60 +on3,0,0,24,0,0,1402,1440.000000,110,0,-1.000000,601.350000,baseline,nbiot,60 +on12,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 +on0,1,4,24,0,0,0,1440.000000,110,0,-1.000000,816.500000,baseline,nbiot,60 +on2,0,0,24,1,0,966,1440.000000,110,0,60845.000000,603.300000,baseline,nbiot,60 +on4,0,0,24,1,0,609,1440.000000,110,0,36756.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1421,1440.000000,110,0,-1.000000,604.600000,baseline,nbiot,60 +on11,0,0,24,1,0,123,1440.000000,110,0,8128.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,111,0,69320.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,111,0,-1.000000,658.550000,baseline,nbiot,60 +on4,0,0,24,1,0,721,1440.000000,111,0,44155.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,900,1440.000000,111,0,54568.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1434,1440.000000,111,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on1,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 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1429,1440.000000,112,0,-1.000000,654.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,890,1440.000000,112,0,55474.000000,620.850000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1410,1440.000000,112,0,-1.000000,606.550000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,734,1440.000000,112,0,49819.000000,659.850000,baseline,nbiot,60 +on2,0,0,24,0,0,1412,1440.000000,112,0,-1.000000,654.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,112,0,-1.000000,758.650000,baseline,nbiot,60 +on6,0,0,24,0,0,1431,1440.000000,112,0,-1.000000,582.500000,baseline,nbiot,60 +on7,0,0,24,1,0,0,1440.000000,112,0,1904.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1423,1440.000000,113,0,-1.000000,587.700000,baseline,nbiot,60 +on2,0,0,24,1,0,123,1440.000000,113,0,10202.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,721,1440.000000,113,0,44278.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1436,1440.000000,113,0,-1.000000,579.250000,baseline,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,113,0,-1.000000,601.350000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,113,0,-1.000000,668.300000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1405,1440.000000,114,0,-1.000000,599.400000,baseline,nbiot,60 +on5,0,0,24,0,0,1438,1440.000000,114,0,-1.000000,577.950000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,114,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 +on3,0,0,24,0,0,1410,1440.000000,114,0,-1.000000,596.150000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1393,1440.000000,114,0,85392.000000,602.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,114,0,-1.000000,661.150000,baseline,nbiot,60 +on6,0,0,24,0,0,1420,1440.000000,114,0,-1.000000,589.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,540,1440.000000,115,0,32757.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,1,0,679,1440.000000,115,0,40662.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1406,1440.000000,115,0,-1.000000,608.500000,baseline,nbiot,60 +on11,0,0,24,1,0,606,1440.000000,115,0,39224.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1381,1440.000000,115,0,-1.000000,615.650000,baseline,nbiot,60 +on7,0,0,24,0,0,1417,1440.000000,115,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1425,1440.000000,115,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,115,0,44732.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1354,1440.000000,115,0,-1.000000,709.250000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,115,0,-1.000000,828.200000,baseline,nbiot,60 +on1,0,0,24,0,0,1394,1440.000000,116,0,-1.000000,613.050000,baseline,nbiot,60 +on6,0,0,24,0,0,1388,1440.000000,116,0,-1.000000,631.900000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on3,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 +on5,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,734,1440.000000,116,0,44664.000000,602.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,116,0,-1.000000,742.400000,baseline,nbiot,60 +on7,0,0,24,0,0,1387,1440.000000,116,0,-1.000000,654.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1416,1440.000000,116,0,-1.000000,592.250000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1407,1440.000000,116,0,-1.000000,598.750000,baseline,nbiot,60 +on4,0,0,24,1,0,1304,1440.000000,117,0,79527.000000,613.050000,baseline,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,117,0,69405.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1428,1440.000000,117,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1426,1440.000000,117,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,117,0,-1.000000,726.800000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,117,0,-1.000000,654.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1412,1440.000000,117,0,-1.000000,594.850000,baseline,nbiot,60 +on5,0,0,24,1,0,422,1440.000000,117,0,28288.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,118,0,13451.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1418,1440.000000,118,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,nbiot,60 +on7,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 +on5,0,0,24,0,0,1417,1440.000000,118,0,-1.000000,591.600000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,118,0,-1.000000,690.400000,baseline,nbiot,60 +on8,0,0,24,1,0,900,1440.000000,118,0,57532.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1076,1440.000000,118,0,66889.000000,605.250000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1437,1440.000000,118,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1427,1440.000000,119,0,-1.000000,585.100000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1427,1440.000000,119,0,-1.000000,590.950000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1048,1440.000000,119,0,66846.000000,641.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,119,0,80293.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,119,0,-1.000000,730.050000,baseline,nbiot,60 +on8,0,0,24,0,0,1419,1440.000000,119,0,-1.000000,590.300000,baseline,nbiot,60 +on2,0,0,24,0,0,1431,1440.000000,119,0,-1.000000,611.100000,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,119,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,196,1440.000000,119,0,11765.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,120,0,-1.000000,633.850000,baseline,nbiot,60 +on4,0,0,24,0,0,1422,1440.000000,120,0,-1.000000,588.350000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on9,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 +on5,0,0,24,0,0,1420,1440.000000,120,0,-1.000000,589.650000,baseline,nbiot,60 +on6,0,0,24,0,0,1433,1440.000000,120,0,-1.000000,581.200000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1427,1440.000000,120,0,-1.000000,585.100000,baseline,nbiot,60 +on7,0,0,24,0,0,1414,1440.000000,120,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,677,1440.000000,121,0,39746.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1402,1440.000000,121,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,121,0,-1.000000,627.350000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,361,1440.000000,122,0,24986.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1424,1440.000000,122,0,-1.000000,587.050000,baseline,nbiot,60 +on1,0,0,24,0,0,1405,1440.000000,122,0,-1.000000,636.450000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1399,1440.000000,122,0,-1.000000,603.950000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1429,1440.000000,122,0,-1.000000,583.800000,baseline,nbiot,60 +on10,0,0,24,0,0,1402,1440.000000,122,0,-1.000000,601.350000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,122,0,-1.000000,730.050000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,783,1440.000000,122,0,50245.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1432,1440.000000,122,0,-1.000000,615.000000,baseline,nbiot,60 +on8,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 +on6,0,0,24,1,0,600,1440.000000,123,0,36351.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1404,1440.000000,123,0,-1.000000,600.050000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1421,1440.000000,123,0,-1.000000,602.650000,baseline,nbiot,60 +on10,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 +on9,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 +on1,0,0,24,1,0,120,1440.000000,123,0,8346.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,123,0,-1.000000,665.050000,baseline,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,124,0,-1.000000,599.400000,baseline,nbiot,60 +on8,0,0,24,0,0,1439,1440.000000,124,0,-1.000000,577.300000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,124,0,-1.000000,737.200000,baseline,nbiot,60 +on6,0,0,24,1,0,367,1440.000000,124,0,23270.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1418,1440.000000,124,0,-1.000000,590.950000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,420,1440.000000,124,0,25714.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1392,1440.000000,124,0,-1.000000,624.100000,baseline,nbiot,60 +on2,0,0,24,1,0,1098,1440.000000,124,0,67006.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1424,1440.000000,124,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1424,1440.000000,125,0,-1.000000,654.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,125,0,-1.000000,750.200000,baseline,nbiot,60 +on12,0,0,24,0,0,1382,1440.000000,125,0,-1.000000,637.100000,baseline,nbiot,60 +on5,0,0,24,0,0,1437,1440.000000,125,0,-1.000000,578.600000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,191,1440.000000,125,0,10974.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,125,0,22155.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1367,1440.000000,125,0,-1.000000,649.450000,baseline,nbiot,60 +on4,0,0,24,0,0,1412,1440.000000,125,0,-1.000000,594.850000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,126,0,-1.000000,702.750000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1020,1440.000000,126,0,63617.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,1,0,316,1440.000000,126,0,20271.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1434,1440.000000,126,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,259,1440.000000,126,0,15057.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1413,1440.000000,126,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,1,0,907,1440.000000,126,0,54627.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,127,0,-1.000000,589.650000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1407,1440.000000,127,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1026,1440.000000,127,0,63144.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1419,1440.000000,127,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1380,1440.000000,127,0,-1.000000,635.150000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,127,0,-1.000000,628.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,127,0,-1.000000,759.950000,baseline,nbiot,60 +on8,0,0,24,1,0,1085,1440.000000,127,0,68052.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1419,1440.000000,127,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1423,1440.000000,128,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,720,1440.000000,128,0,44456.000000,602.000000,baseline,nbiot,60 +on4,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 +on5,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1406,1440.000000,128,0,-1.000000,612.400000,baseline,nbiot,60 +on10,0,0,24,1,0,911,1440.000000,128,0,55553.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1430,1440.000000,128,0,-1.000000,583.150000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1021,1440.000000,128,0,63838.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1200,1440.000000,128,0,72422.000000,641.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,128,0,-1.000000,722.900000,baseline,nbiot,60 +on8,0,0,24,0,0,1412,1440.000000,129,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,129,0,-1.000000,761.250000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,129,0,-1.000000,587.700000,baseline,nbiot,60 +on4,0,0,24,0,0,1386,1440.000000,129,0,-1.000000,639.700000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1370,1440.000000,129,0,-1.000000,622.800000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1408,1440.000000,129,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1404,1440.000000,129,0,-1.000000,600.050000,baseline,nbiot,60 +on1,0,0,24,1,0,17,1440.000000,129,0,275.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,1,0,772,1440.000000,130,0,47669.000000,641.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,660,1440.000000,130,0,41350.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1409,1440.000000,130,0,-1.000000,596.800000,baseline,nbiot,60 +on10,0,0,24,0,0,1406,1440.000000,130,0,-1.000000,598.750000,baseline,nbiot,60 +on11,0,0,24,0,0,1400,1440.000000,130,0,-1.000000,653.350000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,130,0,-1.000000,780.750000,baseline,nbiot,60 +on5,0,0,24,1,0,243,1440.000000,130,0,15945.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,600.700000,baseline,nbiot,60 +on7,0,0,24,0,0,1402,1440.000000,130,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1408,1440.000000,131,0,-1.000000,598.100000,baseline,nbiot,60 +on4,0,0,24,0,0,1401,1440.000000,131,0,-1.000000,615.000000,baseline,nbiot,60 +on10,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 +on0,1,2,24,0,0,0,1440.000000,131,0,-1.000000,736.550000,baseline,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,131,0,66169.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1412,1440.000000,131,0,-1.000000,654.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1431,1440.000000,131,0,-1.000000,582.500000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1404,1440.000000,131,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1431,1440.000000,131,0,-1.000000,582.500000,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,1,0,1026,1440.000000,131,0,62345.000000,605.900000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,132,0,-1.000000,669.600000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,132,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1412,1440.000000,132,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,729,1440.000000,132,0,46366.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,132,0,61851.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1409,1440.000000,133,0,-1.000000,596.800000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,406,1440.000000,133,0,25726.000000,641.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1436,1440.000000,133,0,-1.000000,579.250000,baseline,nbiot,60 +on4,0,0,24,1,0,840,1440.000000,133,0,52853.000000,602.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,133,0,-1.000000,749.550000,baseline,nbiot,60 +on6,0,0,24,1,0,1336,1440.000000,133,0,82332.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1394,1440.000000,133,0,-1.000000,634.500000,baseline,nbiot,60 +on1,0,0,24,0,0,1434,1440.000000,133,0,-1.000000,580.550000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1159,1440.000000,133,0,69520.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1397,1440.000000,134,0,-1.000000,629.950000,baseline,nbiot,60 +on5,0,0,24,0,0,1412,1440.000000,134,0,-1.000000,654.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,134,0,-1.000000,667.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1422,1440.000000,134,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1435,1440.000000,134,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,134,0,15778.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1438,1440.000000,135,0,-1.000000,577.950000,baseline,nbiot,60 +on11,0,0,24,0,0,1413,1440.000000,135,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,135,0,-1.000000,706.650000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1402,1440.000000,135,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,881,1440.000000,135,0,55644.000000,619.550000,baseline,nbiot,60 +on2,0,0,24,0,0,1410,1440.000000,135,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,1,0,191,1440.000000,135,0,11095.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,60,1440.000000,136,0,4948.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,136,0,81647.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,353,1440.000000,136,0,25148.000000,641.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,136,0,-1.000000,740.450000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1411,1440.000000,136,0,-1.000000,595.500000,baseline,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,136,0,17560.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,136,0,32133.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,137,0,-1.000000,625.400000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,432,1440.000000,137,0,25342.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1436,1440.000000,137,0,-1.000000,579.250000,baseline,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,137,0,-1.000000,615.650000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1403,1440.000000,138,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1423,1440.000000,138,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1421,1440.000000,138,0,-1.000000,625.400000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,138,0,-1.000000,712.500000,baseline,nbiot,60 +on7,0,0,24,0,0,1405,1440.000000,138,0,-1.000000,599.400000,baseline,nbiot,60 +on2,0,0,24,1,0,188,1440.000000,138,0,11550.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1422,1440.000000,138,0,-1.000000,588.350000,baseline,nbiot,60 +on1,0,0,24,0,0,1403,1440.000000,138,0,-1.000000,600.700000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1439,1440.000000,139,0,-1.000000,577.300000,baseline,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,139,0,51245.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,nbiot,60 +on9,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 +on0,1,3,24,0,0,0,1440.000000,139,0,-1.000000,687.150000,baseline,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,139,0,62005.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1420,1440.000000,139,0,-1.000000,589.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1413,1440.000000,139,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1277,1440.000000,139,0,77518.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.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 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,597,1440.000000,140,0,37268.000000,634.500000,baseline,nbiot,60 +on7,0,0,24,0,0,1436,1440.000000,140,0,-1.000000,579.250000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on3,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 +on6,0,0,24,1,0,60,1440.000000,140,0,3660.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1398,1440.000000,140,0,85867.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,140,0,-1.000000,659.850000,baseline,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,141,0,6496.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1425,1440.000000,141,0,-1.000000,586.400000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1302,1440.000000,141,0,82666.000000,626.700000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,141,0,-1.000000,699.500000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1439,1440.000000,141,0,-1.000000,615.000000,baseline,nbiot,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,141,0,54940.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1427,1440.000000,141,0,-1.000000,585.100000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1419,1440.000000,142,0,-1.000000,615.000000,baseline,nbiot,60 +on7,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,1413,1440.000000,142,0,-1.000000,594.200000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,142,0,-1.000000,712.500000,baseline,nbiot,60 +on12,0,0,24,0,0,1416,1440.000000,142,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,727,1440.000000,142,0,46543.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1398,1440.000000,142,0,-1.000000,654.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1430,1440.000000,142,0,-1.000000,583.150000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,142,0,38804.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,1,0,615,1440.000000,143,0,39048.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1433,1440.000000,143,0,-1.000000,581.200000,baseline,nbiot,60 +on1,0,0,24,1,0,180,1440.000000,143,0,13937.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,536,1440.000000,143,0,33086.000000,611.750000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1420,1440.000000,143,0,-1.000000,617.600000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,143,0,-1.000000,736.550000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,63,1440.000000,143,0,6060.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1400,1440.000000,143,0,-1.000000,654.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,144,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,144,0,-1.000000,755.400000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1403,1440.000000,144,0,-1.000000,634.500000,baseline,nbiot,60 +on6,0,0,24,1,0,1255,1440.000000,144,0,78524.000000,607.850000,baseline,nbiot,60 +on7,0,0,24,0,0,1435,1440.000000,144,0,-1.000000,579.900000,baseline,nbiot,60 +on2,0,0,24,0,0,1417,1440.000000,144,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,1,0,963,1440.000000,144,0,60885.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1418,1440.000000,144,0,-1.000000,590.950000,baseline,nbiot,60 +on11,0,0,24,0,0,1413,1440.000000,144,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,144,0,868.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,145,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1424,1440.000000,145,0,-1.000000,620.850000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1403,1440.000000,145,0,-1.000000,600.700000,baseline,nbiot,60 +on2,0,0,24,0,0,1419,1440.000000,145,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1393,1440.000000,145,0,-1.000000,636.450000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1423,1440.000000,145,0,-1.000000,588.350000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,145,0,-1.000000,682.600000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1424,1440.000000,146,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1417,1440.000000,146,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1386,1440.000000,146,0,-1.000000,613.050000,baseline,nbiot,60 +on2,0,0,24,0,0,1414,1440.000000,146,0,-1.000000,593.550000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,195,1440.000000,146,0,11092.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,146,0,8278.000000,602.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,146,0,-1.000000,745.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,146,0,-1.000000,633.200000,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,146,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1422,1440.000000,147,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1426,1440.000000,147,0,-1.000000,585.750000,baseline,nbiot,60 +on6,0,0,24,1,0,120,1440.000000,147,0,8034.000000,602.000000,baseline,nbiot,60 +on2,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,712.500000,baseline,nbiot,60 +on5,0,0,24,0,0,1424,1440.000000,147,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1432,1440.000000,147,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1416,1440.000000,147,0,-1.000000,618.900000,baseline,nbiot,60 +on10,0,0,24,0,0,1411,1440.000000,147,0,-1.000000,595.500000,baseline,nbiot,60 +on12,0,0,24,1,0,785,1440.000000,147,0,47540.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1427,1440.000000,147,0,-1.000000,585.100000,baseline,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,148,0,18942.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,148,0,30943.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,148,0,-1.000000,681.300000,baseline,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,148,0,-1.000000,599.400000,baseline,nbiot,60 +on4,0,0,24,0,0,1418,1440.000000,148,0,-1.000000,591.600000,baseline,nbiot,60 +on2,0,0,24,0,0,1419,1440.000000,148,0,-1.000000,590.300000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1300,1440.000000,149,0,81602.000000,680.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1432,1440.000000,149,0,-1.000000,581.850000,baseline,nbiot,60 +on11,0,0,24,0,0,1430,1440.000000,149,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1433,1440.000000,149,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1273,1440.000000,149,0,77730.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,627,1440.000000,149,0,40913.000000,666.350000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,149,0,-1.000000,732.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1434,1440.000000,150,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1401,1440.000000,150,0,-1.000000,654.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,0,0,1421,1440.000000,150,0,-1.000000,589.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,600,1440.000000,150,0,37623.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1417,1440.000000,150,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1272,1440.000000,150,0,78829.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,150,0,-1.000000,713.800000,baseline,nbiot,60 +on1,0,0,24,1,0,728,1440.000000,150,0,43667.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1428,1440.000000,151,0,-1.000000,584.450000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1397,1440.000000,151,0,-1.000000,621.500000,baseline,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,151,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,151,0,-1.000000,658.550000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1409,1440.000000,151,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,372,1440.000000,152,0,22028.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,152,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1430,1440.000000,152,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,1,0,19,1440.000000,152,0,3370.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,152,0,-1.000000,700.800000,baseline,nbiot,60 +on4,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 +on12,0,0,24,1,0,1153,1440.000000,152,0,70109.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1412,1440.000000,152,0,-1.000000,595.500000,baseline,nbiot,60 +on11,0,0,24,0,0,1436,1440.000000,152,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1421,1440.000000,153,0,-1.000000,599.400000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,153,0,-1.000000,783.350000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,136,1440.000000,153,0,8023.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1416,1440.000000,153,0,-1.000000,654.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,153,0,-1.000000,624.100000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,15,1440.000000,153,0,449.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1420,1440.000000,153,0,-1.000000,589.650000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1414,1440.000000,153,0,-1.000000,623.450000,baseline,nbiot,60 +on2,0,0,24,1,0,1234,1440.000000,153,0,75716.000000,619.550000,baseline,nbiot,60 +on9,0,0,24,1,0,1031,1440.000000,153,0,62321.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1420,1440.000000,154,0,-1.000000,589.650000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,154,0,-1.000000,724.850000,baseline,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,154,0,710.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1409,1440.000000,154,0,-1.000000,654.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1418,1440.000000,154,0,-1.000000,590.950000,baseline,nbiot,60 +on4,0,0,24,0,0,1420,1440.000000,154,0,-1.000000,589.650000,baseline,nbiot,60 +on7,0,0,24,1,0,240,1440.000000,154,0,15283.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1430,1440.000000,154,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,840,1440.000000,154,0,53607.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1430,1440.000000,155,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1416,1440.000000,155,0,-1.000000,592.900000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,155,0,-1.000000,698.850000,baseline,nbiot,60 +on10,0,0,24,0,0,1431,1440.000000,155,0,-1.000000,582.500000,baseline,nbiot,60 +on1,0,0,24,1,0,1120,1440.000000,155,0,69258.000000,651.400000,baseline,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,155,0,55990.000000,602.000000,baseline,nbiot,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1025,1440.000000,155,0,63742.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,156,0,-1.000000,673.500000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1427,1440.000000,156,0,-1.000000,585.100000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1400,1440.000000,156,0,-1.000000,654.000000,baseline,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,156,0,7776.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1422,1440.000000,156,0,-1.000000,624.750000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1407,1440.000000,156,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1084,1440.000000,157,0,68284.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,157,0,63226.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1439,1440.000000,157,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1416,1440.000000,157,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,157,0,-1.000000,715.100000,baseline,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,157,0,-1.000000,587.050000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,617,1440.000000,157,0,42779.000000,667.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1411,1440.000000,158,0,-1.000000,615.000000,baseline,nbiot,60 +on9,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 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1430,1440.000000,158,0,-1.000000,583.150000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1439,1440.000000,158,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,1,0,908,1440.000000,158,0,55904.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,158,0,-1.000000,629.950000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1432,1440.000000,159,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,159,0,7553.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,1,0,339,1440.000000,159,0,24699.000000,645.550000,baseline,nbiot,60 +on12,0,0,24,1,0,671,1440.000000,159,0,41985.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,964,1440.000000,159,0,58908.000000,602.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,159,0,-1.000000,735.900000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1410,1440.000000,159,0,-1.000000,596.150000,baseline,nbiot,60 +on2,0,0,24,0,0,1421,1440.000000,159,0,-1.000000,603.950000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1439,1440.000000,159,0,-1.000000,577.300000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1021,1440.000000,160,0,67857.000000,680.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1403,1440.000000,160,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1419,1440.000000,160,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,160,0,26442.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,160,0,-1.000000,811.300000,baseline,nbiot,60 +on2,0,0,24,0,0,1364,1440.000000,160,0,-1.000000,641.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,618,1440.000000,160,0,37485.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1414,1440.000000,160,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1434,1440.000000,160,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1415,1440.000000,161,0,-1.000000,592.900000,baseline,nbiot,60 +on3,0,0,24,1,0,360,1440.000000,161,0,22217.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1418,1440.000000,161,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1429,1440.000000,161,0,-1.000000,583.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,420,1440.000000,161,0,28522.000000,602.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,161,0,-1.000000,693.650000,baseline,nbiot,60 +on11,0,0,24,0,0,1401,1440.000000,161,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,720,1440.000000,162,0,45493.000000,602.000000,baseline,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,162,0,-1.000000,804.150000,baseline,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,162,0,26561.000000,641.000000,baseline,nbiot,60 +on8,0,0,24,1,0,597,1440.000000,162,0,37810.000000,604.600000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1421,1440.000000,162,0,-1.000000,614.350000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,660,1440.000000,162,0,39739.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,8,1440.000000,162,0,3077.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1409,1440.000000,162,0,-1.000000,596.800000,baseline,nbiot,60 +on1,0,0,24,1,0,1155,1440.000000,162,0,71283.000000,604.600000,baseline,nbiot,60 +on4,0,0,24,0,0,1439,1440.000000,162,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,1,0,538,1440.000000,162,0,34229.000000,635.800000,baseline,nbiot,60 +on4,0,0,24,0,0,1398,1440.000000,163,0,-1.000000,654.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1421,1440.000000,163,0,-1.000000,589.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1378,1440.000000,163,0,-1.000000,638.400000,baseline,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,163,0,-1.000000,592.900000,baseline,nbiot,60 +on12,0,0,24,0,0,1374,1440.000000,163,0,-1.000000,620.200000,baseline,nbiot,60 +on7,0,0,24,0,0,1432,1440.000000,163,0,-1.000000,616.300000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,163,0,-1.000000,752.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1416,1440.000000,163,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1438,1440.000000,163,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1429,1440.000000,163,0,-1.000000,615.000000,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,1415,1440.000000,164,0,-1.000000,601.350000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1431,1440.000000,164,0,-1.000000,610.450000,baseline,nbiot,60 +on3,0,0,24,0,0,1359,1440.000000,164,0,-1.000000,630.600000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,164,0,-1.000000,760.600000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1411,1440.000000,164,0,-1.000000,595.500000,baseline,nbiot,60 +on9,0,0,24,0,0,1421,1440.000000,164,0,-1.000000,589.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,720,1440.000000,164,0,45078.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1407,1440.000000,164,0,-1.000000,598.100000,baseline,nbiot,60 +on8,0,0,24,1,0,60,1440.000000,164,0,5466.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1413,1440.000000,165,0,-1.000000,594.200000,baseline,nbiot,60 +on6,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 +on1,0,0,24,0,0,1438,1440.000000,165,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,1,0,748,1440.000000,165,0,48234.000000,626.050000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,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,1418,1440.000000,165,0,-1.000000,590.950000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,165,0,-1.000000,661.150000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,166,0,36347.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1003,1440.000000,166,0,63527.000000,613.700000,baseline,nbiot,60 +on10,0,0,24,1,0,977,1440.000000,166,0,61099.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1438,1440.000000,166,0,-1.000000,602.650000,baseline,nbiot,60 +on5,0,0,24,0,0,1410,1440.000000,166,0,-1.000000,596.150000,baseline,nbiot,60 +on12,0,0,24,1,0,791,1440.000000,166,0,49350.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1421,1440.000000,166,0,-1.000000,607.850000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,166,0,-1.000000,769.050000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1413,1440.000000,166,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,166,0,-1.000000,600.050000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1270,1440.000000,167,0,76585.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1408,1440.000000,167,0,-1.000000,597.450000,baseline,nbiot,60 +on3,0,0,24,0,0,1415,1440.000000,167,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1433,1440.000000,167,0,-1.000000,620.200000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,167,0,-1.000000,698.200000,baseline,nbiot,60 +on1,0,0,24,1,0,607,1440.000000,167,0,39352.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,167,0,70569.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,168,0,-1.000000,726.800000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1422,1440.000000,168,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1398,1440.000000,168,0,-1.000000,624.750000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1421,1440.000000,168,0,-1.000000,589.650000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1169,1440.000000,168,0,74864.000000,622.800000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,686,1440.000000,168,0,44176.000000,680.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1438,1440.000000,169,0,-1.000000,577.950000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,169,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1398,1440.000000,169,0,-1.000000,625.400000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1429,1440.000000,169,0,-1.000000,583.800000,baseline,nbiot,60 +on6,0,0,24,0,0,1422,1440.000000,169,0,-1.000000,588.350000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,169,0,-1.000000,672.200000,baseline,nbiot,60 +on9,0,0,24,1,0,379,1440.000000,169,0,25173.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1402,1440.000000,170,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1380,1440.000000,170,0,-1.000000,652.700000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,170,0,-1.000000,681.300000,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 +on1,0,0,24,0,0,1434,1440.000000,170,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1428,1440.000000,170,0,-1.000000,584.450000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,120,1440.000000,170,0,8552.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1430,1440.000000,171,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1434,1440.000000,171,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1415,1440.000000,171,0,-1.000000,592.900000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,171,0,-1.000000,700.800000,baseline,nbiot,60 +on6,0,0,24,0,0,1424,1440.000000,171,0,-1.000000,587.050000,baseline,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,171,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,1,0,931,1440.000000,171,0,58062.000000,621.500000,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,171,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1412,1440.000000,172,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1415,1440.000000,172,0,-1.000000,592.900000,baseline,nbiot,60 +on8,0,0,24,0,0,1426,1440.000000,172,0,-1.000000,585.750000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,172,0,-1.000000,694.300000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1140,1440.000000,172,0,69833.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1408,1440.000000,172,0,-1.000000,597.450000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1402,1440.000000,172,0,-1.000000,601.350000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,173,0,-1.000000,745.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1051,1440.000000,173,0,65702.000000,621.500000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1422,1440.000000,173,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1399,1440.000000,173,0,-1.000000,636.450000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1421,1440.000000,173,0,-1.000000,589.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1412,1440.000000,173,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,750,1440.000000,173,0,47576.000000,641.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1422,1440.000000,174,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1427,1440.000000,174,0,-1.000000,615.000000,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,240,1440.000000,174,0,14663.000000,602.000000,baseline,nbiot,60 +on7,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,1440,1440.000000,174,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1408,1440.000000,174,0,-1.000000,597.450000,baseline,nbiot,60 +on1,0,0,24,1,0,1320,1440.000000,174,0,82732.000000,602.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,174,0,-1.000000,694.300000,baseline,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,174,0,-1.000000,626.700000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,175,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,175,0,-1.000000,713.150000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,175,0,2684.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1416,1440.000000,175,0,-1.000000,603.950000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,914,1440.000000,175,0,59134.000000,663.750000,baseline,nbiot,60 +on8,0,0,24,0,0,1414,1440.000000,175,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1416,1440.000000,176,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1430,1440.000000,176,0,-1.000000,583.150000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,176,0,-1.000000,664.400000,baseline,nbiot,60 +on4,0,0,24,0,0,1429,1440.000000,176,0,-1.000000,583.800000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1425,1440.000000,176,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1410,1440.000000,176,0,-1.000000,596.800000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,133,1440.000000,176,0,7633.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1406,1440.000000,177,0,-1.000000,598.750000,baseline,nbiot,60 +on2,0,0,24,1,0,191,1440.000000,177,0,12436.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,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,240,1440.000000,177,0,16814.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1431,1440.000000,177,0,-1.000000,582.500000,baseline,nbiot,60 +on6,0,0,24,0,0,1422,1440.000000,177,0,-1.000000,588.350000,baseline,nbiot,60 +on9,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,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,177,0,-1.000000,669.600000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,178,0,-1.000000,697.550000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,178,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1421,1440.000000,178,0,-1.000000,592.900000,baseline,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,178,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,300,1440.000000,178,0,20856.000000,602.000000,baseline,nbiot,60 +on9,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 +on3,0,0,24,1,0,124,1440.000000,178,0,9836.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1409,1440.000000,178,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1383,1440.000000,179,0,-1.000000,614.350000,baseline,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,179,0,35382.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1135,1440.000000,179,0,71922.000000,641.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,179,0,-1.000000,707.300000,baseline,nbiot,60 +on11,0,0,24,0,0,1428,1440.000000,179,0,-1.000000,584.450000,baseline,nbiot,60 +on3,0,0,24,0,0,1424,1440.000000,179,0,-1.000000,587.050000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1426,1440.000000,179,0,-1.000000,585.750000,baseline,nbiot,60 +on9,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 +on6,0,0,24,0,0,1429,1440.000000,179,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,1,0,368,1440.000000,180,0,28459.000000,686.500000,baseline,nbiot,60 +on10,0,0,24,1,0,148,1440.000000,180,0,14211.000000,641.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1421,1440.000000,180,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,1,0,482,1440.000000,180,0,31831.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1391,1440.000000,180,0,-1.000000,640.350000,baseline,nbiot,60 +on2,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 +on3,0,0,24,0,0,1410,1440.000000,180,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1421,1440.000000,180,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1412,1440.000000,180,0,-1.000000,594.850000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,180,0,-1.000000,843.800000,baseline,nbiot,60 +on8,0,0,24,1,0,1155,1440.000000,180,0,68573.000000,602.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,181,0,-1.000000,793.750000,baseline,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,181,0,691.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1438,1440.000000,181,0,-1.000000,596.800000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1404,1440.000000,181,0,-1.000000,616.950000,baseline,nbiot,60 +on5,0,0,24,1,0,676,1440.000000,181,0,43012.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1422,1440.000000,181,0,-1.000000,588.350000,baseline,nbiot,60 +on6,0,0,24,0,0,1416,1440.000000,181,0,-1.000000,592.250000,baseline,nbiot,60 +on10,0,0,24,1,0,872,1440.000000,181,0,55367.000000,620.850000,baseline,nbiot,60 +on4,0,0,24,0,0,1420,1440.000000,181,0,-1.000000,589.650000,baseline,nbiot,60 +on7,0,0,24,1,0,60,1440.000000,181,0,5240.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1264,1440.000000,181,0,75839.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1414,1440.000000,182,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1408,1440.000000,182,0,-1.000000,654.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,182,0,-1.000000,724.200000,baseline,nbiot,60 +on6,0,0,24,0,0,1414,1440.000000,182,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1412,1440.000000,182,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1431,1440.000000,182,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1145,1440.000000,182,0,68835.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1420,1440.000000,182,0,-1.000000,589.650000,baseline,nbiot,60 +on9,0,0,24,1,0,314,1440.000000,182,0,19511.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,nbiot,60 +on8,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,648.150000,baseline,nbiot,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1419,1440.000000,183,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,1,0,186,1440.000000,183,0,13776.000000,602.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,420,1440.000000,183,0,26080.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1432,1440.000000,183,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1416,1440.000000,184,0,-1.000000,592.250000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1429,1440.000000,184,0,-1.000000,583.800000,baseline,nbiot,60 +on12,0,0,24,0,0,1422,1440.000000,184,0,-1.000000,588.350000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1421,1440.000000,184,0,-1.000000,625.400000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1430,1440.000000,184,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1414,1440.000000,184,0,-1.000000,593.550000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,184,0,-1.000000,650.750000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,185,0,11659.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,185,0,-1.000000,601.350000,baseline,nbiot,60 +on10,0,0,24,0,0,1411,1440.000000,185,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1426,1440.000000,185,0,-1.000000,585.750000,baseline,nbiot,60 +on12,0,0,24,1,0,1382,1440.000000,185,0,85320.000000,602.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,185,0,-1.000000,711.200000,baseline,nbiot,60 +on1,0,0,24,0,0,1410,1440.000000,185,0,-1.000000,596.150000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1428,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,1,0,60,1440.000000,186,0,5332.000000,602.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,186,0,-1.000000,843.150000,baseline,nbiot,60 +on4,0,0,24,1,0,854,1440.000000,186,0,53831.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1401,1440.000000,186,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1435,1440.000000,186,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1374,1440.000000,186,0,-1.000000,634.500000,baseline,nbiot,60 +on2,0,0,24,0,0,1394,1440.000000,186,0,-1.000000,607.200000,baseline,nbiot,60 +on5,0,0,24,0,0,1405,1440.000000,186,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1421,1440.000000,186,0,-1.000000,612.400000,baseline,nbiot,60 +on3,0,0,24,1,0,243,1440.000000,186,0,16294.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1389,1440.000000,186,0,-1.000000,641.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1421,1440.000000,186,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,13,1440.000000,187,0,1180.000000,602.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,187,0,-1.000000,732.000000,baseline,nbiot,60 +on11,0,0,24,1,0,782,1440.000000,187,0,49269.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1426,1440.000000,187,0,-1.000000,585.750000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1322,1440.000000,187,0,80853.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,883,1440.000000,187,0,56291.000000,618.250000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,259,1440.000000,187,0,17699.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1423,1440.000000,188,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,480,1440.000000,188,0,30200.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,188,0,8265.000000,602.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,188,0,-1.000000,795.050000,baseline,nbiot,60 +on3,0,0,24,1,0,1380,1440.000000,188,0,84087.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,188,0,25412.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1409,1440.000000,188,0,-1.000000,596.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,188,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,209,1440.000000,188,0,16535.000000,627.350000,baseline,nbiot,60 +on10,0,0,24,0,0,1428,1440.000000,188,0,-1.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,189,0,31778.000000,602.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,189,0,-1.000000,728.750000,baseline,nbiot,60 +on7,0,0,24,0,0,1409,1440.000000,189,0,-1.000000,596.800000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1382,1440.000000,189,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1410,1440.000000,189,0,-1.000000,628.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1410,1440.000000,189,0,-1.000000,606.550000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on2,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 +on10,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1147,1440.000000,189,0,69365.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,190,0,-1.000000,667.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1383,1440.000000,190,0,-1.000000,633.850000,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,1422,1440.000000,190,0,-1.000000,615.000000,baseline,nbiot,60 +on7,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 +on9,0,0,24,0,0,1439,1440.000000,190,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,190,0,18693.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1421,1440.000000,190,0,-1.000000,589.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,191,0,-1.000000,675.450000,baseline,nbiot,60 +on3,0,0,24,1,0,364,1440.000000,191,0,23625.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,191,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,191,0,11700.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1439,1440.000000,191,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,780,1440.000000,191,0,47564.000000,602.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,73,1440.000000,192,0,3773.000000,602.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1404,1440.000000,192,0,-1.000000,654.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,192,0,-1.000000,652.700000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.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,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,316,1440.000000,192,0,19066.000000,602.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1416,1440.000000,193,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,193,0,13046.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,17,1440.000000,193,0,1851.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,1,0,720,1440.000000,193,0,46270.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,601,1440.000000,193,0,37186.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1425,1440.000000,193,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,1,0,309,1440.000000,193,0,19216.000000,602.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,193,0,-1.000000,732.650000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1435,1440.000000,194,0,-1.000000,579.900000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,194,0,-1.000000,693.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1345,1440.000000,194,0,-1.000000,654.650000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1377,1440.000000,194,0,-1.000000,674.800000,baseline,nbiot,60 +on11,0,0,24,0,0,1431,1440.000000,194,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1417,1440.000000,195,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1420,1440.000000,195,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1130,1440.000000,195,0,70455.000000,609.150000,baseline,nbiot,60 +on10,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,890,1440.000000,195,0,55219.000000,609.150000,baseline,nbiot,60 +on4,0,0,24,1,0,1366,1440.000000,195,0,84744.000000,641.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,195,0,-1.000000,767.750000,baseline,nbiot,60 +on3,0,0,24,0,0,1435,1440.000000,195,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,819,1440.000000,195,0,51653.000000,641.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1394,1440.000000,196,0,-1.000000,634.500000,baseline,nbiot,60 +on4,0,0,24,0,0,1436,1440.000000,196,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on1,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,748.900000,baseline,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,196,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,1,0,191,1440.000000,196,0,12481.000000,602.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1408,1440.000000,196,0,-1.000000,597.450000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1410,1440.000000,196,0,-1.000000,596.150000,baseline,nbiot,60 +on5,0,0,24,0,0,1420,1440.000000,196,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1385,1440.000000,196,0,-1.000000,628.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,197,0,-1.000000,716.400000,baseline,nbiot,60 +on6,0,0,24,0,0,1410,1440.000000,197,0,-1.000000,596.150000,baseline,nbiot,60 +on9,0,0,24,1,0,1082,1440.000000,197,0,68005.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1367,1440.000000,197,0,-1.000000,638.400000,baseline,nbiot,60 +on1,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 +on10,0,0,24,0,0,1439,1440.000000,197,0,-1.000000,577.300000,baseline,nbiot,60 +on2,0,0,24,0,0,1391,1440.000000,197,0,-1.000000,650.750000,baseline,nbiot,60 +on7,0,0,24,0,0,1424,1440.000000,197,0,-1.000000,587.050000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1429,1440.000000,198,0,-1.000000,616.950000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.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,0,0,1409,1440.000000,198,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1421,1440.000000,198,0,-1.000000,590.300000,baseline,nbiot,60 +on11,0,0,24,0,0,1425,1440.000000,198,0,-1.000000,586.400000,baseline,nbiot,60 +on10,0,0,24,1,0,1098,1440.000000,198,0,68096.000000,602.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,198,0,-1.000000,660.500000,baseline,nbiot,60 +on4,0,0,24,0,0,1432,1440.000000,198,0,-1.000000,581.850000,baseline,nbiot,60 +on5,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 +on0,1,2,24,0,0,0,1440.000000,199,0,-1.000000,809.350000,baseline,nbiot,60 +on9,0,0,24,0,0,1410,1440.000000,199,0,-1.000000,608.500000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,65,1440.000000,199,0,3831.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1407,1440.000000,199,0,-1.000000,605.250000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1366,1440.000000,199,0,-1.000000,646.850000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1400,1440.000000,199,0,-1.000000,661.800000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1350,1440.000000,199,0,-1.000000,636.450000,baseline,nbiot,60 +on4,0,0,24,1,0,123,1440.000000,199,0,10304.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.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,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,200,0,-1.000000,692.350000,baseline,nbiot,60 +on7,0,0,24,1,0,1357,1440.000000,200,0,83932.000000,641.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1141,1440.000000,200,0,69139.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,200,0,18280.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1407,1440.000000,200,0,-1.000000,598.750000,baseline,nbiot,60 +on3,0,0,24,1,0,816,1440.000000,1,0,52583.000320,655.560208,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,1,0,-1.000000,811.171664,hint,nbiot,60 +on8,0,0,24,1,0,258,1440.000000,1,0,17694.000320,602.000208,hint,nbiot,60 +on2,0,0,24,0,0,1413,1440.000000,1,0,-1.000000,594.200000,hint,nbiot,60 +on1,0,0,26,1,0,1136,1560.000000,1,3,74466.000320,726.700000,hint,nbiot,60 +on9,0,0,24,1,0,600,1440.000000,1,0,37476.000320,602.000416,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,1153,1440.000000,1,0,71453.000320,602.000208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,26,1,0,967,1560.000000,1,2,58745.000320,708.955208,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1435,1440.000000,2,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,2,0,-1.000000,667.000624,hint,nbiot,60 +on1,0,0,24,1,0,600,1440.000000,2,0,38607.000320,602.000208,hint,nbiot,60 +on10,0,0,24,1,0,12,1440.000000,2,0,3115.000320,602.000208,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1427,1440.000000,2,0,-1.000000,585.100000,hint,nbiot,60 +on2,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,2,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,255,1440.000000,2,0,17907.000320,602.000208,hint,nbiot,60 +on4,0,0,24,0,0,1430,1440.000000,3,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1417,1440.000000,3,0,-1.000000,591.600000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,3,0,-1.000000,676.750832,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,1140,1440.000000,3,0,70133.000320,602.000208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,1260,1500.000000,3,1,75762.600640,626.195624,hint,nbiot,60 +on1,0,0,24,0,0,1435,1440.000000,3,0,-1.000000,579.900000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1407,1440.000000,3,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,258,1500.000000,4,1,19193.000320,684.760624,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,435,1440.000000,4,0,28510.000320,602.000208,hint,nbiot,60 +on5,0,0,24,1,0,1391,1440.000000,4,0,84027.000000,602.000000,hint,nbiot,60 +on11,0,0,25,0,0,1407,1500.000000,4,1,-1.000000,646.800000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,4,0,-1.000000,820.662080,hint,nbiot,60 +on4,0,0,25,1,0,390,1500.000000,4,1,24311.000320,626.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1422,1440.000000,4,0,-1.000000,588.350000,hint,nbiot,60 +on7,0,0,24,1,0,1176,1440.000000,4,0,72978.000320,618.250208,hint,nbiot,60 +on2,0,0,25,1,0,1227,1500.000000,4,2,76110.000320,647.450000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,1260,1500.000000,4,2,79368.000320,702.700000,hint,nbiot,60 +on12,0,0,26,1,0,465,1560.000000,5,2,26578.000320,711.749168,hint,nbiot,60 +on8,0,0,28,1,0,655,1680.000000,5,5,36320.000320,722.959584,hint,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,5,0,10062.000320,652.310208,hint,nbiot,60 +on6,0,0,26,1,0,803,1560.000000,5,2,50002.000320,700.049168,hint,nbiot,60 +on11,0,0,24,1,0,255,1440.000000,5,0,16969.000320,604.600000,hint,nbiot,60 +on9,0,0,28,1,0,618,1680.000000,5,4,34523.000320,724.845000,hint,nbiot,60 +on5,0,0,28,1,0,382,1680.000000,5,4,21787.000320,804.859168,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,29,1,0,520,1740.000000,5,5,31025.000320,798.958960,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,26,1,0,267,1560.000000,5,2,19831.000320,738.789792,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,5,0,-1.000000,922.841872,hint,nbiot,60 +on10,0,0,25,1,0,161,1500.000000,5,1,12477.000320,684.434584,hint,nbiot,60 +on2,0,0,26,1,0,665,1560.000000,6,3,40104.000320,702.000000,hint,nbiot,60 +on3,0,0,25,1,0,420,1500.000000,6,1,27734.600640,676.895416,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1435,1440.000000,6,0,-1.000000,579.900000,hint,nbiot,60 +on6,0,0,26,1,0,605,1560.000000,6,2,33034.000320,662.804792,hint,nbiot,60 +on9,0,0,26,1,0,656,1560.000000,6,3,37955.000320,663.845000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,529,1500.000000,6,1,31548.000320,638.804792,hint,nbiot,60 +on8,0,0,24,0,0,1430,1440.000000,6,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1407,1440.000000,6,0,-1.000000,598.100000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,6,0,-1.000000,778.411664,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1413,1440.000000,6,0,-1.000000,594.200000,hint,nbiot,60 +on5,0,0,24,1,0,1353,1440.000000,7,0,83226.000000,680.000000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,7,0,-1.000000,793.752496,hint,nbiot,60 +on9,0,0,26,1,0,572,1560.000000,7,3,34469.000320,663.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,7,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 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,252,1440.000000,7,0,14483.000320,602.000208,hint,nbiot,60 +on11,0,0,25,1,0,398,1500.000000,7,1,27872.000320,662.660000,hint,nbiot,60 +on7,0,0,24,0,0,1425,1440.000000,7,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,26,1,0,596,1560.000000,7,3,37003.000320,663.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,300,1500.000000,7,1,18546.600640,673.516040,hint,nbiot,60 +on10,0,0,25,1,0,458,1500.000000,7,1,31574.000320,643.810208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1405,1440.000000,8,0,-1.000000,599.400000,hint,nbiot,60 +on8,0,0,25,1,0,798,1500.000000,8,1,51015.000320,683.460416,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,8,0,-1.000000,792.061040,hint,nbiot,60 +on9,0,0,24,0,0,1402,1443.000000,8,1,-1.000000,592.150000,hint,nbiot,60 +on7,0,0,25,1,0,1358,1500.000000,8,1,83606.000000,626.845000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,878,1500.000000,8,1,56076.000320,626.000208,hint,nbiot,60 +on12,0,0,24,0,0,1383,1440.000000,8,0,-1.000000,639.700000,hint,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,8,0,34011.000320,602.000416,hint,nbiot,60 +on6,0,0,24,0,0,1416,1440.000000,8,0,-1.000000,592.250000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,29,1,0,676,1740.000000,9,6,41051.000320,811.569584,hint,nbiot,60 +on7,0,0,24,0,0,1403,1440.000000,9,0,-1.000000,600.700000,hint,nbiot,60 +on12,0,0,27,1,0,436,1620.000000,9,3,25905.000320,711.764376,hint,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,9,0,13167.000320,613.959792,hint,nbiot,60 +on4,0,0,28,1,0,587,1680.000000,9,4,35033.000320,772.033960,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,26,1,0,329,1560.000000,9,2,23258.000320,740.869792,hint,nbiot,60 +on9,0,0,26,1,0,295,1560.000000,9,3,18317.000320,683.214168,hint,nbiot,60 +on5,0,0,25,1,0,199,1500.000000,9,1,14635.000320,688.920000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,9,0,-1.000000,865.641664,hint,nbiot,60 +on6,0,0,25,1,0,472,1500.000000,9,1,29047.000320,638.350000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,459,1500.000000,10,1,28150.000320,626.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,10,0,-1.000000,760.211456,hint,nbiot,60 +on8,0,0,25,1,0,1033,1500.000000,10,1,65300.000320,660.450000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1391,1440.000000,10,0,-1.000000,609.150000,hint,nbiot,60 +on4,0,0,25,1,0,281,1500.000000,10,2,20429.000320,663.050208,hint,nbiot,60 +on1,0,0,24,1,0,363,1440.000000,10,0,21945.000320,639.310208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,248,1440.000000,10,0,16509.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,1108,1500.000000,11,2,71605.000320,646.800000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,11,0,-1.000000,732.001040,hint,nbiot,60 +on4,0,0,24,1,0,65,1440.000000,11,0,4752.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,661,1440.000000,11,0,41751.000320,602.000208,hint,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,11,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1418,1440.000000,11,0,-1.000000,590.950000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,1058,1440.000000,11,0,65471.000320,616.950208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,900,1500.000000,12,1,56206.600640,664.545832,hint,nbiot,60 +on2,0,0,29,1,0,686,1740.000000,12,8,41424.000320,804.744168,hint,nbiot,60 +on10,0,0,24,1,0,554,1440.000000,12,0,33350.000320,602.000208,hint,nbiot,60 +on9,0,0,25,1,0,652,1500.000000,12,1,38232.000320,626.000416,hint,nbiot,60 +on1,0,0,27,1,0,414,1620.000000,12,3,25404.000320,766.104584,hint,nbiot,60 +on7,0,0,24,0,0,1392,1440.000000,12,0,-1.000000,608.500000,hint,nbiot,60 +on4,0,0,24,0,0,1423,1440.000000,12,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,25,1,0,226,1500.000000,12,1,15378.000320,634.060416,hint,nbiot,60 +on6,0,0,25,1,0,1041,1500.000000,12,1,61353.000320,651.999792,hint,nbiot,60 +on11,0,0,24,0,0,1413,1440.000000,12,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,28,1,0,423,1680.000000,12,5,24900.000320,753.444792,hint,nbiot,60 +on8,0,0,28,1,0,564,1680.000000,12,5,31564.000320,746.944584,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,12,0,-1.000000,940.134160,hint,nbiot,60 +on11,0,0,27,1,0,219,1620.000000,13,3,11030.000320,755.769168,hint,nbiot,60 +on2,0,0,28,1,0,434,1680.000000,13,5,23408.000320,788.153960,hint,nbiot,60 +on5,0,0,26,1,0,512,1560.000000,13,3,28990.000320,663.000416,hint,nbiot,60 +on3,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,26,1,0,476,1560.000000,13,3,28403.000320,663.000000,hint,nbiot,60 +on7,0,0,25,1,0,78,1500.000000,13,1,6266.000320,638.805000,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,13,0,-1.000000,870.193536,hint,nbiot,60 +on4,0,0,24,0,0,1430,1440.000000,13,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,27,1,0,285,1620.000000,13,3,14795.000320,728.535208,hint,nbiot,60 +on12,0,0,26,1,0,151,1560.000000,13,2,9891.000320,681.395000,hint,nbiot,60 +on8,0,0,26,1,0,334,1560.000000,13,2,21099.000320,663.000208,hint,nbiot,60 +on6,0,0,25,1,0,1358,1500.000000,13,1,84863.000000,626.000000,hint,nbiot,60 +on5,0,0,27,1,0,924,1620.000000,14,4,59282.600640,736.595000,hint,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,14,0,44176.000320,602.000208,hint,nbiot,60 +on2,0,0,24,1,0,130,1440.000000,14,0,9468.000320,602.000416,hint,nbiot,60 +on3,0,0,24,1,0,917,1440.000000,14,0,54710.000320,603.299792,hint,nbiot,60 +on6,0,0,24,1,0,1393,1440.000000,14,0,83507.000000,602.000000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,14,0,-1.000000,801.813328,hint,nbiot,60 +on11,0,0,24,0,0,1433,1440.000000,14,0,-1.000000,581.200000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,17,1440.000000,14,0,1245.000320,602.000208,hint,nbiot,60 +on10,0,0,24,1,0,198,1440.000000,14,0,12275.000320,640.350832,hint,nbiot,60 +on9,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 +on4,0,0,25,1,0,73,1500.000000,14,2,5802.000320,680.600208,hint,nbiot,60 +on8,0,0,24,1,0,910,1440.000000,15,0,57019.000320,602.000416,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,15,0,-1.000000,772.820832,hint,nbiot,60 +on9,0,0,24,0,0,1430,1440.000000,15,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,25,1,0,139,1500.000000,15,1,12634.000320,648.750208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.650000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1405,1440.000000,15,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1433,1440.000000,15,0,-1.000000,581.200000,hint,nbiot,60 +on5,0,0,25,1,0,730,1500.000000,15,1,48226.000320,659.605208,hint,nbiot,60 +on10,0,0,24,0,0,1404,1440.000000,15,0,-1.000000,600.050000,hint,nbiot,60 +on1,0,0,24,0,0,1437,1440.000000,15,0,-1.000000,578.600000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,16,0,-1.000000,602.000000,hint,nbiot,60 +on9,0,0,24,0,0,1426,1440.000000,16,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,16,0,-1.000000,637.750208,hint,nbiot,60 +on6,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 +on8,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 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,nbiot,60 +on4,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 +on2,0,0,24,1,0,60,1440.000000,16,0,5369.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,17,0,-1.000000,729.010624,hint,nbiot,60 +on5,0,0,24,1,0,1336,1440.000000,17,0,82286.000320,602.000208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1435,1440.000000,17,0,-1.000000,579.900000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,17,0,-1.000000,596.150000,hint,nbiot,60 +on3,0,0,25,1,0,869,1500.000000,17,1,54683.000320,638.610208,hint,nbiot,60 +on6,0,0,24,0,0,1407,1440.000000,17,0,-1.000000,598.750000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1413,1440.000000,17,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,25,1,0,977,1500.000000,17,1,61098.000320,626.000208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,26,1,0,1312,1560.000000,18,3,80484.000320,667.550000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1423,1440.000000,18,0,-1.000000,618.900000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,18,0,-1.000000,743.311456,hint,nbiot,60 +on1,0,0,24,0,0,1426,1440.000000,18,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,1,0,615,1440.000000,18,0,39193.000320,602.000416,hint,nbiot,60 +on12,0,0,24,0,0,1424,1440.000000,18,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,1,0,1268,1440.000000,18,0,76521.000320,602.000208,hint,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,18,0,12405.000320,602.000208,hint,nbiot,60 +on8,0,0,24,1,0,486,1440.000000,18,0,29459.000320,602.000208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,255,1440.000000,19,0,16458.000320,602.000208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,19,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,19,0,-1.000000,650.750416,hint,nbiot,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1437,1440.000000,19,0,-1.000000,578.600000,hint,nbiot,60 +on8,0,0,24,1,0,420,1440.000000,19,0,26978.000320,602.000208,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1436,1440.000000,20,0,-1.000000,579.250000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,616,1500.000000,20,1,41468.000320,689.050208,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,20,0,-1.000000,733.561456,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,1080,1500.000000,20,1,64377.000320,626.000208,hint,nbiot,60 +on8,0,0,24,0,0,1413,1440.000000,20,0,-1.000000,594.200000,hint,nbiot,60 +on1,0,0,24,1,0,74,1440.000000,20,0,5884.000320,602.000208,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,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,900,1500.000000,20,1,55627.600640,663.505832,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1429,1440.000000,20,0,-1.000000,583.800000,hint,nbiot,60 +on1,0,0,24,0,0,1426,1440.000000,21,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,998,1500.000000,21,1,61566.000320,637.959792,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,21,0,-1.000000,766.711040,hint,nbiot,60 +on5,0,0,24,0,0,1426,1440.000000,21,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,1,0,817,1440.000000,21,0,51096.000320,650.750208,hint,nbiot,60 +on12,0,0,24,0,0,1421,1440.000000,21,0,-1.000000,589.000000,hint,nbiot,60 +on7,0,0,25,1,0,1061,1500.000000,21,1,66395.000320,700.164792,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,1119,1500.000000,21,1,70698.000320,664.350208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,960,1500.000000,21,1,59642.600640,639.195208,hint,nbiot,60 +on3,0,0,29,1,0,762,1740.000000,22,7,43613.600640,797.595000,hint,nbiot,60 +on10,0,0,27,1,0,959,1620.000000,22,4,58291.600640,747.645416,hint,nbiot,60 +on11,0,0,25,1,0,720,1500.000000,22,1,41610.000320,626.000208,hint,nbiot,60 +on2,0,0,26,1,0,788,1560.000000,22,3,53677.000320,785.264376,hint,nbiot,60 +on6,0,0,25,1,0,60,1500.000000,22,1,6100.600640,626.195832,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,569,1500.000000,22,1,36273.000320,675.465000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,22,0,-1.000000,903.734576,hint,nbiot,60 +on9,0,0,24,0,0,1431,1440.000000,22,0,-1.000000,582.500000,hint,nbiot,60 +on5,0,0,24,0,0,1426,1440.000000,22,0,-1.000000,585.750000,hint,nbiot,60 +on12,0,0,25,1,0,500,1500.000000,22,1,34094.000320,682.355208,hint,nbiot,60 +on4,0,0,24,0,0,1419,1440.000000,22,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,26,1,0,901,1560.000000,22,2,57399.000320,700.309792,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,838,1500.000000,23,1,49865.000320,626.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.650000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,23,0,43601.000320,639.310208,hint,nbiot,60 +on7,0,0,25,1,0,281,1500.000000,23,1,17011.000320,663.700416,hint,nbiot,60 +on4,0,0,24,0,0,1428,1440.000000,23,0,-1.000000,584.450000,hint,nbiot,60 +on3,0,0,25,0,0,1462,1500.000000,23,1,-1.000000,613.000000,hint,nbiot,60 +on9,0,0,25,1,0,1433,1500.000000,23,1,85304.000000,626.845000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,23,0,-1.000000,776.461248,hint,nbiot,60 +on1,0,0,24,1,0,139,1440.000000,23,0,10478.000320,602.000208,hint,nbiot,60 +on12,0,0,25,1,0,192,1500.000000,23,1,13749.000320,668.510208,hint,nbiot,60 +on2,0,0,24,0,0,1414,1440.000000,23,0,-1.000000,593.550000,hint,nbiot,60 +on3,0,0,24,0,0,1414,1440.000000,24,0,-1.000000,593.550000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,24,0,-1.000000,661.800832,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1424,1440.000000,24,0,-1.000000,587.050000,hint,nbiot,60 +on5,0,0,24,0,0,1427,1440.000000,24,0,-1.000000,615.650000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1415,1440.000000,24,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1439,1440.000000,24,0,-1.000000,577.300000,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,545,1500.000000,24,1,35648.600640,626.195832,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1436,1440.000000,24,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,25,0,17130.000320,602.000416,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1432,1440.000000,25,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,25,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1427,1440.000000,25,0,-1.000000,585.100000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,25,0,-1.000000,675.451456,hint,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,25,0,1073.000320,602.000624,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,902,1440.000000,25,0,57487.000320,602.000416,hint,nbiot,60 +on2,0,0,24,0,0,1439,1440.000000,25,0,-1.000000,577.300000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,26,1,0,76,1560.000000,26,2,7386.600640,712.205624,hint,nbiot,60 +on1,0,0,27,1,0,434,1620.000000,26,5,28054.000320,700.845000,hint,nbiot,60 +on9,0,0,26,1,0,210,1560.000000,26,2,16790.000320,684.060416,hint,nbiot,60 +on6,0,0,25,1,0,408,1500.000000,26,1,23710.000320,626.650208,hint,nbiot,60 +on12,0,0,24,0,0,1437,1440.000000,26,0,-1.000000,578.600000,hint,nbiot,60 +on7,0,0,24,0,0,1435,1440.000000,26,0,-1.000000,579.900000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,26,0,-1.000000,798.562912,hint,nbiot,60 +on4,0,0,24,1,0,1385,1440.000000,26,0,84817.000000,602.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1200,1440.000000,26,0,74916.000320,602.000208,hint,nbiot,60 +on5,0,0,24,0,0,1427,1440.000000,26,0,-1.000000,585.100000,hint,nbiot,60 +on3,0,0,25,1,0,259,1500.000000,26,2,18556.000320,652.650000,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,27,0,-1.000000,976.661872,hint,nbiot,60 +on2,0,0,28,1,0,721,1680.000000,27,4,46210.000320,829.559168,hint,nbiot,60 +on11,0,0,24,0,0,1409,1440.000000,27,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,26,1,0,620,1560.000000,27,2,37258.000320,674.309584,hint,nbiot,60 +on3,0,0,25,1,0,526,1500.000000,27,1,35237.000320,662.204792,hint,nbiot,60 +on1,0,0,24,1,0,72,1440.000000,27,0,6418.000320,602.000416,hint,nbiot,60 +on8,0,0,24,1,0,1028,1440.000000,27,0,64117.000320,609.800000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,945,1500.000000,27,1,55963.000320,637.960000,hint,nbiot,60 +on10,0,0,31,1,0,994,1860.000000,27,8,58245.000320,941.273544,hint,nbiot,60 +on12,0,0,27,1,0,890,1620.000000,27,3,52349.000320,711.569376,hint,nbiot,60 +on4,0,0,26,1,0,679,1560.000000,27,2,40089.000320,674.309376,hint,nbiot,60 +on6,0,0,25,1,0,812,1500.000000,27,1,50337.000320,637.960000,hint,nbiot,60 +on4,0,0,24,1,0,70,1440.000000,28,0,5993.000320,602.000208,hint,nbiot,60 +on11,0,0,24,0,0,1432,1440.000000,28,0,-1.000000,581.850000,hint,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,28,0,-1.000000,592.900000,hint,nbiot,60 +on10,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 +on6,0,0,24,1,0,1257,1440.000000,28,0,75688.000320,678.310208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,28,0,-1.000000,762.551040,hint,nbiot,60 +on2,0,0,24,1,0,689,1440.000000,28,0,44169.000320,641.000416,hint,nbiot,60 +on7,0,0,24,0,0,1411,1440.000000,28,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,25,1,0,1379,1500.000000,28,1,82343.000320,626.000208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1431,1440.000000,28,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,26,1,0,1233,1560.000000,29,2,72993.000320,663.000000,hint,nbiot,60 +on2,0,0,24,1,0,360,1481.000000,29,1,24460.600640,703.615416,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,1090,1500.000000,29,1,66657.000320,693.470208,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,29,0,-1.000000,897.883120,hint,nbiot,60 +on9,0,0,25,1,0,1158,1515.000000,29,3,71595.000320,666.709584,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,490,1440.000000,29,0,31149.000320,607.460000,hint,nbiot,60 +on4,0,0,24,1,0,1320,1440.000000,29,0,81196.000320,602.000208,hint,nbiot,60 +on8,0,0,27,1,0,1294,1620.000000,29,4,77474.000320,755.054584,hint,nbiot,60 +on3,0,0,27,1,0,651,1620.000000,29,4,36053.000320,707.929792,hint,nbiot,60 +on1,0,0,24,1,0,840,1440.000000,29,0,53124.000320,602.000208,hint,nbiot,60 +on11,0,0,25,1,0,516,1559.000000,29,2,33332.000320,684.050000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,30,0,-1.000000,590.300000,hint,nbiot,60 +on11,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 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,30,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 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1419,1440.000000,30,0,-1.000000,590.300000,hint,nbiot,60 +on6,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,31,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,31,0,11816.000320,602.000208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,31,0,-1.000000,648.150208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1397,1440.000000,31,0,-1.000000,633.200000,hint,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,31,0,-1.000000,592.900000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,1170,1560.000000,32,3,70211.000320,663.000000,hint,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,32,0,-1.000000,586.400000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,1026,1440.000000,32,0,62231.000320,639.310208,hint,nbiot,60 +on9,0,0,24,1,0,1082,1440.000000,32,0,66156.000320,602.000208,hint,nbiot,60 +on7,0,0,24,0,0,1388,1440.000000,32,0,-1.000000,641.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1403,1440.000000,32,0,-1.000000,600.700000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,32,0,-1.000000,769.051040,hint,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,32,0,37196.000320,602.000208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1412,1440.000000,32,0,-1.000000,594.850000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,1194,1440.000000,33,0,72330.000320,616.300208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,298,1500.000000,33,1,17140.000320,626.000208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,611,1440.000000,33,0,36724.000320,602.000208,hint,nbiot,60 +on1,0,0,24,1,0,1320,1440.000000,33,0,81614.000320,602.000208,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,33,0,-1.000000,737.201040,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1415,1440.000000,33,0,-1.000000,592.900000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,196,1440.000000,33,0,13082.000320,639.310208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1406,1440.000000,34,0,-1.000000,599.400000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,1227,1500.000000,34,1,72721.000320,665.000208,hint,nbiot,60 +on12,0,0,24,0,0,1414,1440.000000,34,0,-1.000000,593.550000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,476,1560.000000,34,3,28868.000320,685.750000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,375,1500.000000,34,1,26254.000320,688.855416,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,34,0,-1.000000,730.311040,hint,nbiot,60 +on3,0,0,25,1,0,780,1500.000000,35,1,50102.600640,659.605832,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,35,0,-1.000000,847.312912,hint,nbiot,60 +on5,0,0,24,1,0,1343,1440.000000,35,0,83050.000000,626.700000,hint,nbiot,60 +on4,0,0,26,1,0,694,1560.000000,35,3,40521.000320,700.310000,hint,nbiot,60 +on12,0,0,25,1,0,517,1500.000000,35,1,33537.000320,705.820416,hint,nbiot,60 +on2,0,0,24,1,0,255,1440.000000,35,0,15202.000320,639.310208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,590,1500.000000,35,1,38842.000320,664.350416,hint,nbiot,60 +on7,0,0,25,1,0,844,1500.000000,35,1,53694.000320,674.230000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1424,1440.000000,35,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,25,1,0,340,1500.000000,35,1,21232.000320,626.000208,hint,nbiot,60 +on11,0,0,25,1,0,708,1500.000000,35,1,44746.000320,639.000000,hint,nbiot,60 +on6,0,0,24,0,0,1411,1440.000000,36,0,-1.000000,595.500000,hint,nbiot,60 +on4,0,0,25,1,0,720,1500.000000,36,1,44463.600640,626.195624,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,36,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,36,0,-1.000000,699.501456,hint,nbiot,60 +on2,0,0,25,1,0,0,1500.000000,36,1,2731.600640,626.195624,hint,nbiot,60 +on5,0,0,24,0,0,1428,1440.000000,36,0,-1.000000,584.450000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,786,1440.000000,36,0,48215.000320,611.100000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,1022,1440.000000,37,0,64760.000320,602.000416,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,37,0,-1.000000,844.063536,hint,nbiot,60 +on5,0,0,24,0,0,1427,1440.000000,37,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1410,1440.000000,37,0,-1.000000,635.150000,hint,nbiot,60 +on10,0,0,24,1,0,369,1440.000000,37,0,24195.000320,609.150208,hint,nbiot,60 +on6,0,0,25,1,0,649,1500.000000,37,1,37918.000320,626.000208,hint,nbiot,60 +on11,0,0,25,1,0,1115,1500.000000,37,1,71684.000320,672.150000,hint,nbiot,60 +on9,0,0,25,1,0,458,1500.000000,37,1,29818.000320,700.620208,hint,nbiot,60 +on12,0,0,28,1,0,792,1680.000000,37,7,45140.000320,777.949792,hint,nbiot,60 +on2,0,0,24,1,0,1,1440.000000,37,0,2285.000320,602.000208,hint,nbiot,60 +on7,0,0,25,1,0,574,1500.000000,37,1,35654.000320,686.060416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,678,1500.000000,37,1,43046.000320,653.300416,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1394,1440.000000,38,0,-1.000000,607.200000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,38,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,38,0,-1.000000,612.400000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on9,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,39,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,39,0,-1.000000,725.501040,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,199,1440.000000,39,0,11644.000320,602.000208,hint,nbiot,60 +on10,0,0,24,0,0,1379,1440.000000,39,0,-1.000000,630.600000,hint,nbiot,60 +on5,0,0,24,0,0,1404,1440.000000,39,0,-1.000000,600.050000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,615.000000,hint,nbiot,60 +on9,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 +on11,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,437,1440.000000,39,0,27144.000320,602.000624,hint,nbiot,60 +on8,0,0,24,1,0,838,1440.000000,39,0,51929.000320,641.000208,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,496,1500.000000,40,1,31718.000320,628.600416,hint,nbiot,60 +on11,0,0,24,1,0,780,1440.000000,40,0,48049.000320,631.900000,hint,nbiot,60 +on10,0,0,25,1,0,496,1527.000000,40,3,32920.000320,675.540000,hint,nbiot,60 +on1,0,0,26,1,0,356,1560.000000,40,3,22953.000320,695.500208,hint,nbiot,60 +on2,0,0,27,1,0,258,1620.000000,40,4,15744.000320,734.188544,hint,nbiot,60 +on4,0,0,25,1,0,567,1500.000000,40,1,37497.000320,634.450208,hint,nbiot,60 +on6,0,0,24,1,0,966,1440.000000,40,0,59153.000320,611.100000,hint,nbiot,60 +on9,0,0,26,1,0,299,1560.000000,40,2,18250.000320,699.269792,hint,nbiot,60 +on5,0,0,24,1,0,134,1440.000000,40,0,7818.000320,604.859792,hint,nbiot,60 +on0,1,12,24,0,0,0,1440.000000,40,0,-1.000000,938.442704,hint,nbiot,60 +on12,0,0,27,1,0,161,1620.000000,40,3,11150.000640,749.009376,hint,nbiot,60 +on8,0,0,26,1,0,407,1560.000000,40,3,27657.000320,731.120000,hint,nbiot,60 +on7,0,0,24,1,0,71,1440.000000,40,0,3843.000320,606.809792,hint,nbiot,60 +on3,0,0,25,1,0,699,1500.000000,41,1,42069.000320,626.000208,hint,nbiot,60 +on8,0,0,27,1,0,591,1620.000000,41,4,38589.000320,784.759792,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,180,1500.000000,41,1,11888.600640,663.505624,hint,nbiot,60 +on12,0,0,26,1,0,554,1560.000000,41,2,32457.000320,662.805000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,26,1,0,476,1560.000000,41,3,29225.000320,674.959792,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,41,0,-1.000000,853.813120,hint,nbiot,60 +on6,0,0,24,1,0,1213,1440.000000,41,0,78127.000320,646.200208,hint,nbiot,60 +on4,0,0,25,1,0,398,1500.000000,41,1,25601.000320,664.545208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,344,1500.000000,41,1,20751.000320,630.550208,hint,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,41,0,69979.000320,602.000208,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 +on2,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1428,1440.000000,42,0,-1.000000,584.450000,hint,nbiot,60 +on8,0,0,24,1,0,1381,1440.000000,42,0,83582.000000,641.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,42,0,-1.000000,703.011248,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,375,1500.000000,42,1,24693.000320,627.950416,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,900,1500.000000,42,1,56769.600640,626.195624,hint,nbiot,60 +on7,0,0,24,1,0,1159,1440.000000,42,0,70834.000320,602.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1436,1440.000000,42,0,-1.000000,579.250000,hint,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,43,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,43,0,12527.000320,602.000208,hint,nbiot,60 +on11,0,0,24,1,0,1030,1440.000000,43,0,63886.000320,602.000208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1427,1440.000000,43,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,43,0,-1.000000,735.900624,hint,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,43,0,85744.000000,602.000000,hint,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,43,0,66480.000320,602.000208,hint,nbiot,60 +on4,0,0,24,0,0,1404,1440.000000,43,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,1170,1440.000000,44,0,74517.000320,654.650208,hint,nbiot,60 +on7,0,0,24,1,0,975,1440.000000,44,0,60201.000320,602.000208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1429,1440.000000,44,0,-1.000000,584.450000,hint,nbiot,60 +on9,0,0,24,1,0,1362,1440.000000,44,0,84791.000000,625.400000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,44,0,-1.000000,786.210832,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,44,0,-1.000000,621.500000,hint,nbiot,60 +on11,0,0,24,1,0,656,1444.000000,44,1,40157.000320,606.655208,hint,nbiot,60 +on8,0,0,24,1,0,540,1440.000000,44,0,34154.000320,602.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,402,1440.000000,45,0,26885.000320,614.350208,hint,nbiot,60 +on5,0,0,25,1,0,217,1500.000000,45,1,15264.000320,628.600416,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1401,1440.000000,45,0,-1.000000,602.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,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,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,26,0,0,1456,1560.000000,45,2,-1.000000,650.650000,hint,nbiot,60 +on7,0,0,25,0,0,1440,1500.000000,45,1,-1.000000,639.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,45,0,-1.000000,729.920624,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,1358,1500.000000,45,1,85057.000000,626.845000,hint,nbiot,60 +on6,0,0,24,1,0,438,1440.000000,46,0,28238.000320,602.000416,hint,nbiot,60 +on2,0,0,26,1,0,248,1560.000000,46,2,15199.000320,685.165208,hint,nbiot,60 +on1,0,0,25,1,0,278,1500.000000,46,1,18498.000320,663.310208,hint,nbiot,60 +on11,0,0,26,1,0,679,1560.000000,46,3,40019.000320,663.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,46,0,-1.000000,914.132704,hint,nbiot,60 +on9,0,0,24,1,0,1346,1440.000000,46,0,84640.000000,641.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1414,1440.000000,46,0,-1.000000,593.550000,hint,nbiot,60 +on3,0,0,25,1,0,589,1500.000000,46,1,35717.000320,641.859792,hint,nbiot,60 +on5,0,0,25,1,0,118,1500.000000,46,1,7768.000320,682.160208,hint,nbiot,60 +on10,0,0,25,1,0,355,1500.000000,46,1,22266.000320,626.000416,hint,nbiot,60 +on4,0,0,26,1,0,537,1560.000000,46,3,37890.000320,726.050208,hint,nbiot,60 +on12,0,0,24,0,0,1426,1440.000000,47,0,-1.000000,585.750000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,480,1440.000000,47,0,29696.000320,602.000416,hint,nbiot,60 +on10,0,0,25,1,0,818,1500.000000,47,1,49875.000320,626.000208,hint,nbiot,60 +on7,0,0,24,1,0,662,1440.000000,47,0,39837.000320,613.960000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,47,0,-1.000000,794.661664,hint,nbiot,60 +on8,0,0,24,1,0,1380,1440.000000,47,0,85135.000000,602.000000,hint,nbiot,60 +on4,0,0,24,1,0,255,1440.000000,47,0,14641.000320,656.600000,hint,nbiot,60 +on5,0,0,25,1,0,954,1500.000000,47,1,59839.000320,678.000000,hint,nbiot,60 +on9,0,0,25,1,0,692,1500.000000,47,1,45340.000320,659.865000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,172,1500.000000,48,2,13816.000320,668.314584,hint,nbiot,60 +on6,0,0,24,0,0,1404,1440.000000,48,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,48,0,35840.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1439,1440.000000,48,0,-1.000000,577.300000,hint,nbiot,60 +on12,0,0,24,1,0,840,1440.000000,48,0,52897.000320,602.000208,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,48,0,-1.000000,812.211456,hint,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,48,0,85367.000000,602.000000,hint,nbiot,60 +on2,0,0,24,0,0,1422,1440.000000,48,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,25,1,0,120,1500.000000,48,1,8765.600640,639.195208,hint,nbiot,60 +on11,0,0,24,0,0,1395,1440.000000,48,0,-1.000000,636.450000,hint,nbiot,60 +on5,0,0,26,1,0,298,1560.000000,48,2,17948.000320,661.959792,hint,nbiot,60 +on11,0,0,24,0,0,1393,1440.000000,49,0,-1.000000,654.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1409,1440.000000,49,0,-1.000000,596.800000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,49,0,-1.000000,674.150000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1405,1440.000000,49,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1407,1440.000000,49,0,-1.000000,598.100000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,50,0,12494.000320,602.000416,hint,nbiot,60 +on7,0,0,24,0,0,1420,1440.000000,50,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1425,1440.000000,50,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,1,0,1113,1440.000000,50,0,71447.000320,641.000208,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,50,0,-1.000000,713.801040,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,1179,1500.000000,50,2,72377.000320,639.650000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1416,1440.000000,50,0,-1.000000,592.250000,hint,nbiot,60 +on7,0,0,25,0,0,1459,1500.000000,51,1,-1.000000,612.999584,hint,nbiot,60 +on2,0,0,26,1,0,215,1560.000000,51,2,13563.000320,674.699376,hint,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,51,0,-1.000000,596.150000,hint,nbiot,60 +on5,0,0,26,1,0,434,1560.000000,51,2,26722.000320,700.309792,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,27,1,0,302,1620.000000,51,3,14524.000320,696.879792,hint,nbiot,60 +on3,0,0,31,1,0,571,1860.000000,51,8,30653.000320,860.153336,hint,nbiot,60 +on9,0,0,25,1,0,18,1500.000000,51,1,3884.000320,695.810000,hint,nbiot,60 +on8,0,0,27,1,0,349,1620.000000,51,3,22107.000320,752.714584,hint,nbiot,60 +on10,0,0,26,1,0,116,1560.000000,51,4,9323.000320,676.195000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,259,1519.000000,51,2,18202.000320,670.259584,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,51,0,-1.000000,900.481664,hint,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,52,0,-1.000000,603.300000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,26,1,0,296,1560.000000,52,3,17292.000320,663.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,52,0,-1.000000,742.011040,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1381,1440.000000,52,0,-1.000000,615.650000,hint,nbiot,60 +on4,0,0,25,1,0,56,1500.000000,52,1,5891.000320,683.720416,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,212,1500.000000,52,1,12028.000320,639.910208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1402,1440.000000,53,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1420,1440.000000,53,0,-1.000000,589.650000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,53,0,-1.000000,782.311248,hint,nbiot,60 +on4,0,0,25,1,0,1200,1500.000000,53,1,75373.600640,639.845416,hint,nbiot,60 +on3,0,0,24,1,0,1260,1440.000000,53,0,79098.000320,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,53,0,12843.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1435,1440.000000,53,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,1252,1500.000000,53,2,79806.000320,673.450000,hint,nbiot,60 +on10,0,0,24,1,0,737,1440.000000,53,0,44628.000320,602.000208,hint,nbiot,60 +on3,0,0,27,1,0,936,1620.000000,54,4,54679.000320,699.999792,hint,nbiot,60 +on8,0,0,24,1,0,682,1466.000000,54,1,45554.000320,680.259792,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,54,0,-1.000000,883.841872,hint,nbiot,60 +on7,0,0,24,1,0,1276,1440.000000,54,0,77071.000320,602.000208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,674,1440.000000,54,0,39673.000320,602.000416,hint,nbiot,60 +on9,0,0,27,1,0,1059,1620.000000,54,4,63813.000320,709.555000,hint,nbiot,60 +on12,0,0,24,1,0,1279,1440.000000,54,0,82075.000320,657.250208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,27,1,0,840,1620.000000,54,3,51632.000320,752.454584,hint,nbiot,60 +on6,0,0,26,1,0,747,1560.000000,54,2,49450.000320,706.419376,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1438,1440.000000,55,0,-1.000000,577.950000,hint,nbiot,60 +on5,0,0,24,1,0,1254,1440.000000,55,0,76027.000320,608.500208,hint,nbiot,60 +on10,0,0,24,1,0,725,1440.000000,55,0,46492.000320,602.000208,hint,nbiot,60 +on2,0,0,24,0,0,1402,1440.000000,55,0,-1.000000,629.300000,hint,nbiot,60 +on8,0,0,25,1,0,1396,1500.000000,55,1,84482.000000,626.000000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,55,0,-1.000000,766.451456,hint,nbiot,60 +on7,0,0,25,1,0,1318,1500.000000,55,2,80576.000320,637.310000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,251,1440.000000,55,0,16071.000320,602.000416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,18,1440.000000,55,0,1514.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,0,1500.000000,56,1,3465.600640,626.195624,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,56,0,-1.000000,740.452288,hint,nbiot,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,56,0,26076.000320,639.310416,hint,nbiot,60 +on2,0,0,24,0,0,1437,1440.000000,56,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1405,1440.000000,56,0,-1.000000,599.400000,hint,nbiot,60 +on3,0,0,25,1,0,763,1500.000000,56,1,44110.000320,639.000208,hint,nbiot,60 +on12,0,0,24,1,0,674,1440.000000,56,0,41753.000320,639.310208,hint,nbiot,60 +on5,0,0,25,1,0,519,1500.000000,56,1,31397.000320,626.000624,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,1428,1440.000000,56,0,-1.000000,584.450000,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 +on0,1,3,24,0,0,0,1440.000000,57,0,-1.000000,724.461248,hint,nbiot,60 +on3,0,0,24,1,0,868,1440.000000,57,0,56754.000320,628.000208,hint,nbiot,60 +on10,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 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1435,1440.000000,57,0,-1.000000,579.900000,hint,nbiot,60 +on11,0,0,24,0,0,1399,1440.000000,57,0,-1.000000,639.050000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,795,1440.000000,57,0,47083.000320,602.000416,hint,nbiot,60 +on8,0,0,25,1,0,254,1500.000000,57,1,15413.000320,639.000624,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,25,1,0,1114,1500.000000,58,1,66051.000320,665.000208,hint,nbiot,60 +on3,0,0,24,0,0,1429,1440.000000,58,0,-1.000000,583.800000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,58,0,-1.000000,681.560832,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,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1433,1440.000000,58,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,1,0,1037,1440.000000,58,0,62479.000320,602.260416,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,34,1500.000000,58,1,3895.000320,630.550208,hint,nbiot,60 +on11,0,0,24,0,0,1431,1440.000000,58,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,25,1,0,111,1500.000000,59,1,6837.000320,676.960000,hint,nbiot,60 +on6,0,0,26,1,0,181,1560.000000,59,2,8887.000640,666.704376,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,59,0,-1.000000,855.372288,hint,nbiot,60 +on5,0,0,25,1,0,234,1500.000000,59,1,15516.000320,626.000416,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,27,1,0,173,1620.000000,59,4,11116.000320,751.999792,hint,nbiot,60 +on12,0,0,24,1,0,1274,1440.000000,59,0,76527.000320,639.310208,hint,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,59,0,54546.000320,602.000208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,1353,1500.000000,59,1,82401.000320,635.100208,hint,nbiot,60 +on2,0,0,28,1,0,355,1680.000000,59,6,20709.000320,766.249376,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1402,1440.000000,59,0,-1.000000,601.350000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,nbiot,60 +on7,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 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1431,1440.000000,60,0,-1.000000,582.500000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,60,0,-1.000000,611.100000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1405,1440.000000,60,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1434,1440.000000,60,0,-1.000000,580.550000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.650000,hint,nbiot,60 +on10,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 +on10,0,0,24,1,0,431,1440.000000,61,0,27941.000320,602.000208,hint,nbiot,60 +on5,0,0,25,1,0,1157,1500.000000,61,1,69427.000320,663.310208,hint,nbiot,60 +on11,0,0,25,1,0,1246,1500.000000,61,1,74704.000320,626.000416,hint,nbiot,60 +on6,0,0,24,1,0,313,1440.000000,61,0,18643.000320,630.600624,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,61,0,-1.000000,793.103536,hint,nbiot,60 +on8,0,0,25,1,0,0,1500.000000,61,1,187.600640,626.195832,hint,nbiot,60 +on9,0,0,24,0,0,1430,1440.000000,61,0,-1.000000,583.150000,hint,nbiot,60 +on7,0,0,24,0,0,1420,1440.000000,61,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,26,1,0,1009,1560.000000,61,2,63777.600640,652.405624,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1419,1440.000000,61,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,25,1,0,180,1500.000000,61,1,11152.600640,626.195624,hint,nbiot,60 +on10,0,0,24,1,0,433,1440.000000,62,0,26630.000320,605.509792,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,62,0,-1.000000,791.931248,hint,nbiot,60 +on1,0,0,24,1,0,72,1440.000000,62,0,7129.000320,602.000208,hint,nbiot,60 +on5,0,0,26,1,0,479,1560.000000,62,2,32177.000320,713.959584,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,27,1,0,547,1620.000000,62,3,33684.000320,711.764376,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,26,1,0,562,1560.000000,62,3,36111.000320,736.709792,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,687,1500.000000,62,1,41770.000320,626.000416,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,172,1500.000000,63,1,10911.000320,695.680624,hint,nbiot,60 +on4,0,0,24,0,0,1418,1440.000000,63,0,-1.000000,590.950000,hint,nbiot,60 +on5,0,0,24,0,0,1409,1440.000000,63,0,-1.000000,596.800000,hint,nbiot,60 +on6,0,0,27,1,0,419,1620.000000,63,4,27594.000320,732.499792,hint,nbiot,60 +on2,0,0,24,0,0,1418,1440.000000,63,0,-1.000000,590.950000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,26,1,0,77,1560.000000,63,2,8034.000320,735.865208,hint,nbiot,60 +on3,0,0,25,1,0,309,1500.000000,63,1,23240.000320,671.499792,hint,nbiot,60 +on10,0,0,25,1,0,279,1500.000000,63,1,17899.000320,638.350000,hint,nbiot,60 +on12,0,0,28,1,0,535,1696.000000,63,5,29989.000320,774.208544,hint,nbiot,60 +on7,0,0,26,1,0,313,1560.000000,63,2,18707.000320,665.925416,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,63,0,-1.000000,894.632704,hint,nbiot,60 +on8,0,0,26,0,0,1459,1617.000000,63,3,-1.000000,711.799584,hint,nbiot,60 +on2,0,0,25,1,0,471,1500.000000,64,1,28880.600640,632.695624,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,64,0,-1.000000,680.001040,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,9,1440.000000,64,0,1487.000320,602.000416,hint,nbiot,60 +on12,0,0,24,0,0,1404,1440.000000,64,0,-1.000000,654.000000,hint,nbiot,60 +on4,0,0,24,0,0,1409,1440.000000,64,0,-1.000000,596.800000,hint,nbiot,60 +on3,0,0,24,0,0,1425,1440.000000,65,0,-1.000000,586.400000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1431,1440.000000,65,0,-1.000000,582.500000,hint,nbiot,60 +on2,0,0,24,1,0,181,1440.000000,65,0,12902.000320,602.000416,hint,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,65,0,18670.000320,602.000208,hint,nbiot,60 +on11,0,0,25,1,0,1320,1500.000000,65,1,82369.600640,663.505416,hint,nbiot,60 +on12,0,0,25,1,0,1405,1500.000000,65,1,84785.000000,647.580000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,65,0,-1.000000,709.901040,hint,nbiot,60 +on7,0,0,24,0,0,1421,1440.000000,65,0,-1.000000,594.850000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,65,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 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,129,1500.000000,66,1,10406.000320,682.615624,hint,nbiot,60 +on8,0,0,24,0,0,1433,1440.000000,66,0,-1.000000,581.200000,hint,nbiot,60 +on5,0,0,24,0,0,1402,1440.000000,66,0,-1.000000,601.350000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,nbiot,60 +on10,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 +on6,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,66,0,-1.000000,677.660832,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,719,1500.000000,66,1,41824.000320,626.000208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,27,1,0,290,1620.000000,67,3,14659.000320,700.194792,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,67,0,-1.000000,889.171456,hint,nbiot,60 +on9,0,0,27,0,0,1498,1620.000000,67,3,-1.000000,682.644376,hint,nbiot,60 +on10,0,0,31,1,0,491,1860.000000,67,7,27952.000320,869.188752,hint,nbiot,60 +on11,0,0,27,1,0,209,1620.000000,67,3,11597.000320,732.370208,hint,nbiot,60 +on2,0,0,24,1,0,61,1440.000000,67,0,6324.000320,648.020208,hint,nbiot,60 +on7,0,0,27,1,0,381,1620.000000,67,3,23935.000320,705.914376,hint,nbiot,60 +on5,0,0,28,1,0,490,1680.000000,67,5,30782.000320,801.154792,hint,nbiot,60 +on8,0,0,26,1,0,125,1560.000000,67,2,9213.000320,666.964792,hint,nbiot,60 +on12,0,0,25,0,0,1460,1500.000000,67,1,-1.000000,612.999584,hint,nbiot,60 +on4,0,0,27,0,0,1452,1620.000000,67,3,-1.000000,711.764376,hint,nbiot,60 +on6,0,0,26,1,0,308,1560.000000,67,2,18657.000320,662.350000,hint,nbiot,60 +on12,0,0,26,1,0,864,1560.000000,68,3,50995.000320,672.554584,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,68,0,-1.000000,833.271872,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,26,1,0,643,1560.000000,68,2,36252.000320,650.000416,hint,nbiot,60 +on11,0,0,28,1,0,772,1680.000000,68,5,42911.000320,751.559584,hint,nbiot,60 +on9,0,0,25,1,0,711,1500.000000,68,1,45716.000320,670.330416,hint,nbiot,60 +on1,0,0,25,1,0,515,1500.000000,68,1,31591.000640,629.444792,hint,nbiot,60 +on3,0,0,26,0,0,1454,1560.000000,68,3,-1.000000,700.244584,hint,nbiot,60 +on6,0,0,24,0,0,1397,1440.000000,68,0,-1.000000,618.250000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,27,1,0,825,1620.000000,68,4,49354.000640,707.995000,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 +on11,0,0,26,1,0,306,1560.000000,69,2,21011.000640,679.250000,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,69,0,-1.000000,934.932080,hint,nbiot,60 +on10,0,0,24,1,0,1346,1440.000000,69,0,83171.000000,624.750000,hint,nbiot,60 +on12,0,0,25,0,0,1452,1500.000000,69,1,-1.000000,632.499376,hint,nbiot,60 +on2,0,0,26,1,0,438,1560.000000,69,2,29751.000320,702.195000,hint,nbiot,60 +on8,0,0,25,1,0,347,1500.000000,69,2,24857.000320,662.854584,hint,nbiot,60 +on1,0,0,26,1,0,637,1560.000000,69,2,39305.000320,663.000000,hint,nbiot,60 +on4,0,0,24,1,0,652,1440.000000,69,0,41657.000320,610.450208,hint,nbiot,60 +on5,0,0,25,1,0,754,1500.000000,69,2,47240.000320,642.900000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1435,1440.000000,69,0,-1.000000,579.900000,hint,nbiot,60 +on6,0,0,28,1,0,799,1680.000000,69,6,45211.000320,736.804376,hint,nbiot,60 +on7,0,0,26,1,0,547,1589.000000,69,4,34030.000320,725.755000,hint,nbiot,60 +on10,0,0,25,1,0,260,1500.000000,70,2,20561.000320,663.959792,hint,nbiot,60 +on9,0,0,27,1,0,476,1620.000000,70,4,25344.000320,712.804376,hint,nbiot,60 +on8,0,0,24,1,0,1203,1440.000000,70,0,72983.000320,602.000208,hint,nbiot,60 +on1,0,0,24,1,0,252,1440.000000,70,0,16430.000320,643.600208,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,70,0,-1.000000,860.441872,hint,nbiot,60 +on6,0,0,26,1,0,1294,1560.000000,70,2,83896.000000,745.549584,hint,nbiot,60 +on12,0,0,25,1,0,1302,1500.000000,70,1,82212.000320,688.464376,hint,nbiot,60 +on11,0,0,25,0,0,1453,1500.000000,70,1,-1.000000,625.154584,hint,nbiot,60 +on7,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 +on3,0,0,26,1,0,385,1560.000000,70,2,21752.000320,663.000208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,26,1,0,1238,1560.000000,70,3,77476.000320,732.159584,hint,nbiot,60 +on9,0,0,25,1,0,1304,1500.000000,71,1,77877.000320,626.000208,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,71,0,-1.000000,775.161872,hint,nbiot,60 +on2,0,0,24,0,0,1410,1440.000000,71,0,-1.000000,599.400000,hint,nbiot,60 +on3,0,0,24,0,0,1404,1440.000000,71,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,1270,1500.000000,71,2,80619.000320,694.900000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,1338,1500.000000,71,2,83415.000000,653.299792,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,960,1500.000000,71,1,58351.600640,626.195832,hint,nbiot,60 +on5,0,0,25,1,0,1192,1500.000000,71,1,75188.000320,723.760208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,1109,1500.000000,72,1,69691.000320,636.075208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,397,1500.000000,72,2,23272.000320,626.650000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,72,0,-1.000000,791.412912,hint,nbiot,60 +on6,0,0,25,1,0,956,1500.000000,72,1,59556.600640,666.755624,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,420,1500.000000,72,2,28180.000320,650.700000,hint,nbiot,60 +on11,0,0,25,1,0,1200,1500.000000,72,1,72638.600640,626.195624,hint,nbiot,60 +on4,0,0,25,1,0,1110,1500.000000,72,1,66448.000320,631.460208,hint,nbiot,60 +on9,0,0,24,0,0,1403,1440.000000,72,0,-1.000000,600.700000,hint,nbiot,60 +on1,0,0,24,1,0,309,1440.000000,72,0,19672.000320,602.000416,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1405,1440.000000,73,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1437,1440.000000,73,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,73,0,-1.000000,798.821872,hint,nbiot,60 +on1,0,0,24,1,0,1129,1440.000000,73,0,71166.000320,612.400208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,1168,1452.000000,73,2,74011.000320,627.600000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,320,1500.000000,73,2,23475.000320,663.959584,hint,nbiot,60 +on5,0,0,25,1,0,261,1500.000000,73,1,19886.000320,678.260208,hint,nbiot,60 +on3,0,0,26,1,0,438,1560.000000,73,2,25270.000320,663.000208,hint,nbiot,60 +on2,0,0,27,1,0,497,1620.000000,73,4,30058.000320,699.804584,hint,nbiot,60 +on5,0,0,24,0,0,1414,1440.000000,74,0,-1.000000,654.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,931,1440.000000,74,0,60726.000320,621.500208,hint,nbiot,60 +on12,0,0,25,1,0,124,1500.000000,74,1,10411.000320,672.150416,hint,nbiot,60 +on3,0,0,24,0,0,1428,1440.000000,74,0,-1.000000,584.450000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,74,0,-1.000000,754.361456,hint,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,74,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,177,1560.000000,74,3,13360.000320,663.000208,hint,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,74,0,37143.000320,602.000208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1422,1440.000000,75,0,-1.000000,588.350000,hint,nbiot,60 +on8,0,0,25,1,0,205,1500.000000,75,1,15047.000320,648.100416,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,75,0,-1.000000,701.711040,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,75,0,-1.000000,581.200000,hint,nbiot,60 +on2,0,0,24,1,0,728,1440.000000,75,0,44695.000320,602.000624,hint,nbiot,60 +on12,0,0,24,0,0,1412,1440.000000,75,0,-1.000000,595.500000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1418,1440.000000,75,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,76,0,57440.000320,602.000208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,976,1500.000000,76,1,62533.000320,697.110208,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,76,0,-1.000000,731.611040,hint,nbiot,60 +on4,0,0,25,1,0,1024,1500.000000,76,1,65323.000320,665.000208,hint,nbiot,60 +on12,0,0,24,0,0,1430,1440.000000,76,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,1,0,660,1440.000000,76,0,40729.000320,602.000416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on10,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 +on7,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,195,1440.000000,77,0,12803.000320,602.000208,hint,nbiot,60 +on2,0,0,25,1,0,740,1500.000000,77,1,48302.000320,644.850208,hint,nbiot,60 +on9,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,1,0,1020,1440.000000,77,0,61408.000320,602.000208,hint,nbiot,60 +on4,0,0,24,0,0,1424,1440.000000,77,0,-1.000000,587.050000,hint,nbiot,60 +on8,0,0,24,1,0,484,1440.000000,77,0,31407.000320,602.000624,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,77,0,-1.000000,735.511456,hint,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,77,0,1910.000320,602.000208,hint,nbiot,60 +on7,0,0,25,1,0,471,1500.000000,78,1,26937.000320,630.550000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,78,0,-1.000000,800.251872,hint,nbiot,60 +on10,0,0,27,1,0,479,1620.000000,78,6,30475.000320,738.349792,hint,nbiot,60 +on4,0,0,26,1,0,532,1560.000000,78,3,35392.000320,667.744376,hint,nbiot,60 +on1,0,0,24,0,0,1422,1440.000000,78,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1372,1440.000000,78,0,-1.000000,654.000000,hint,nbiot,60 +on9,0,0,25,1,0,327,1500.000000,78,2,22528.000320,684.760208,hint,nbiot,60 +on5,0,0,24,1,0,305,1440.000000,78,0,20765.000320,635.410208,hint,nbiot,60 +on12,0,0,24,0,0,1405,1440.000000,78,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1428,1440.000000,78,0,-1.000000,584.450000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,79,0,-1.000000,600.050000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,367,1440.000000,79,0,22016.000320,602.000208,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,79,0,-1.000000,626.050208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,80,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,25,1,0,1326,1500.000000,80,1,83623.000000,681.900000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,80,0,-1.000000,752.410208,hint,nbiot,60 +on9,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 +on7,0,0,24,1,0,152,1440.000000,80,0,10963.000320,621.500208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1409,1440.000000,80,0,-1.000000,634.500000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1407,1440.000000,80,0,-1.000000,598.100000,hint,nbiot,60 +on10,0,0,25,1,0,1063,1500.000000,81,1,69180.000320,710.759792,hint,nbiot,60 +on9,0,0,25,1,0,1238,1500.000000,81,1,77679.000320,637.959792,hint,nbiot,60 +on5,0,0,25,1,0,527,1500.000000,81,1,31270.000320,626.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,436,1440.000000,81,0,26081.000320,639.310208,hint,nbiot,60 +on2,0,0,24,0,0,1369,1440.000000,81,0,-1.000000,642.300000,hint,nbiot,60 +on4,0,0,26,1,0,1196,1560.000000,81,2,74272.000320,690.299792,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,1368,1500.000000,81,2,84952.000000,658.499792,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,81,0,-1.000000,913.091456,hint,nbiot,60 +on1,0,0,28,1,0,1380,1680.000000,81,5,80138.000320,734.919168,hint,nbiot,60 +on12,0,0,25,1,0,1107,1500.000000,81,1,68221.000320,666.625208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1384,1440.000000,82,0,-1.000000,654.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,82,0,-1.000000,639.700208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,363,1440.000000,82,0,22006.000320,602.000208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1392,1440.000000,83,0,-1.000000,608.500000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,83,0,-1.000000,792.061456,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,83,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,83,0,59197.000320,602.000208,hint,nbiot,60 +on8,0,0,25,1,0,225,1500.000000,83,1,15677.000320,626.000208,hint,nbiot,60 +on6,0,0,25,1,0,115,1500.000000,83,1,10886.000320,727.010416,hint,nbiot,60 +on10,0,0,25,1,0,1080,1500.000000,83,1,65706.600640,637.245624,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1411,1440.000000,83,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,158,1500.000000,84,1,13008.000320,657.200000,hint,nbiot,60 +on6,0,0,26,1,0,157,1560.000000,84,2,7244.000320,663.000208,hint,nbiot,60 +on3,0,0,25,1,0,84,1500.000000,84,2,6733.000320,647.904584,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,84,0,-1.000000,835.613744,hint,nbiot,60 +on10,0,0,28,1,0,335,1680.000000,84,5,17477.000320,752.664168,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.650000,hint,nbiot,60 +on7,0,0,26,1,0,452,1560.000000,84,2,27730.000640,681.200208,hint,nbiot,60 +on1,0,0,24,1,0,304,1440.000000,84,1,18520.000320,602.000208,hint,nbiot,60 +on2,0,0,25,1,0,476,1500.000000,84,1,29014.000320,639.000000,hint,nbiot,60 +on8,0,0,24,1,0,13,1440.000000,84,0,3498.000320,669.211040,hint,nbiot,60 +on5,0,0,27,1,0,366,1620.000000,84,5,24194.000320,795.549584,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,85,0,-1.000000,777.500624,hint,nbiot,60 +on2,0,0,25,1,0,1320,1500.000000,85,1,81056.600640,626.195416,hint,nbiot,60 +on7,0,0,24,1,0,870,1440.000000,85,0,57197.000320,622.150208,hint,nbiot,60 +on3,0,0,24,0,0,1429,1440.000000,85,0,-1.000000,583.800000,hint,nbiot,60 +on10,0,0,24,0,0,1413,1440.000000,85,0,-1.000000,594.200000,hint,nbiot,60 +on4,0,0,24,0,0,1409,1440.000000,85,0,-1.000000,596.800000,hint,nbiot,60 +on9,0,0,24,0,0,1402,1440.000000,85,0,-1.000000,633.850000,hint,nbiot,60 +on11,0,0,24,0,0,1406,1440.000000,85,0,-1.000000,598.750000,hint,nbiot,60 +on8,0,0,24,0,0,1413,1440.000000,85,0,-1.000000,594.200000,hint,nbiot,60 +on12,0,0,24,0,0,1433,1440.000000,85,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1425,1440.000000,85,0,-1.000000,586.400000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,86,0,-1.000000,960.801456,hint,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,86,0,53601.000320,612.400000,hint,nbiot,60 +on7,0,0,26,1,0,1182,1560.000000,86,2,71230.000320,713.959584,hint,nbiot,60 +on11,0,0,29,1,0,1338,1753.000000,86,7,78655.000320,795.578336,hint,nbiot,60 +on1,0,0,26,1,0,1338,1560.000000,86,3,81528.000320,698.360000,hint,nbiot,60 +on2,0,0,26,1,0,1121,1560.000000,86,2,72799.000320,759.850000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,27,1,0,1023,1620.000000,86,3,63186.000320,757.914584,hint,nbiot,60 +on9,0,0,24,1,0,23,1463.000000,86,1,6067.000320,627.450208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,26,1,0,1071,1560.000000,86,2,64964.000320,681.719584,hint,nbiot,60 +on4,0,0,26,1,0,964,1560.000000,86,2,59376.000320,692.314792,hint,nbiot,60 +on6,0,0,25,1,0,1359,1500.000000,86,1,83386.000000,626.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,87,0,-1.000000,713.800208,hint,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,87,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,1,0,517,1440.000000,87,0,33324.000320,641.000208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1409,1440.000000,87,0,-1.000000,596.800000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1386,1440.000000,87,0,-1.000000,626.050000,hint,nbiot,60 +on1,0,0,24,0,0,1419,1440.000000,87,0,-1.000000,590.300000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,241,1440.000000,88,0,17052.000320,602.000416,hint,nbiot,60 +on6,0,0,25,1,0,334,1500.000000,88,2,19917.000320,628.600000,hint,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,88,0,2724.000320,602.000208,hint,nbiot,60 +on1,0,0,24,1,0,1149,1440.000000,88,0,73930.000320,640.350416,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,88,0,-1.000000,842.371664,hint,nbiot,60 +on8,0,0,24,0,0,1375,1440.000000,88,0,-1.000000,678.700000,hint,nbiot,60 +on7,0,0,26,1,0,895,1560.000000,88,2,58016.000320,727.155208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1417,1440.000000,88,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on1,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 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1429,1440.000000,89,0,-1.000000,583.800000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1413,1440.000000,89,0,-1.000000,594.200000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,89,0,-1.000000,634.500000,hint,nbiot,60 +on11,0,0,24,0,0,1425,1440.000000,89,0,-1.000000,586.400000,hint,nbiot,60 +on6,0,0,24,0,0,1420,1440.000000,89,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1428,1440.000000,89,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1422,1440.000000,90,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,25,1,0,339,1500.000000,90,1,23300.000320,640.105208,hint,nbiot,60 +on1,0,0,24,0,0,1395,1440.000000,90,0,-1.000000,635.800000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1422,1440.000000,90,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,90,0,-1.000000,654.000000,hint,nbiot,60 +on6,0,0,24,0,0,1388,1440.000000,90,0,-1.000000,654.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,90,0,-1.000000,838.470832,hint,nbiot,60 +on3,0,0,25,1,0,795,1500.000000,90,1,49614.000320,627.950208,hint,nbiot,60 +on11,0,0,24,1,0,1218,1440.000000,90,0,73118.000320,602.000208,hint,nbiot,60 +on12,0,0,24,1,0,1112,1440.000000,90,0,70007.000320,641.000208,hint,nbiot,60 +on10,0,0,24,0,0,1438,1440.000000,90,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,120,1500.000000,91,1,8405.600640,626.195624,hint,nbiot,60 +on2,0,0,24,0,0,1439,1440.000000,91,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1387,1440.000000,91,0,-1.000000,628.650000,hint,nbiot,60 +on6,0,0,25,1,0,941,1500.000000,91,2,62190.000320,730.910000,hint,nbiot,60 +on9,0,0,24,0,0,1409,1440.000000,91,0,-1.000000,596.800000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,91,0,-1.000000,797.911664,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 +on3,0,0,25,1,0,1066,1500.000000,91,1,65986.000320,626.000416,hint,nbiot,60 +on4,0,0,25,1,0,968,1500.000000,91,1,59518.000320,644.200208,hint,nbiot,60 +on12,0,0,24,0,0,1412,1440.000000,91,0,-1.000000,594.850000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on4,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 +on7,0,0,24,1,0,1326,1440.000000,92,0,81444.000320,602.000208,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,92,0,-1.000000,702.101248,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,1060,1500.000000,92,1,67202.600640,665.195624,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,780,1440.000000,92,0,47930.000320,602.000208,hint,nbiot,60 +on6,0,0,24,0,0,1428,1440.000000,92,0,-1.000000,584.450000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,1321,1500.000000,92,2,84013.000000,664.349792,hint,nbiot,60 +on6,0,0,24,0,0,1400,1440.000000,93,0,-1.000000,603.300000,hint,nbiot,60 +on2,0,0,25,1,0,1196,1500.000000,93,1,74142.000320,626.000208,hint,nbiot,60 +on8,0,0,24,0,0,1437,1440.000000,93,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1430,1440.000000,93,0,-1.000000,583.150000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,93,0,-1.000000,717.701456,hint,nbiot,60 +on5,0,0,25,1,0,1080,1500.000000,93,1,67517.600640,663.505624,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.650000,hint,nbiot,60 +on3,0,0,25,1,0,1238,1500.000000,93,2,77910.000320,702.310000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,1373,1500.000000,93,1,81123.000320,626.000208,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1413,1440.000000,94,0,-1.000000,594.200000,hint,nbiot,60 +on5,0,0,25,1,0,1130,1500.000000,94,1,68591.600640,633.345624,hint,nbiot,60 +on10,0,0,25,1,0,1020,1500.000000,94,1,64349.600640,664.545624,hint,nbiot,60 +on7,0,0,25,1,0,60,1500.000000,94,1,5942.600640,626.195624,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,94,0,-1.000000,719.262080,hint,nbiot,60 +on4,0,0,25,1,0,964,1500.000000,94,1,59210.000320,639.000208,hint,nbiot,60 +on3,0,0,24,0,0,1439,1440.000000,94,0,-1.000000,577.300000,hint,nbiot,60 +on12,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 +on6,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,793,1500.000000,95,1,50303.600640,626.195832,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1425,1440.000000,95,0,-1.000000,586.400000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,730,1440.000000,95,0,46205.000320,602.000208,hint,nbiot,60 +on2,0,0,26,1,0,522,1560.000000,95,3,31026.000320,663.845000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,269,1500.000000,95,1,18599.600640,684.305624,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,95,0,-1.000000,737.202288,hint,nbiot,60 +on10,0,0,25,1,0,474,1500.000000,95,1,27541.000320,626.000208,hint,nbiot,60 +on11,0,0,26,1,0,1121,1560.000000,96,3,67772.000320,674.700000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,1047,1500.000000,96,1,63253.000320,635.945208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1401,1440.000000,96,0,-1.000000,602.000000,hint,nbiot,60 +on10,0,0,24,0,0,1399,1440.000000,96,0,-1.000000,639.700000,hint,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,96,0,60266.000320,639.700208,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,96,0,-1.000000,754.750832,hint,nbiot,60 +on6,0,0,24,0,0,1401,1440.000000,96,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,26,1,0,1279,1560.000000,97,3,79171.000320,739.700000,hint,nbiot,60 +on12,0,0,24,0,0,1406,1440.000000,97,0,-1.000000,598.750000,hint,nbiot,60 +on4,0,0,25,1,0,1184,1500.000000,97,1,69758.000320,626.000208,hint,nbiot,60 +on8,0,0,24,1,0,1080,1440.000000,97,0,67792.000320,639.700208,hint,nbiot,60 +on5,0,0,24,1,0,1327,1440.000000,97,0,81575.000320,609.800000,hint,nbiot,60 +on6,0,0,24,0,0,1429,1440.000000,97,0,-1.000000,583.800000,hint,nbiot,60 +on11,0,0,26,0,0,1490,1560.000000,97,2,-1.000000,649.999584,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,97,0,-1.000000,839.251456,hint,nbiot,60 +on3,0,0,24,1,0,604,1440.000000,97,0,38532.000320,602.000208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,26,1,0,1257,1560.000000,97,3,73242.000320,664.690000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,26,1,0,1402,1560.000000,97,2,84908.000000,663.844792,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,98,0,-1.000000,686.500208,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1417,1440.000000,98,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1388,1440.000000,98,0,-1.000000,654.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,781,1440.000000,98,0,48591.000320,602.000208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1405,1440.000000,98,0,-1.000000,600.050000,hint,nbiot,60 +on5,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 +on3,0,0,24,0,0,1426,1440.000000,98,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1435,1440.000000,99,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,1,0,300,1440.000000,99,0,20326.000320,602.000208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,88,1500.000000,99,2,9336.000320,697.109792,hint,nbiot,60 +on11,0,0,25,1,0,31,1500.000000,99,1,4272.000320,633.800416,hint,nbiot,60 +on3,0,0,25,1,0,177,1500.000000,99,1,12194.000320,626.000208,hint,nbiot,60 +on10,0,0,24,0,0,1406,1440.000000,99,0,-1.000000,598.750000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,371,1500.000000,99,2,22969.000320,643.550208,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,99,0,-1.000000,779.712288,hint,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,99,0,16620.000320,602.000416,hint,nbiot,60 +on12,0,0,24,0,0,1420,1440.000000,99,0,-1.000000,589.650000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,436,1440.000000,100,0,26899.000320,602.000208,hint,nbiot,60 +on8,0,0,24,0,0,1405,1440.000000,100,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1437,1440.000000,100,0,-1.000000,578.600000,hint,nbiot,60 +on3,0,0,24,0,0,1433,1440.000000,100,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,100,0,-1.000000,709.250416,hint,nbiot,60 +on12,0,0,24,1,0,1320,1440.000000,100,0,82237.000320,602.000208,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,1405,1440.000000,100,0,-1.000000,628.000000,hint,nbiot,60 +on10,0,0,24,0,0,1401,1440.000000,100,0,-1.000000,602.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,1153,1440.000000,101,0,70967.000320,602.000208,hint,nbiot,60 +on1,0,0,24,0,0,1415,1440.000000,101,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,101,0,-1.000000,758.910416,hint,nbiot,60 +on8,0,0,24,0,0,1396,1440.000000,101,0,-1.000000,630.600000,hint,nbiot,60 +on3,0,0,24,0,0,1406,1440.000000,101,0,-1.000000,598.750000,hint,nbiot,60 +on5,0,0,24,0,0,1401,1440.000000,101,0,-1.000000,619.550000,hint,nbiot,60 +on2,0,0,24,0,0,1403,1440.000000,101,0,-1.000000,600.700000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on11,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 +on7,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,149,1500.000000,101,1,10865.000320,636.400208,hint,nbiot,60 +on1,0,0,24,0,0,1424,1440.000000,102,0,-1.000000,587.050000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,27,1,0,858,1620.000000,102,3,52915.000640,687.454792,hint,nbiot,60 +on9,0,0,24,1,0,1261,1440.000000,102,0,78840.000320,602.000208,hint,nbiot,60 +on5,0,0,24,1,0,1295,1440.000000,102,0,80587.000320,665.700000,hint,nbiot,60 +on12,0,0,24,1,0,735,1440.000000,102,0,44439.000320,604.209792,hint,nbiot,60 +on4,0,0,24,0,0,1426,1440.000000,102,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,102,0,-1.000000,843.931248,hint,nbiot,60 +on2,0,0,25,1,0,1207,1500.000000,102,1,73203.000320,647.255208,hint,nbiot,60 +on3,0,0,27,1,0,923,1620.000000,102,4,55066.000320,737.504584,hint,nbiot,60 +on7,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 +on6,0,0,24,0,0,1414,1440.000000,102,0,-1.000000,615.000000,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,0,0,1440,1440.000000,103,0,-1.000000,576.650000,hint,nbiot,60 +on11,0,0,24,0,0,1408,1440.000000,103,0,-1.000000,597.450000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1433,1440.000000,103,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1437,1440.000000,103,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1406,1440.000000,103,0,-1.000000,598.750000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,103,0,-1.000000,667.650000,hint,nbiot,60 +on9,0,0,24,0,0,1407,1440.000000,103,0,-1.000000,598.750000,hint,nbiot,60 +on8,0,0,24,0,0,1416,1440.000000,103,0,-1.000000,592.250000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,727,1440.000000,104,0,45398.000320,602.000416,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,1379,1440.000000,104,0,-1.000000,616.950000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,104,0,-1.000000,803.762080,hint,nbiot,60 +on2,0,0,26,1,0,307,1560.000000,104,3,15584.000320,663.000000,hint,nbiot,60 +on10,0,0,26,1,0,226,1560.000000,104,3,14374.000320,702.000208,hint,nbiot,60 +on7,0,0,25,1,0,82,1500.000000,104,1,6026.000320,693.925416,hint,nbiot,60 +on1,0,0,24,0,0,1403,1440.000000,104,0,-1.000000,600.700000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,124,1500.000000,104,1,8625.000320,698.930208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1419,1440.000000,104,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1439,1440.000000,105,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1436,1440.000000,105,0,-1.000000,579.250000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,105,0,-1.000000,676.100208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1413,1440.000000,105,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,1,0,1025,1440.000000,105,0,61410.000320,602.000208,hint,nbiot,60 +on5,0,0,24,0,0,1411,1440.000000,105,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1413,1440.000000,105,0,-1.000000,594.200000,hint,nbiot,60 +on4,0,0,24,0,0,1420,1440.000000,105,0,-1.000000,589.650000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,1325,1440.000000,106,0,82110.000320,602.000208,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,106,0,-1.000000,833.922080,hint,nbiot,60 +on4,0,0,24,1,0,960,1440.000000,106,0,58744.000320,602.000208,hint,nbiot,60 +on12,0,0,25,1,0,208,1500.000000,106,1,15522.000320,674.815208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1401,1440.000000,106,0,-1.000000,602.000000,hint,nbiot,60 +on9,0,0,24,1,0,181,1440.000000,106,0,11759.000320,612.660416,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,359,1500.000000,106,1,21061.000320,626.000208,hint,nbiot,60 +on11,0,0,24,1,0,60,1440.000000,106,0,5472.000320,602.000208,hint,nbiot,60 +on1,0,0,25,1,0,1229,1500.000000,106,1,77491.000320,639.000208,hint,nbiot,60 +on6,0,0,24,1,0,423,1440.000000,106,0,25432.000320,602.000416,hint,nbiot,60 +on1,0,0,24,1,0,180,1440.000000,107,0,12936.000320,602.000208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1433,1440.000000,107,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on4,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 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,107,0,-1.000000,612.400208,hint,nbiot,60 +on7,0,0,24,0,0,1433,1440.000000,107,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on6,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 +on2,0,0,27,1,0,614,1620.000000,108,5,37289.000320,714.104584,hint,nbiot,60 +on3,0,0,25,1,0,190,1500.000000,108,1,12487.000320,658.500208,hint,nbiot,60 +on4,0,0,25,1,0,1109,1500.000000,108,1,68634.000320,674.750208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,638,1500.000000,108,1,40522.000320,702.700416,hint,nbiot,60 +on6,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 +on11,0,0,25,1,0,588,1500.000000,108,1,34857.000320,626.000416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,520,1500.000000,108,1,32049.000320,663.310208,hint,nbiot,60 +on10,0,0,24,1,0,60,1440.000000,108,0,5165.000320,602.000208,hint,nbiot,60 +on9,0,0,25,1,0,63,1500.000000,108,2,10009.000320,707.250208,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,108,0,-1.000000,794.012912,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1415,1440.000000,109,0,-1.000000,592.900000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1419,1440.000000,109,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on2,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 +on3,0,0,24,0,0,1401,1440.000000,109,0,-1.000000,602.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,109,0,-1.000000,659.200416,hint,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,109,0,7672.000320,602.000416,hint,nbiot,60 +on1,0,0,25,1,0,429,1500.000000,110,1,27617.000320,640.495208,hint,nbiot,60 +on9,0,0,29,1,0,870,1740.000000,110,6,50526.000320,818.850208,hint,nbiot,60 +on5,0,0,24,1,0,494,1440.000000,110,0,30040.000320,604.859792,hint,nbiot,60 +on7,0,0,28,1,0,656,1680.000000,110,5,36746.000320,747.269168,hint,nbiot,60 +on8,0,0,25,1,0,558,1500.000000,110,1,35499.000320,663.309792,hint,nbiot,60 +on3,0,0,25,0,0,1421,1500.000000,110,1,-1.000000,639.194584,hint,nbiot,60 +on12,0,0,28,1,0,889,1680.000000,110,4,50062.000320,722.959376,hint,nbiot,60 +on6,0,0,25,1,0,1024,1500.000000,110,1,63866.000320,699.580208,hint,nbiot,60 +on0,1,11,24,0,0,0,1440.000000,110,0,-1.000000,987.842912,hint,nbiot,60 +on2,0,0,25,1,0,178,1500.000000,110,2,11675.000320,633.410208,hint,nbiot,60 +on4,0,0,25,1,0,664,1500.000000,110,1,42545.000320,665.779792,hint,nbiot,60 +on10,0,0,28,1,0,743,1680.000000,110,4,45715.000320,820.848544,hint,nbiot,60 +on11,0,0,24,1,0,123,1440.000000,110,0,8128.000320,602.000416,hint,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,111,0,69320.000320,626.960000,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,111,0,-1.000000,865.122288,hint,nbiot,60 +on4,0,0,24,1,0,721,1440.000000,111,0,44155.000320,613.700000,hint,nbiot,60 +on9,0,0,28,1,0,900,1680.000000,111,5,54550.000320,809.214168,hint,nbiot,60 +on10,0,0,25,1,0,1299,1500.000000,111,1,79169.000320,626.000208,hint,nbiot,60 +on5,0,0,25,1,0,960,1500.000000,111,2,59116.000320,650.700000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,612,1500.000000,111,1,38762.000320,631.395208,hint,nbiot,60 +on6,0,0,25,1,0,1174,1500.000000,111,1,73283.000320,650.180000,hint,nbiot,60 +on3,0,0,26,1,0,755,1560.000000,111,2,48672.000320,697.645000,hint,nbiot,60 +on8,0,0,27,1,0,855,1620.000000,111,3,52349.000320,737.309584,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,26,1,0,678,1560.000000,111,3,40179.000320,699.270000,hint,nbiot,60 +on3,0,0,25,1,0,1298,1500.000000,112,1,80916.000320,683.850208,hint,nbiot,60 +on5,0,0,25,1,0,117,1500.000000,112,1,5749.000320,652.650416,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,890,1440.000000,112,0,55474.000320,620.850208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,26,1,0,482,1560.000000,112,2,30761.600640,680.550624,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,734,1440.000000,112,0,49819.000320,659.850208,hint,nbiot,60 +on2,0,0,25,1,0,1135,1500.000000,112,1,71177.000320,678.000208,hint,nbiot,60 +on10,0,0,25,1,0,1382,1500.000000,112,1,85216.000000,649.790000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,112,0,-1.000000,879.422288,hint,nbiot,60 +on6,0,0,24,0,0,1431,1440.000000,112,0,-1.000000,582.500000,hint,nbiot,60 +on7,0,0,24,1,0,0,1440.000000,112,0,1904.000320,639.310208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1423,1440.000000,113,0,-1.000000,587.700000,hint,nbiot,60 +on2,0,0,24,1,0,123,1440.000000,113,0,10202.000320,602.000208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,721,1500.000000,113,1,44278.600640,626.195624,hint,nbiot,60 +on10,0,0,24,0,0,1436,1440.000000,113,0,-1.000000,579.250000,hint,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,113,0,-1.000000,601.350000,hint,nbiot,60 +on11,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,668.300832,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1405,1440.000000,114,0,-1.000000,599.400000,hint,nbiot,60 +on5,0,0,24,0,0,1438,1440.000000,114,0,-1.000000,577.950000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,114,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 +on3,0,0,24,0,0,1410,1440.000000,114,0,-1.000000,596.150000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,1393,1440.000000,114,0,85392.000000,602.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,114,0,-1.000000,661.150000,hint,nbiot,60 +on6,0,0,24,0,0,1420,1440.000000,114,0,-1.000000,589.650000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,28,1,0,805,1680.000000,115,4,48056.000320,768.848752,hint,nbiot,60 +on8,0,0,24,1,0,679,1440.000000,115,0,40662.000320,602.000208,hint,nbiot,60 +on6,0,0,25,1,0,1075,1500.000000,115,1,65765.000320,626.000208,hint,nbiot,60 +on3,0,0,28,1,0,951,1680.000000,115,4,55690.000320,725.235208,hint,nbiot,60 +on11,0,0,24,1,0,606,1440.000000,115,0,39224.000320,610.059792,hint,nbiot,60 +on1,0,0,28,1,0,947,1680.000000,115,5,59671.000320,832.159376,hint,nbiot,60 +on7,0,0,25,1,0,964,1500.000000,115,2,62189.000320,699.710000,hint,nbiot,60 +on2,0,0,25,0,0,1437,1500.000000,115,1,-1.000000,612.999584,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,509,1500.000000,115,1,32746.000320,648.359792,hint,nbiot,60 +on12,0,0,26,1,0,882,1560.000000,115,2,53968.000320,675.154376,hint,nbiot,60 +on9,0,0,26,1,0,679,1595.000000,115,3,44713.000320,782.364584,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,115,0,-1.000000,963.141456,hint,nbiot,60 +on1,0,0,26,1,0,766,1560.000000,116,3,52603.000320,738.399792,hint,nbiot,60 +on6,0,0,26,1,0,1214,1560.000000,116,3,75921.000320,698.945208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,939,1500.000000,116,1,58209.000320,638.480208,hint,nbiot,60 +on5,0,0,25,1,0,829,1500.000000,116,1,48741.000320,637.959792,hint,nbiot,60 +on8,0,0,24,1,0,734,1440.000000,116,0,44664.000320,654.650208,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,116,0,-1.000000,962.622912,hint,nbiot,60 +on7,0,0,27,1,0,913,1620.000000,116,4,55884.000320,775.074584,hint,nbiot,60 +on11,0,0,25,1,0,642,1500.000000,116,1,40912.000320,626.000208,hint,nbiot,60 +on10,0,0,25,1,0,1215,1500.000000,116,1,73398.000320,642.250208,hint,nbiot,60 +on4,0,0,26,1,0,1015,1560.000000,116,3,63606.000320,663.000000,hint,nbiot,60 +on9,0,0,25,1,0,567,1500.000000,116,1,38715.000320,685.410208,hint,nbiot,60 +on4,0,0,24,1,0,1304,1440.000000,117,0,79527.000320,620.460208,hint,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,117,0,69405.000320,602.000208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1426,1440.000000,117,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,25,1,0,1389,1500.000000,117,1,84461.000000,633.605000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,117,0,-1.000000,751.760832,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,117,0,-1.000000,654.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1412,1440.000000,117,0,-1.000000,594.850000,hint,nbiot,60 +on5,0,0,24,1,0,422,1440.000000,117,0,28288.000320,602.000416,hint,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,118,0,13451.000320,639.310416,hint,nbiot,60 +on3,0,0,24,0,0,1418,1440.000000,118,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,nbiot,60 +on7,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 +on5,0,0,24,0,0,1417,1440.000000,118,0,-1.000000,591.600000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,118,0,-1.000000,716.401456,hint,nbiot,60 +on8,0,0,24,1,0,900,1440.000000,118,0,57532.000320,602.000208,hint,nbiot,60 +on9,0,0,24,1,0,1076,1440.000000,118,0,66889.000320,605.250416,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1437,1440.000000,118,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,26,1,0,1164,1560.000000,118,3,68840.000320,668.200000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,386,1500.000000,119,1,22172.000320,697.370000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,27,1,0,456,1620.000000,119,4,25534.000320,699.999792,hint,nbiot,60 +on3,0,0,26,1,0,508,1560.000000,119,3,31303.000320,692.054792,hint,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,119,0,80293.000320,613.959792,hint,nbiot,60 +on4,0,0,25,1,0,1403,1500.000000,119,1,85465.000000,634.254584,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,119,0,-1.000000,830.022912,hint,nbiot,60 +on8,0,0,25,1,0,770,1500.000000,119,1,45785.000320,664.350416,hint,nbiot,60 +on2,0,0,26,1,0,356,1560.000000,119,3,20098.000320,717.795000,hint,nbiot,60 +on6,0,0,25,1,0,278,1500.000000,119,1,16650.000320,654.145208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,196,1440.000000,119,0,11765.000320,604.210208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,120,0,-1.000000,633.850000,hint,nbiot,60 +on4,0,0,24,0,0,1422,1440.000000,120,0,-1.000000,588.350000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1420,1440.000000,120,0,-1.000000,589.650000,hint,nbiot,60 +on6,0,0,24,0,0,1433,1440.000000,120,0,-1.000000,581.200000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1427,1440.000000,120,0,-1.000000,585.100000,hint,nbiot,60 +on7,0,0,24,0,0,1414,1440.000000,120,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,677,1440.000000,121,0,39746.000320,602.000208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1402,1440.000000,121,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,121,0,-1.000000,627.350208,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,361,1440.000000,122,0,24986.000320,602.000416,hint,nbiot,60 +on8,0,0,24,0,0,1424,1440.000000,122,0,-1.000000,587.050000,hint,nbiot,60 +on1,0,0,25,1,0,664,1500.000000,122,1,43983.000320,688.205208,hint,nbiot,60 +on9,0,0,25,1,0,799,1500.000000,122,1,50245.000320,626.000208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1399,1440.000000,122,0,-1.000000,603.950000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1429,1440.000000,122,0,-1.000000,583.800000,hint,nbiot,60 +on10,0,0,24,0,0,1402,1440.000000,122,0,-1.000000,601.350000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,122,0,-1.000000,781.661456,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,26,1,0,855,1563.000000,122,5,53565.000320,677.199792,hint,nbiot,60 +on7,0,0,24,0,0,1432,1440.000000,122,0,-1.000000,615.000000,hint,nbiot,60 +on8,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 +on6,0,0,24,1,0,600,1440.000000,123,0,36351.000320,602.000416,hint,nbiot,60 +on5,0,0,24,0,0,1404,1440.000000,123,0,-1.000000,600.050000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,619,1500.000000,123,2,40624.000320,665.649792,hint,nbiot,60 +on10,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 +on9,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 +on1,0,0,24,1,0,120,1440.000000,123,0,8346.000320,602.000416,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,123,0,-1.000000,678.051248,hint,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,124,0,-1.000000,599.400000,hint,nbiot,60 +on8,0,0,24,0,0,1439,1440.000000,124,0,-1.000000,577.300000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,124,0,-1.000000,767.361248,hint,nbiot,60 +on6,0,0,24,1,0,367,1440.000000,124,0,23270.000320,602.000208,hint,nbiot,60 +on11,0,0,24,0,0,1418,1440.000000,124,0,-1.000000,590.950000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,26,1,0,488,1560.000000,124,3,35711.000320,722.475000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1392,1440.000000,124,0,-1.000000,624.100000,hint,nbiot,60 +on2,0,0,24,1,0,1098,1440.000000,124,0,67006.000320,602.000208,hint,nbiot,60 +on1,0,0,25,1,0,360,1500.000000,124,2,25702.000320,665.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,1081,1500.000000,125,1,68311.000320,666.950208,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,125,0,-1.000000,775.810832,hint,nbiot,60 +on12,0,0,24,0,0,1382,1440.000000,125,0,-1.000000,637.100000,hint,nbiot,60 +on5,0,0,24,0,0,1437,1440.000000,125,0,-1.000000,578.600000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,191,1440.000000,125,0,10974.000320,602.000416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,125,0,22155.000320,602.000208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1367,1440.000000,125,0,-1.000000,649.450000,hint,nbiot,60 +on4,0,0,24,0,0,1412,1440.000000,125,0,-1.000000,594.850000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,126,0,-1.000000,749.812080,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,1020,1500.000000,126,1,63617.600640,681.315416,hint,nbiot,60 +on7,0,0,24,1,0,316,1440.000000,126,0,20271.000320,602.000208,hint,nbiot,60 +on10,0,0,26,1,0,1225,1560.000000,126,3,74412.000320,663.000208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,259,1440.000000,126,0,15057.000320,602.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,1135,1500.000000,126,2,71948.000320,648.100208,hint,nbiot,60 +on4,0,0,24,1,0,907,1440.000000,126,0,54627.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,127,0,-1.000000,589.650000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,1252,1500.000000,127,2,77342.000320,706.599792,hint,nbiot,60 +on7,0,0,24,1,0,1026,1440.000000,127,0,63144.000320,602.000208,hint,nbiot,60 +on2,0,0,24,0,0,1419,1440.000000,127,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,1165,1500.000000,127,1,70624.000320,658.110000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,27,1,0,1197,1620.000000,127,5,74056.000320,742.314168,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,127,0,-1.000000,824.171456,hint,nbiot,60 +on8,0,0,25,1,0,1085,1500.000000,127,1,68052.000640,686.059792,hint,nbiot,60 +on1,0,0,24,0,0,1419,1440.000000,127,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,25,1,0,1357,1500.000000,127,1,82755.000320,640.950208,hint,nbiot,60 +on1,0,0,29,1,0,1173,1740.000000,128,6,69123.000320,813.844376,hint,nbiot,60 +on6,0,0,25,1,0,720,1500.000000,128,1,44456.600640,626.195624,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,27,1,0,1121,1620.000000,128,3,66636.000320,697.919376,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,774,1560.000000,128,3,51585.000320,737.619792,hint,nbiot,60 +on10,0,0,24,1,0,911,1440.000000,128,0,55553.000320,606.809792,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1430,1440.000000,128,0,-1.000000,583.150000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,1021,1440.000000,128,0,63838.000320,613.309792,hint,nbiot,60 +on12,0,0,26,1,0,958,1560.000000,128,2,59723.000320,684.969584,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,128,0,-1.000000,832.232080,hint,nbiot,60 +on8,0,0,25,1,0,299,1500.000000,129,1,21163.000320,653.820208,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,129,0,-1.000000,893.722704,hint,nbiot,60 +on9,0,0,26,1,0,438,1560.000000,129,3,27331.000320,663.000000,hint,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,129,0,-1.000000,587.700000,hint,nbiot,60 +on4,0,0,27,0,0,1369,1642.000000,129,6,-1.000000,807.794584,hint,nbiot,60 +on3,0,0,25,1,0,687,1500.000000,129,1,44570.000320,637.050208,hint,nbiot,60 +on6,0,0,25,1,0,770,1500.000000,129,1,52399.000320,672.800208,hint,nbiot,60 +on7,0,0,25,1,0,371,1500.000000,129,1,24585.000320,654.730208,hint,nbiot,60 +on10,0,0,25,1,0,558,1500.000000,129,1,38246.000320,661.360208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,638,1500.000000,129,1,39902.000320,665.650416,hint,nbiot,60 +on1,0,0,24,1,0,17,1440.000000,129,0,275.000320,666.350208,hint,nbiot,60 +on9,0,0,27,1,0,1003,1620.000000,130,4,60863.000320,802.503960,hint,nbiot,60 +on6,0,0,26,1,0,416,1560.000000,130,3,26100.000320,700.570000,hint,nbiot,60 +on3,0,0,26,1,0,695,1560.000000,130,2,44155.000320,740.479376,hint,nbiot,60 +on4,0,0,27,1,0,931,1620.000000,130,3,54376.000320,727.949584,hint,nbiot,60 +on1,0,0,25,1,0,659,1500.000000,130,2,41350.000320,649.919376,hint,nbiot,60 +on8,0,0,31,1,0,868,1860.000000,130,8,47654.000320,861.193544,hint,nbiot,60 +on10,0,0,25,1,0,494,1500.000000,130,1,31941.000320,661.100000,hint,nbiot,60 +on11,0,0,25,1,0,326,1500.000000,130,1,22090.000320,649.205208,hint,nbiot,60 +on2,0,0,26,1,0,570,1560.000000,130,2,34188.000320,689.455208,hint,nbiot,60 +on0,1,12,24,0,0,0,1440.000000,130,0,-1.000000,1042.051664,hint,nbiot,60 +on5,0,0,24,1,0,243,1440.000000,130,0,15945.000320,602.000208,hint,nbiot,60 +on12,0,0,27,1,0,543,1620.000000,130,3,37699.000320,812.058960,hint,nbiot,60 +on7,0,0,26,1,0,813,1560.000000,130,2,52816.000320,707.719584,hint,nbiot,60 +on7,0,0,24,0,0,1408,1440.000000,131,0,-1.000000,598.100000,hint,nbiot,60 +on4,0,0,25,1,0,1139,1500.000000,131,1,69424.000320,665.000208,hint,nbiot,60 +on10,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 +on0,1,3,24,0,0,0,1440.000000,131,0,-1.000000,762.550624,hint,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,131,0,66169.000320,610.060208,hint,nbiot,60 +on8,0,0,24,0,0,1412,1440.000000,131,0,-1.000000,654.000000,hint,nbiot,60 +on1,0,0,24,0,0,1431,1440.000000,131,0,-1.000000,582.500000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1404,1440.000000,131,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1431,1440.000000,131,0,-1.000000,582.500000,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,1,0,1026,1440.000000,131,0,62345.000320,605.900208,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,132,0,-1.000000,695.210832,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,132,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,920,1500.000000,132,1,58495.000320,644.850208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,729,1440.000000,132,0,46366.000320,602.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,132,0,61851.000320,602.000416,hint,nbiot,60 +on8,0,0,24,0,0,1409,1440.000000,133,0,-1.000000,596.800000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,406,1440.000000,133,0,25726.000320,641.000416,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1436,1440.000000,133,0,-1.000000,579.250000,hint,nbiot,60 +on4,0,0,24,1,0,840,1440.000000,133,0,52853.000320,602.000416,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,133,0,-1.000000,749.551248,hint,nbiot,60 +on6,0,0,24,1,0,1336,1440.000000,133,0,82332.000320,602.000208,hint,nbiot,60 +on12,0,0,24,0,0,1394,1440.000000,133,0,-1.000000,634.500000,hint,nbiot,60 +on1,0,0,24,0,0,1434,1440.000000,133,0,-1.000000,580.550000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,1159,1440.000000,133,0,69520.000320,602.000208,hint,nbiot,60 +on7,0,0,25,1,0,422,1500.000000,134,2,29228.000320,707.250208,hint,nbiot,60 +on5,0,0,25,1,0,26,1500.000000,134,1,4381.000320,639.000416,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,134,0,-1.000000,748.512496,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,387,1500.000000,134,1,23648.000320,659.410208,hint,nbiot,60 +on10,0,0,25,1,0,240,1500.000000,134,2,19848.000320,677.609584,hint,nbiot,60 +on4,0,0,25,1,0,459,1500.000000,134,1,26735.000320,626.000208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1435,1440.000000,134,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,25,1,0,240,1500.000000,134,1,15778.600640,663.505624,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1438,1440.000000,135,0,-1.000000,577.950000,hint,nbiot,60 +on11,0,0,24,0,0,1413,1440.000000,135,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,135,0,-1.000000,693.650832,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1402,1440.000000,135,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,25,1,0,213,1500.000000,135,2,16531.000320,643.550208,hint,nbiot,60 +on2,0,0,24,0,0,1410,1440.000000,135,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,1,0,191,1440.000000,135,0,11095.000320,602.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,27,1,0,681,1620.000000,136,4,40839.000320,699.999792,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,60,1500.000000,136,1,4948.600640,626.195624,hint,nbiot,60 +on11,0,0,29,1,0,614,1740.000000,136,6,35477.000320,785.763960,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,458,1500.000000,136,1,32118.000320,675.269792,hint,nbiot,60 +on1,0,0,24,1,0,353,1440.000000,136,0,25148.000320,681.559792,hint,nbiot,60 +on2,0,0,27,1,0,458,1620.000000,136,3,26975.000320,734.254584,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,136,0,-1.000000,872.792496,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,338,1500.000000,136,1,20932.000320,638.805000,hint,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,136,0,17560.000320,623.710208,hint,nbiot,60 +on12,0,0,26,1,0,597,1560.000000,136,2,38878.000320,674.114584,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,137,0,-1.000000,625.400416,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,432,1440.000000,137,0,25342.000320,602.000416,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1436,1440.000000,137,0,-1.000000,579.250000,hint,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,137,0,-1.000000,615.650000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,593,1500.000000,138,1,37593.000320,663.504792,hint,nbiot,60 +on11,0,0,24,0,0,1423,1440.000000,138,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1421,1440.000000,138,0,-1.000000,625.400000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,138,0,-1.000000,765.021040,hint,nbiot,60 +on7,0,0,24,0,0,1405,1440.000000,138,0,-1.000000,599.400000,hint,nbiot,60 +on2,0,0,24,1,0,188,1440.000000,138,0,11550.000320,602.000208,hint,nbiot,60 +on4,0,0,25,1,0,704,1541.000000,138,2,41589.000320,655.400000,hint,nbiot,60 +on1,0,0,27,1,0,758,1620.000000,138,4,44179.000320,699.804792,hint,nbiot,60 +on10,0,0,26,1,0,1138,1560.000000,139,2,70166.000320,661.959792,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1439,1440.000000,139,0,-1.000000,577.300000,hint,nbiot,60 +on3,0,0,25,1,0,840,1500.000000,139,1,51245.600640,626.195624,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,27,1,0,1356,1620.000000,139,5,81233.000320,728.859584,hint,nbiot,60 +on11,0,0,25,1,0,1418,1500.000000,139,1,84264.000000,626.000000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,139,0,-1.000000,829.112496,hint,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,139,0,62005.000320,666.220000,hint,nbiot,60 +on7,0,0,25,1,0,1039,1500.000000,139,1,65441.000320,652.454792,hint,nbiot,60 +on4,0,0,24,0,0,1413,1440.000000,139,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,1,0,1277,1440.000000,139,0,77518.000320,602.000208,hint,nbiot,60 +on8,0,0,26,1,0,1260,1560.000000,139,3,72826.000320,663.845000,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 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,108,1500.000000,140,2,9995.000320,658.500208,hint,nbiot,60 +on7,0,0,24,0,0,1436,1440.000000,140,0,-1.000000,579.250000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,nbiot,60 +on3,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 +on6,0,0,24,1,0,60,1440.000000,140,0,3660.000320,602.000208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,1398,1440.000000,140,0,85867.000000,602.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,140,0,-1.000000,657.250832,hint,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,141,0,6496.000320,608.110208,hint,nbiot,60 +on9,0,0,25,1,0,281,1500.000000,141,1,16832.000320,626.000416,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1294,1440.000000,141,1,82666.000320,626.700208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,141,0,-1.000000,732.001664,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1439,1440.000000,141,0,-1.000000,615.000000,hint,nbiot,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,158,1500.000000,141,1,8429.000320,683.070416,hint,nbiot,60 +on1,0,0,25,1,0,222,1500.000000,141,1,14153.000320,663.310416,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1419,1440.000000,142,0,-1.000000,615.000000,hint,nbiot,60 +on7,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,1413,1440.000000,142,0,-1.000000,594.200000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,142,0,-1.000000,712.500416,hint,nbiot,60 +on12,0,0,24,0,0,1416,1440.000000,142,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,1,0,727,1440.000000,142,0,46543.000320,602.000208,hint,nbiot,60 +on11,0,0,24,0,0,1398,1440.000000,142,0,-1.000000,654.000000,hint,nbiot,60 +on5,0,0,24,0,0,1430,1440.000000,142,0,-1.000000,583.150000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,142,0,38804.000320,602.000208,hint,nbiot,60 +on3,0,0,24,1,0,615,1440.000000,143,0,39048.000320,608.110416,hint,nbiot,60 +on6,0,0,26,1,0,820,1560.000000,143,3,49390.000320,663.000208,hint,nbiot,60 +on1,0,0,24,1,0,180,1440.000000,143,0,13937.000320,602.000208,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,536,1440.000000,143,0,33086.000320,611.750208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1420,1440.000000,143,0,-1.000000,617.600000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,143,0,-1.000000,793.102288,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,63,1440.000000,143,0,6060.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1424,1440.000000,143,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,25,1,0,698,1500.000000,143,1,40819.000320,626.000208,hint,nbiot,60 +on4,0,0,24,1,0,666,1484.000000,143,2,46350.000320,654.700000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,144,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,144,0,-1.000000,755.400832,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1403,1440.000000,144,0,-1.000000,634.500000,hint,nbiot,60 +on6,0,0,24,1,0,1255,1440.000000,144,0,78524.000320,607.850208,hint,nbiot,60 +on7,0,0,24,0,0,1435,1440.000000,144,0,-1.000000,579.900000,hint,nbiot,60 +on2,0,0,24,0,0,1417,1440.000000,144,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,1,0,963,1440.000000,144,0,60885.000320,602.000208,hint,nbiot,60 +on12,0,0,24,0,0,1418,1440.000000,144,0,-1.000000,590.950000,hint,nbiot,60 +on11,0,0,24,0,0,1413,1440.000000,144,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,144,0,868.000320,602.000416,hint,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,145,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1424,1440.000000,145,0,-1.000000,620.850000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1403,1440.000000,145,0,-1.000000,600.700000,hint,nbiot,60 +on2,0,0,24,0,0,1419,1440.000000,145,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,27,1,0,1090,1620.000000,145,4,68279.000320,733.800000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,1053,1500.000000,145,1,63455.000320,632.500208,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,145,0,-1.000000,742.270624,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1424,1440.000000,146,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1417,1440.000000,146,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1386,1440.000000,146,0,-1.000000,613.050000,hint,nbiot,60 +on2,0,0,24,0,0,1414,1440.000000,146,0,-1.000000,593.550000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,195,1440.000000,146,0,11092.000320,602.000208,hint,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,146,0,8278.000320,602.000208,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,146,0,-1.000000,745.650416,hint,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,146,0,-1.000000,633.200000,hint,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,146,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1422,1440.000000,147,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1426,1440.000000,147,0,-1.000000,585.750000,hint,nbiot,60 +on6,0,0,25,1,0,120,1500.000000,147,1,8034.600640,626.195624,hint,nbiot,60 +on2,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,3,24,0,0,0,1440.000000,147,0,-1.000000,738.111040,hint,nbiot,60 +on5,0,0,24,0,0,1424,1440.000000,147,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1432,1440.000000,147,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,25,1,0,1079,1500.000000,147,1,68284.000320,642.900208,hint,nbiot,60 +on10,0,0,24,0,0,1411,1440.000000,147,0,-1.000000,595.500000,hint,nbiot,60 +on12,0,0,24,1,0,785,1440.000000,147,0,47540.000320,602.000208,hint,nbiot,60 +on7,0,0,24,0,0,1427,1440.000000,147,0,-1.000000,585.100000,hint,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,148,0,18942.000320,602.000208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,148,0,30943.000320,602.000208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,148,0,-1.000000,681.300416,hint,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,148,0,-1.000000,599.400000,hint,nbiot,60 +on4,0,0,24,0,0,1418,1440.000000,148,0,-1.000000,591.600000,hint,nbiot,60 +on2,0,0,24,0,0,1419,1440.000000,148,0,-1.000000,590.300000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,26,1,0,476,1560.000000,149,3,31097.000320,720.720624,hint,nbiot,60 +on10,0,0,25,1,0,520,1500.000000,149,1,35340.000320,661.620208,hint,nbiot,60 +on11,0,0,24,0,0,1430,1440.000000,149,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1433,1440.000000,149,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,1273,1440.000000,149,0,77730.000320,605.900208,hint,nbiot,60 +on7,0,0,25,1,0,1336,1500.000000,149,1,81602.000320,677.350000,hint,nbiot,60 +on6,0,0,26,1,0,597,1560.000000,149,3,38083.000320,701.350000,hint,nbiot,60 +on12,0,0,25,1,0,392,1500.000000,149,1,25320.000320,634.645416,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,149,0,-1.000000,757.612496,hint,nbiot,60 +on2,0,0,26,1,0,652,1560.000000,150,2,41078.000320,717.664584,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,612,1500.000000,150,1,37618.000320,676.960000,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,0,0,1421,1440.000000,150,0,-1.000000,589.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,27,1,0,800,1620.000000,150,3,48762.000320,724.503752,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,29,1,0,931,1740.000000,150,5,56651.000320,811.308752,hint,nbiot,60 +on6,0,0,26,1,0,875,1560.000000,150,2,53875.000320,674.959376,hint,nbiot,60 +on8,0,0,29,1,0,1037,1740.000000,150,6,59015.000320,750.990416,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,150,0,-1.000000,876.041040,hint,nbiot,60 +on1,0,0,24,1,0,728,1440.000000,150,0,43667.000320,609.150000,hint,nbiot,60 +on11,0,0,24,0,0,1428,1440.000000,151,0,-1.000000,584.450000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1397,1440.000000,151,0,-1.000000,621.500000,hint,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,151,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,151,0,-1.000000,658.550000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1409,1440.000000,151,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,372,1440.000000,152,0,22028.000320,602.000208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,152,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1430,1440.000000,152,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,1,0,19,1440.000000,152,0,3370.000320,615.910416,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,152,0,-1.000000,700.801040,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,698,1500.000000,152,1,42135.000320,626.000416,hint,nbiot,60 +on7,0,0,24,0,0,1412,1440.000000,152,0,-1.000000,595.500000,hint,nbiot,60 +on11,0,0,24,0,0,1436,1440.000000,152,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,144,1500.000000,153,1,12166.000320,677.219584,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,153,0,-1.000000,895.933536,hint,nbiot,60 +on11,0,0,27,1,0,320,1620.000000,153,4,19901.000320,692.394792,hint,nbiot,60 +on6,0,0,24,1,0,136,1440.000000,153,0,8023.000320,622.020000,hint,nbiot,60 +on4,0,0,30,1,0,454,1800.000000,153,8,24904.000320,876.973752,hint,nbiot,60 +on10,0,0,25,1,0,46,1500.000000,153,2,6121.000320,635.100208,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,15,1440.000000,153,0,449.000320,637.360208,hint,nbiot,60 +on3,0,0,24,0,0,1420,1440.000000,153,0,-1.000000,589.650000,hint,nbiot,60 +on7,0,0,25,1,0,955,1500.000000,153,1,55414.000320,626.000208,hint,nbiot,60 +on1,0,0,25,1,0,1097,1500.000000,153,2,70120.000320,644.200208,hint,nbiot,60 +on2,0,0,25,1,0,231,1500.000000,153,1,16406.000640,630.550208,hint,nbiot,60 +on9,0,0,24,1,0,1031,1440.000000,153,0,62321.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1420,1440.000000,154,0,-1.000000,589.650000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,154,0,-1.000000,743.702288,hint,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,154,0,710.000320,602.000624,hint,nbiot,60 +on5,0,0,24,0,0,1409,1440.000000,154,0,-1.000000,654.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1418,1440.000000,154,0,-1.000000,590.950000,hint,nbiot,60 +on4,0,0,24,0,0,1420,1440.000000,154,0,-1.000000,589.650000,hint,nbiot,60 +on7,0,0,25,1,0,240,1500.000000,154,1,15283.600640,626.195624,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,840,1500.000000,154,2,55236.000320,677.609584,hint,nbiot,60 +on2,0,0,25,1,0,840,1500.000000,154,1,53607.600640,626.195624,hint,nbiot,60 +on12,0,0,24,0,0,1430,1440.000000,155,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1416,1440.000000,155,0,-1.000000,592.900000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,155,0,-1.000000,718.351040,hint,nbiot,60 +on10,0,0,25,1,0,1108,1500.000000,155,2,66862.000320,632.500000,hint,nbiot,60 +on1,0,0,24,1,0,1120,1440.000000,155,0,69258.000320,651.400208,hint,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,155,0,55990.000320,602.000208,hint,nbiot,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,1025,1440.000000,155,0,63742.000320,602.000208,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,156,0,-1.000000,690.660624,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1427,1440.000000,156,0,-1.000000,585.100000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,838,1500.000000,156,1,53744.000320,644.850416,hint,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,156,0,7776.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1422,1440.000000,156,0,-1.000000,624.750000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1407,1440.000000,156,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,1084,1440.000000,157,0,68284.000320,611.750000,hint,nbiot,60 +on4,0,0,26,1,0,738,1560.000000,157,2,44200.000320,700.310000,hint,nbiot,60 +on6,0,0,26,1,0,890,1560.000000,157,2,52125.000320,676.194584,hint,nbiot,60 +on1,0,0,27,1,0,1039,1628.000000,157,4,63218.000320,754.094376,hint,nbiot,60 +on8,0,0,25,1,0,997,1558.000000,157,2,59622.000320,700.355000,hint,nbiot,60 +on3,0,0,31,1,0,1244,1860.000000,157,9,71655.000320,907.993752,hint,nbiot,60 +on7,0,0,25,1,0,820,1500.000000,157,1,50338.000320,638.350000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,29,1,0,950,1740.000000,157,6,55255.000320,791.939168,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,157,0,-1.000000,932.331872,hint,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,157,0,-1.000000,587.050000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,617,1440.000000,157,0,42779.000320,675.709792,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1411,1440.000000,158,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1430,1440.000000,158,0,-1.000000,583.150000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1439,1440.000000,158,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,1,0,908,1440.000000,158,0,55904.000320,602.000416,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,158,0,-1.000000,629.950416,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,30,1,0,801,1800.000000,159,6,45249.000320,829.133128,hint,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,159,0,7553.000320,651.660416,hint,nbiot,60 +on11,0,0,25,1,0,144,1500.000000,159,1,11515.000320,640.950208,hint,nbiot,60 +on12,0,0,28,1,0,552,1680.000000,159,4,35060.000320,779.119376,hint,nbiot,60 +on5,0,0,29,1,0,437,1740.000000,159,7,26395.000320,845.304376,hint,nbiot,60 +on0,1,11,24,0,0,0,1440.000000,159,0,-1.000000,969.642080,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,26,1,0,512,1560.000000,159,2,31308.000320,662.350208,hint,nbiot,60 +on2,0,0,30,1,0,751,1800.000000,159,6,41985.000320,864.493544,hint,nbiot,60 +on4,0,0,30,1,0,661,1800.000000,159,7,38303.000320,859.293128,hint,nbiot,60 +on10,0,0,25,1,0,218,1500.000000,159,1,15705.000320,669.160208,hint,nbiot,60 +on6,0,0,25,1,0,289,1500.000000,159,1,20750.000640,675.399792,hint,nbiot,60 +on8,0,0,25,1,0,414,1500.000000,159,1,24691.000320,637.700000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,1021,1440.000000,160,0,67857.000320,680.000208,hint,nbiot,60 +on8,0,0,25,1,0,678,1500.000000,160,2,43391.000320,691.650000,hint,nbiot,60 +on5,0,0,25,1,0,587,1500.000000,160,1,35727.000320,626.000416,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,420,1500.000000,160,1,26442.600640,658.955000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,160,0,-1.000000,881.631872,hint,nbiot,60 +on2,0,0,24,0,0,1364,1440.000000,160,0,-1.000000,641.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,618,1440.000000,160,0,37485.000320,602.259792,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,27,1,0,668,1620.000000,160,4,41421.000320,711.114168,hint,nbiot,60 +on1,0,0,25,1,0,455,1500.000000,160,1,29072.000320,678.974792,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,458,1500.000000,161,1,28504.000320,637.960000,hint,nbiot,60 +on3,0,0,25,1,0,360,1500.000000,161,1,22217.600640,666.755416,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1418,1440.000000,161,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1429,1440.000000,161,0,-1.000000,583.800000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,455,1500.000000,161,1,30308.000320,638.154792,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,161,0,-1.000000,714.711040,hint,nbiot,60 +on11,0,0,24,0,0,1401,1440.000000,161,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,720,1500.000000,162,1,45493.600640,626.195624,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,162,0,-1.000000,861.354576,hint,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,162,0,26561.000320,691.310208,hint,nbiot,60 +on8,0,0,24,1,0,556,1440.000000,162,0,34229.000320,604.600208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,1,1500.000000,162,2,4168.000320,683.460000,hint,nbiot,60 +on10,0,0,25,1,0,287,1500.000000,162,1,15105.000320,626.000208,hint,nbiot,60 +on6,0,0,25,1,0,158,1500.000000,162,1,7945.000320,626.000624,hint,nbiot,60 +on5,0,0,24,1,0,8,1440.000000,162,0,3077.000320,639.310416,hint,nbiot,60 +on3,0,0,25,1,0,1042,1500.000000,162,1,64631.000320,646.800208,hint,nbiot,60 +on1,0,0,24,1,0,1155,1440.000000,162,0,71283.000320,604.600208,hint,nbiot,60 +on4,0,0,24,0,0,1439,1440.000000,162,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,26,1,0,176,1560.000000,162,3,12809.000320,708.500416,hint,nbiot,60 +on4,0,0,24,0,0,1398,1440.000000,163,0,-1.000000,654.000000,hint,nbiot,60 +on10,0,0,25,1,0,1205,1500.000000,163,1,75208.000320,650.959792,hint,nbiot,60 +on2,0,0,27,1,0,1280,1620.000000,163,3,75890.000640,772.280000,hint,nbiot,60 +on3,0,0,27,1,0,1252,1620.000000,163,4,79311.000320,847.289168,hint,nbiot,60 +on7,0,0,24,0,0,1432,1440.000000,163,0,-1.000000,616.300000,hint,nbiot,60 +on1,0,0,25,0,0,1486,1500.000000,163,1,-1.000000,600.000000,hint,nbiot,60 +on8,0,0,25,0,0,1463,1500.000000,163,1,-1.000000,621.710000,hint,nbiot,60 +on9,0,0,25,0,0,1409,1500.000000,163,1,-1.000000,643.160000,hint,nbiot,60 +on12,0,0,25,0,0,1372,1500.000000,163,1,-1.000000,665.910000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,163,0,-1.000000,876.820416,hint,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,163,0,-1.000000,611.750000,hint,nbiot,60 +on6,0,0,25,0,0,1476,1500.000000,163,1,-1.000000,639.000000,hint,nbiot,60 +on11,0,0,25,1,0,1347,1500.000000,163,1,85373.000000,665.000000,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,1,0,900,1440.000000,164,0,55715.000320,602.000208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,27,1,0,471,1620.000000,164,4,28774.000320,706.304584,hint,nbiot,60 +on3,0,0,24,0,0,1359,1440.000000,164,0,-1.000000,630.600000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,164,0,-1.000000,862.782288,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,271,1500.000000,164,1,19446.000320,667.015208,hint,nbiot,60 +on9,0,0,25,1,0,396,1500.000000,164,1,23663.000320,650.959792,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,720,1440.000000,164,0,45078.000320,602.000416,hint,nbiot,60 +on6,0,0,27,1,0,527,1620.000000,164,4,29417.000320,743.420000,hint,nbiot,60 +on8,0,0,24,1,0,60,1440.000000,164,0,5466.000320,602.000416,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1413,1440.000000,165,0,-1.000000,594.200000,hint,nbiot,60 +on6,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 +on1,0,0,25,1,0,517,1500.000000,165,1,32607.000320,627.950208,hint,nbiot,60 +on5,0,0,24,1,0,748,1440.000000,165,0,48234.000320,626.050208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,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,1418,1440.000000,165,0,-1.000000,590.950000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,165,0,-1.000000,686.760416,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,166,0,36347.000320,602.000208,hint,nbiot,60 +on6,0,0,26,1,0,1114,1560.000000,166,2,70778.000320,727.999792,hint,nbiot,60 +on10,0,0,24,1,0,977,1440.000000,166,0,61099.000320,639.700208,hint,nbiot,60 +on11,0,0,24,0,0,1421,1440.000000,166,0,-1.000000,613.699584,hint,nbiot,60 +on5,0,0,25,1,0,1036,1500.000000,166,1,63510.000320,658.500000,hint,nbiot,60 +on12,0,0,24,1,0,791,1440.000000,166,0,49350.000320,602.000416,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,28,1,0,1219,1680.000000,166,6,72471.000320,831.509376,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,166,0,-1.000000,857.061664,hint,nbiot,60 +on9,0,0,26,1,0,1115,1560.000000,166,2,64959.000320,664.299792,hint,nbiot,60 +on7,0,0,24,0,0,1413,1440.000000,166,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,166,0,-1.000000,600.050000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,1270,1440.000000,167,0,76585.000320,602.000208,hint,nbiot,60 +on5,0,0,24,0,0,1408,1440.000000,167,0,-1.000000,597.450000,hint,nbiot,60 +on3,0,0,24,0,0,1415,1440.000000,167,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1433,1440.000000,167,0,-1.000000,620.200000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,167,0,-1.000000,698.200624,hint,nbiot,60 +on1,0,0,24,1,0,607,1440.000000,167,0,39352.000320,602.000208,hint,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,167,0,70569.000320,602.000208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,168,0,-1.000000,772.171872,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,218,1500.000000,168,1,13075.000320,639.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1422,1440.000000,168,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,25,1,0,1040,1500.000000,168,1,64967.000320,682.160416,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,1116,1500.000000,168,1,68722.000320,639.650208,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,1169,1440.000000,168,0,74864.000320,661.150208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,108,1526.000000,168,2,8513.600640,667.405832,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1438,1440.000000,169,0,-1.000000,577.950000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,169,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1398,1440.000000,169,0,-1.000000,625.400000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1429,1440.000000,169,0,-1.000000,583.800000,hint,nbiot,60 +on6,0,0,24,0,0,1422,1440.000000,169,0,-1.000000,588.350000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,169,0,-1.000000,672.200624,hint,nbiot,60 +on9,0,0,24,1,0,379,1440.000000,169,0,25173.000320,602.000624,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1402,1440.000000,170,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,138,1500.000000,170,1,11430.000320,641.405208,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,170,0,-1.000000,707.170624,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 +on1,0,0,25,1,0,634,1500.000000,170,1,40052.000320,630.550208,hint,nbiot,60 +on3,0,0,24,0,0,1428,1440.000000,170,0,-1.000000,584.450000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,120,1440.000000,170,0,8552.000320,611.360208,hint,nbiot,60 +on9,0,0,24,0,0,1430,1440.000000,171,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,25,1,0,492,1500.000000,171,1,30477.000320,631.395208,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1415,1440.000000,171,0,-1.000000,592.900000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,171,0,-1.000000,778.021040,hint,nbiot,60 +on6,0,0,24,0,0,1424,1440.000000,171,0,-1.000000,587.050000,hint,nbiot,60 +on2,0,0,25,1,0,200,1500.000000,171,1,16426.000320,645.500208,hint,nbiot,60 +on7,0,0,24,1,0,931,1440.000000,171,0,58062.000320,636.450208,hint,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,171,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,26,1,0,558,1560.000000,171,3,33856.000320,663.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,0,0,1434,1500.000000,172,1,-1.000000,630.745000,hint,nbiot,60 +on10,0,0,25,1,0,1378,1500.000000,172,1,83637.000000,645.695000,hint,nbiot,60 +on8,0,0,25,0,0,1464,1500.000000,172,1,-1.000000,610.595000,hint,nbiot,60 +on7,0,0,25,0,0,1478,1500.000000,172,1,-1.000000,600.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,172,0,-1.000000,732.910208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,1140,1440.000000,172,0,69833.000320,602.000208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1408,1440.000000,172,0,-1.000000,597.450000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1402,1440.000000,172,0,-1.000000,601.350000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,173,0,-1.000000,745.000416,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,1051,1440.000000,173,0,65702.000320,621.500208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1422,1440.000000,173,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1399,1440.000000,173,0,-1.000000,636.450000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1421,1440.000000,173,0,-1.000000,589.000000,hint,nbiot,60 +on4,0,0,24,0,0,1412,1440.000000,173,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,750,1440.000000,173,0,47576.000320,641.000208,hint,nbiot,60 +on3,0,0,24,0,0,1422,1440.000000,174,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1427,1440.000000,174,0,-1.000000,615.000000,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,240,1440.000000,174,0,14663.000320,602.000416,hint,nbiot,60 +on7,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,1440,1440.000000,174,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1408,1440.000000,174,0,-1.000000,597.450000,hint,nbiot,60 +on1,0,0,25,1,0,1320,1500.000000,174,1,82732.600640,626.195416,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,174,0,-1.000000,694.300832,hint,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,174,0,-1.000000,626.700000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,175,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,796,1500.000000,175,1,50144.000320,626.000208,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,175,0,-1.000000,825.212704,hint,nbiot,60 +on11,0,0,26,1,0,1219,1560.000000,175,3,76620.000320,739.700000,hint,nbiot,60 +on2,0,0,25,1,0,0,1500.000000,175,1,2684.600640,635.296040,hint,nbiot,60 +on9,0,0,25,1,0,689,1500.000000,175,1,44614.000320,662.010208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,914,1440.000000,175,0,59134.000320,663.750208,hint,nbiot,60 +on8,0,0,25,1,0,787,1500.000000,175,2,51624.000320,698.800000,hint,nbiot,60 +on7,0,0,25,1,0,1178,1500.000000,175,1,73568.000320,626.845208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1430,1440.000000,176,0,-1.000000,583.150000,hint,nbiot,60 +on12,0,0,25,1,0,1381,1500.000000,176,1,84079.000000,642.250000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,176,0,-1.000000,720.821248,hint,nbiot,60 +on4,0,0,24,0,0,1429,1440.000000,176,0,-1.000000,583.800000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,727,1500.000000,176,1,45895.000320,636.400208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,200,1500.000000,176,2,13938.000320,650.700000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,133,1440.000000,176,0,7633.000320,602.000416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1406,1440.000000,177,0,-1.000000,598.750000,hint,nbiot,60 +on2,0,0,24,1,0,191,1440.000000,177,0,12436.000320,613.960208,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,278,1500.000000,177,1,16798.000320,626.000208,hint,nbiot,60 +on3,0,0,25,1,0,264,1500.000000,177,2,18698.000320,649.400000,hint,nbiot,60 +on10,0,0,24,0,0,1431,1440.000000,177,0,-1.000000,582.500000,hint,nbiot,60 +on6,0,0,24,0,0,1422,1440.000000,177,0,-1.000000,588.350000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,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,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,177,0,-1.000000,695.600832,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,178,0,-1.000000,710.551040,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,178,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,25,1,0,192,1500.000000,178,2,14307.000320,642.900000,hint,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,178,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,300,1440.000000,178,0,20856.000320,602.000416,hint,nbiot,60 +on9,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 +on3,0,0,24,1,0,124,1440.000000,178,0,9836.000320,602.000208,hint,nbiot,60 +on12,0,0,24,0,0,1409,1440.000000,178,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1383,1440.000000,179,0,-1.000000,614.350000,hint,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,179,0,35382.000320,602.000208,hint,nbiot,60 +on10,0,0,26,1,0,1139,1560.000000,179,3,66900.000320,663.000000,hint,nbiot,60 +on4,0,0,25,1,0,1135,1500.000000,179,1,71922.600640,665.195624,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,179,0,-1.000000,836.522288,hint,nbiot,60 +on11,0,0,26,1,0,1004,1560.000000,179,3,59156.000320,709.800000,hint,nbiot,60 +on3,0,0,24,0,0,1424,1440.000000,179,0,-1.000000,587.050000,hint,nbiot,60 +on12,0,0,25,1,0,939,1500.000000,179,1,56804.000320,626.000208,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1426,1440.000000,179,0,-1.000000,585.750000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,1077,1500.000000,179,1,62839.000320,626.845208,hint,nbiot,60 +on6,0,0,25,1,0,309,1500.000000,179,1,20837.000320,633.800208,hint,nbiot,60 +on5,0,0,24,1,0,120,1476.000000,180,1,14207.000320,715.004792,hint,nbiot,60 +on10,0,0,25,1,0,36,1546.000000,180,2,4283.600640,721.165832,hint,nbiot,60 +on4,0,0,27,1,0,518,1620.000000,180,4,35500.000320,750.763960,hint,nbiot,60 +on7,0,0,25,1,0,278,1500.000000,180,1,17841.000320,626.000208,hint,nbiot,60 +on12,0,0,25,1,0,1312,1500.000000,180,1,79103.000320,626.000208,hint,nbiot,60 +on6,0,0,25,1,0,369,1500.000000,180,1,24925.000320,671.110416,hint,nbiot,60 +on2,0,0,27,1,0,647,1620.000000,180,3,39302.000320,775.659376,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,475,1500.000000,180,1,28459.000320,669.809584,hint,nbiot,60 +on1,0,0,25,1,0,1185,1500.000000,180,2,75077.000320,696.070208,hint,nbiot,60 +on11,0,0,24,0,0,1412,1440.000000,180,0,-1.000000,594.850000,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,180,0,-1.000000,966.652704,hint,nbiot,60 +on8,0,0,25,1,0,518,1500.000000,180,1,31831.000320,717.910000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,181,0,-1.000000,870.972496,hint,nbiot,60 +on2,0,0,25,1,0,0,1500.000000,181,1,691.600640,646.345416,hint,nbiot,60 +on1,0,0,25,1,0,134,1500.000000,181,2,9324.000320,627.950000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1404,1440.000000,181,0,-1.000000,616.950000,hint,nbiot,60 +on5,0,0,24,1,0,676,1440.000000,181,0,43012.000320,604.600208,hint,nbiot,60 +on3,0,0,25,1,0,985,1500.000000,181,1,60993.000320,638.350208,hint,nbiot,60 +on6,0,0,26,1,0,633,1560.000000,181,2,38001.600640,666.250624,hint,nbiot,60 +on10,0,0,24,1,0,872,1440.000000,181,0,55367.000320,658.160208,hint,nbiot,60 +on4,0,0,24,0,0,1420,1440.000000,181,0,-1.000000,589.650000,hint,nbiot,60 +on7,0,0,24,1,0,60,1440.000000,181,0,5240.000320,615.000000,hint,nbiot,60 +on8,0,0,24,1,0,1264,1440.000000,181,0,75839.000320,624.750208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,1290,1560.000000,182,2,78465.000320,702.000000,hint,nbiot,60 +on10,0,0,27,1,0,1349,1620.000000,182,4,81800.000320,816.089584,hint,nbiot,60 +on1,0,0,25,1,0,1418,1500.000000,182,1,83742.000000,626.000000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,182,0,-1.000000,865.771248,hint,nbiot,60 +on6,0,0,25,1,0,1234,1500.000000,182,1,73381.000320,676.959792,hint,nbiot,60 +on4,0,0,25,1,0,201,1500.000000,182,1,17307.000320,649.010208,hint,nbiot,60 +on3,0,0,24,0,0,1431,1440.000000,182,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,1145,1440.000000,182,0,68835.000320,637.620208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1420,1440.000000,182,0,-1.000000,589.650000,hint,nbiot,60 +on9,0,0,24,1,0,309,1440.000000,182,1,19511.400320,602.000208,hint,nbiot,60 +on4,0,0,25,1,0,590,1500.000000,183,1,35378.000320,626.000208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,183,0,-1.000000,674.151248,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1419,1440.000000,183,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,1,0,186,1440.000000,183,0,13776.000320,602.000208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,420,1500.000000,183,1,26080.600640,663.505832,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1432,1440.000000,183,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,26,1,0,954,1560.000000,184,3,57854.000320,679.900000,hint,nbiot,60 +on2,0,0,25,1,0,954,1500.000000,184,1,55292.000320,626.000208,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1429,1440.000000,184,0,-1.000000,583.800000,hint,nbiot,60 +on12,0,0,24,0,0,1422,1440.000000,184,0,-1.000000,588.350000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1421,1440.000000,184,0,-1.000000,625.400000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1430,1440.000000,184,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1414,1440.000000,184,0,-1.000000,593.550000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,184,0,-1.000000,702.360624,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,185,0,11659.000320,602.000416,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,185,0,-1.000000,601.350000,hint,nbiot,60 +on10,0,0,24,0,0,1411,1440.000000,185,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1426,1440.000000,185,0,-1.000000,585.750000,hint,nbiot,60 +on12,0,0,24,1,0,1382,1440.000000,185,0,85320.000000,602.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,185,0,-1.000000,711.200416,hint,nbiot,60 +on1,0,0,24,0,0,1410,1440.000000,185,0,-1.000000,596.150000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1428,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,1,0,60,1440.000000,186,0,5332.000320,602.000416,hint,nbiot,60 +on0,1,12,24,0,0,0,1440.000000,186,0,-1.000000,1020.083120,hint,nbiot,60 +on4,0,0,24,1,0,854,1440.000000,186,0,53831.000320,612.010208,hint,nbiot,60 +on6,0,0,25,1,0,938,1500.000000,186,1,57129.000320,639.000000,hint,nbiot,60 +on8,0,0,25,1,0,741,1500.000000,186,2,49248.000320,690.350000,hint,nbiot,60 +on9,0,0,27,1,0,536,1620.000000,186,3,32792.000320,724.894584,hint,nbiot,60 +on11,0,0,29,1,0,777,1762.000000,186,7,46616.000320,841.558752,hint,nbiot,60 +on2,0,0,26,1,0,602,1560.000000,186,2,39389.000320,724.295000,hint,nbiot,60 +on5,0,0,27,1,0,483,1620.000000,186,4,27437.000320,698.959584,hint,nbiot,60 +on7,0,0,26,1,0,313,1560.000000,186,3,24036.000320,709.800000,hint,nbiot,60 +on3,0,0,24,1,0,243,1440.000000,186,0,16294.000320,639.310208,hint,nbiot,60 +on1,0,0,27,1,0,658,1620.000000,186,3,40037.000320,725.349584,hint,nbiot,60 +on10,0,0,25,1,0,184,1500.000000,186,1,14091.000320,639.000208,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,13,1440.000000,187,0,1180.000320,602.000208,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,187,0,-1.000000,758.001872,hint,nbiot,60 +on11,0,0,24,1,0,782,1440.000000,187,0,49269.000320,602.000208,hint,nbiot,60 +on4,0,0,24,0,0,1426,1440.000000,187,0,-1.000000,585.750000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,1322,1440.000000,187,0,80853.000320,602.000208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,883,1440.000000,187,0,56291.000320,618.250208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,1299,1500.000000,187,1,77833.000320,626.000208,hint,nbiot,60 +on8,0,0,24,1,0,259,1440.000000,187,0,17699.000320,617.860832,hint,nbiot,60 +on7,0,0,24,0,0,1423,1440.000000,188,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,501,1500.000000,188,2,32576.000320,651.350000,hint,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,188,0,8265.000320,602.000416,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,188,0,-1.000000,812.602080,hint,nbiot,60 +on3,0,0,24,1,0,1380,1440.000000,188,0,84087.000000,602.000000,hint,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,188,0,25412.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1409,1440.000000,188,0,-1.000000,596.800000,hint,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,188,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,209,1440.000000,188,0,16535.000320,627.350624,hint,nbiot,60 +on10,0,0,25,1,0,478,1500.000000,188,2,30181.000320,661.750000,hint,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,189,0,31778.000320,602.000208,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,189,0,-1.000000,785.820832,hint,nbiot,60 +on7,0,0,24,0,0,1409,1440.000000,189,0,-1.000000,596.800000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,1249,1529.000000,189,2,76306.000320,682.255208,hint,nbiot,60 +on3,0,0,24,0,0,1410,1440.000000,189,0,-1.000000,628.000000,hint,nbiot,60 +on11,0,0,25,1,0,302,1500.000000,189,1,20816.000320,646.150208,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on2,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 +on10,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1147,1440.000000,189,0,69365.000320,631.510208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,190,0,-1.000000,680.650832,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1383,1440.000000,190,0,-1.000000,633.850000,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,1,0,398,1481.000000,190,1,27923.000320,618.400208,hint,nbiot,60 +on7,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 +on9,0,0,24,0,0,1439,1440.000000,190,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,300,1500.000000,190,1,18693.600640,634.255624,hint,nbiot,60 +on2,0,0,24,0,0,1421,1440.000000,190,0,-1.000000,589.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,191,0,-1.000000,675.451248,hint,nbiot,60 +on3,0,0,24,1,0,364,1440.000000,191,0,23625.000320,602.000208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,191,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,25,1,0,180,1500.000000,191,1,11700.600640,626.195624,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1439,1440.000000,191,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,1,0,780,1440.000000,191,0,47564.000320,602.000416,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,73,1440.000000,192,0,3773.000320,602.000208,hint,nbiot,60 +on12,0,0,24,1,0,869,1478.000000,192,1,54628.000320,627.600208,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,192,0,-1.000000,664.010624,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.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,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,316,1440.000000,192,0,19066.000320,602.000208,hint,nbiot,60 +on1,0,0,25,1,0,403,1500.000000,193,2,28070.000320,661.750000,hint,nbiot,60 +on2,0,0,25,1,0,180,1500.000000,193,1,13046.600640,626.195624,hint,nbiot,60 +on8,0,0,25,1,0,916,1500.000000,193,1,55817.000320,626.000208,hint,nbiot,60 +on7,0,0,25,1,0,398,1500.000000,193,1,22622.000320,629.250208,hint,nbiot,60 +on3,0,0,24,1,0,17,1440.000000,193,0,1851.000320,602.000208,hint,nbiot,60 +on11,0,0,25,1,0,720,1500.000000,193,1,46270.600640,671.695624,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,601,1440.000000,193,0,37186.000320,602.000208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,809,1500.000000,193,1,53139.000320,680.665208,hint,nbiot,60 +on10,0,0,24,1,0,309,1440.000000,193,0,19216.000320,608.110208,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,193,0,-1.000000,820.402912,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1435,1440.000000,194,0,-1.000000,579.900000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,194,0,-1.000000,707.560000,hint,nbiot,60 +on8,0,0,24,0,0,1362,1440.000000,194,0,-1.000000,643.600000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,1301,1500.000000,194,1,85458.000000,696.200000,hint,nbiot,60 +on11,0,0,24,0,0,1431,1440.000000,194,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1417,1440.000000,195,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1420,1440.000000,195,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,25,1,0,1130,1500.000000,195,1,70455.000320,660.710416,hint,nbiot,60 +on10,0,0,25,1,0,1298,1500.000000,195,1,78982.000320,663.310208,hint,nbiot,60 +on2,0,0,25,1,0,1379,1500.000000,195,1,80739.000320,626.000208,hint,nbiot,60 +on5,0,0,24,1,0,890,1440.000000,195,0,55219.000320,611.100416,hint,nbiot,60 +on4,0,0,24,1,0,1366,1440.000000,195,0,84744.000000,641.000000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,195,0,-1.000000,819.751456,hint,nbiot,60 +on3,0,0,24,0,0,1435,1440.000000,195,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,819,1440.000000,195,0,51653.000320,641.000208,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1394,1440.000000,196,0,-1.000000,634.500000,hint,nbiot,60 +on4,0,0,24,0,0,1436,1440.000000,196,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,196,0,-1.000000,748.900208,hint,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,196,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,1,0,191,1440.000000,196,0,12481.000320,602.000208,hint,nbiot,60 +on9,0,0,24,0,0,1408,1440.000000,196,0,-1.000000,597.450000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1410,1440.000000,196,0,-1.000000,596.150000,hint,nbiot,60 +on5,0,0,24,0,0,1420,1440.000000,196,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1385,1440.000000,196,0,-1.000000,628.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,197,0,-1.000000,756.960832,hint,nbiot,60 +on6,0,0,24,0,0,1410,1440.000000,197,0,-1.000000,596.150000,hint,nbiot,60 +on9,0,0,24,1,0,1082,1440.000000,197,0,68005.000320,602.000208,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1367,1440.000000,197,0,-1.000000,638.400000,hint,nbiot,60 +on1,0,0,26,1,0,1275,1560.000000,197,3,75091.000320,664.754584,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1439,1440.000000,197,0,-1.000000,577.300000,hint,nbiot,60 +on2,0,0,26,1,0,1110,1560.000000,197,3,70731.000640,727.545000,hint,nbiot,60 +on7,0,0,24,0,0,1424,1440.000000,197,0,-1.000000,587.050000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,1227,1500.000000,198,1,75193.000320,666.950208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.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,0,0,1409,1440.000000,198,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,25,1,0,1118,1500.000000,198,2,70587.000320,652.260000,hint,nbiot,60 +on11,0,0,24,0,0,1425,1440.000000,198,0,-1.000000,586.400000,hint,nbiot,60 +on10,0,0,24,1,0,1098,1440.000000,198,0,68096.000320,602.000208,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,198,0,-1.000000,699.500832,hint,nbiot,60 +on4,0,0,24,0,0,1432,1440.000000,198,0,-1.000000,581.850000,hint,nbiot,60 +on5,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 +on0,1,9,24,0,0,0,1440.000000,199,0,-1.000000,1002.792704,hint,nbiot,60 +on9,0,0,26,1,0,1082,1560.000000,199,2,65682.000320,661.959792,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,65,1500.000000,199,1,3831.600640,626.195832,hint,nbiot,60 +on5,0,0,25,1,0,503,1500.000000,199,1,34142.000320,648.750208,hint,nbiot,60 +on8,0,0,28,1,0,917,1680.000000,199,5,54986.000320,807.459584,hint,nbiot,60 +on3,0,0,25,1,0,613,1500.000000,199,1,41537.000320,729.805000,hint,nbiot,60 +on11,0,0,25,1,0,780,1500.000000,199,1,44577.000320,637.959792,hint,nbiot,60 +on2,0,0,27,1,0,966,1620.000000,199,4,61250.000320,834.809792,hint,nbiot,60 +on1,0,0,27,1,0,910,1620.000000,199,3,53915.000320,707.995000,hint,nbiot,60 +on6,0,0,24,0,0,1350,1440.000000,199,0,-1.000000,636.450000,hint,nbiot,60 +on4,0,0,24,1,0,123,1440.000000,199,0,10304.000320,613.050000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.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,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,200,0,-1.000000,692.350624,hint,nbiot,60 +on7,0,0,24,1,0,1357,1440.000000,200,0,83932.000000,641.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,1141,1440.000000,200,0,69139.000320,602.000208,hint,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,200,0,18280.000320,602.000416,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1407,1440.000000,200,0,-1.000000,598.750000,hint,nbiot,60 +on3,0,0,24,1,0,695,1455.000000,1,0,41841.000000,608.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1442.000000,1,0,-1.000000,732.800000,extended,nbiot,60 +on8,0,0,24,1,0,258,1440.000000,1,0,17694.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,932,1452.000000,1,0,57349.000000,606.800000,extended,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,1,0,67118.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,600,1440.000000,1,0,37476.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1153,1440.000000,1,0,71453.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,2,0,39851.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1474.000000,2,0,-1.000000,719.600000,extended,nbiot,60 +on1,0,0,24,1,0,600,1440.000000,2,0,38607.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,12,1440.000000,2,0,3115.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1366,1466.000000,2,0,80625.000000,612.400000,extended,nbiot,60 +on2,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,2,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,255,1440.000000,2,0,17907.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,1020,1440.000000,3,0,64495.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,456,1456.000000,3,0,25921.000000,608.400000,extended,nbiot,60 +on0,1,6,24,0,0,0,1475.000000,3,0,-1.000000,746.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1140,1440.000000,3,0,70133.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1260,1440.000000,3,0,75762.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,1254,1474.000000,3,0,75083.000000,615.600000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,3,0,19042.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,240,1440.000000,4,0,16257.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,4,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 +on10,0,0,24,1,0,435,1440.000000,4,0,28510.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,1391,1440.000000,4,0,84027.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1476.000000,4,0,-1.000000,772.400000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,221,1461.000000,4,0,11777.000000,610.400000,extended,nbiot,60 +on7,0,0,24,1,0,755,1455.000000,4,0,44149.000000,608.000000,extended,nbiot,60 +on2,0,0,24,1,0,1200,1440.000000,4,0,72991.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1260,1440.000000,4,0,76159.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,428,1440.000000,5,0,26578.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,5,0,10062.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,786,1440.000000,5,0,50002.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,255,1440.000000,5,0,16969.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,787,1440.000000,5,0,50042.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1480.000000,5,0,-1.000000,748.000000,extended,nbiot,60 +on10,0,0,24,1,0,157,1457.000000,5,0,10102.000000,608.800000,extended,nbiot,60 +on2,0,0,24,1,0,360,1440.000000,6,0,22689.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,420,1440.000000,6,0,27734.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,114,1474.000000,6,0,4695.000000,615.600000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on9,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 +on12,0,0,24,1,0,698,1458.000000,6,0,40104.000000,609.200000,extended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,6,0,38004.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,266,1446.000000,6,0,14541.000000,604.400000,extended,nbiot,60 +on0,1,7,24,0,0,0,1495.000000,6,0,-1.000000,780.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,212,1452.000000,6,0,14236.000000,606.800000,extended,nbiot,60 +on5,0,0,24,1,0,0,1440.000000,7,0,426.000000,602.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1502.000000,7,0,-1.000000,704.800000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,7,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 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,252,1440.000000,7,0,14483.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,420,1440.000000,7,0,27916.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,7,0,18546.000000,602.000000,extended,nbiot,60 +on10,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,8,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,984,1444.000000,8,0,60269.000000,603.600000,extended,nbiot,60 +on8,0,0,24,1,0,780,1440.000000,8,0,49445.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1466.000000,8,0,-1.000000,742.400000,extended,nbiot,60 +on9,0,0,24,1,0,1380,1440.000000,8,0,83609.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,600,1440.000000,8,0,37231.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,8,0,34011.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,35,1455.000000,8,0,560.000000,608.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,622,1442.000000,9,0,37342.000000,602.800000,extended,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,9,0,29075.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,9,0,13167.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,616,1440.000000,9,0,37382.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,197,1440.000000,9,0,13207.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1494.000000,9,0,-1.000000,727.600000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on7,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 +on6,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1460.000000,10,0,-1.000000,714.000000,extended,nbiot,60 +on8,0,0,24,1,0,583,1463.000000,10,0,34488.000000,611.200000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,150,1450.000000,10,0,8529.000000,606.000000,extended,nbiot,60 +on1,0,0,24,1,0,363,1440.000000,10,0,21945.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,243,1440.000000,10,0,16549.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,248,1440.000000,10,0,16509.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,11,0,65483.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1450.000000,11,0,-1.000000,736.000000,extended,nbiot,60 +on4,0,0,24,1,0,65,1440.000000,11,0,4752.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,661,1440.000000,11,0,41751.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,120,1440.000000,11,0,8993.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,397,1457.000000,11,0,21823.000000,608.800000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,577,1457.000000,11,0,32988.000000,608.800000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,900,1440.000000,12,0,56206.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,373,1440.000000,12,0,24940.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,182,1440.000000,12,0,12520.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,1024,1440.000000,12,0,61393.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,217,1457.000000,12,0,12480.000000,608.800000,extended,nbiot,60 +on7,0,0,24,1,0,320,1440.000000,12,0,21341.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,1080,1440.000000,12,0,64898.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,368,1440.000000,12,0,24900.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,12,0,61353.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,840,1440.000000,12,0,52919.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,120,1440.000000,12,0,8172.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,780,1440.000000,12,0,49892.000000,602.000000,extended,nbiot,60 +on0,1,12,24,0,0,0,1608.000000,12,0,-1.000000,955.200000,extended,nbiot,60 +on11,0,0,24,1,0,911,1440.000000,13,0,57015.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,120,1440.000000,13,0,9894.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,819,1459.000000,13,0,47478.000000,609.600000,extended,nbiot,60 +on3,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 +on7,0,0,24,1,0,1140,1440.000000,13,0,68571.000000,602.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1514.000000,13,0,-1.000000,813.600000,extended,nbiot,60 +on4,0,0,24,1,0,1380,1440.000000,13,0,84912.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,545,1440.000000,13,0,33979.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,13,0,1349.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,1020,1440.000000,13,0,64400.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,840,1440.000000,14,0,52074.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,14,0,44176.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,130,1440.000000,14,0,9468.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,917,1440.000000,14,0,54710.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,1393,1440.000000,14,0,83507.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1480.000000,14,0,-1.000000,826.000000,extended,nbiot,60 +on11,0,0,24,1,0,1012,1472.000000,14,0,59274.000000,614.800000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,17,1440.000000,14,0,1245.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,198,1440.000000,14,0,12275.000000,602.000000,extended,nbiot,60 +on9,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 +on4,0,0,24,1,0,35,1455.000000,14,0,1285.000000,608.000000,extended,nbiot,60 +on8,0,0,24,1,0,910,1440.000000,15,0,57019.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1493.000000,15,0,-1.000000,831.200000,extended,nbiot,60 +on9,0,0,24,1,0,1380,1440.000000,15,0,84439.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,140,1440.000000,15,0,10573.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,779,1479.000000,15,0,46052.000000,617.600000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,15,0,35405.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,892,1472.000000,15,0,52670.000000,614.800000,extended,nbiot,60 +on5,0,0,24,1,0,155,1455.000000,15,0,10533.000000,608.000000,extended,nbiot,60 +on10,0,0,24,1,0,983,1443.000000,15,0,58047.000000,603.200000,extended,nbiot,60 +on1,0,0,24,1,0,116,1476.000000,15,0,5891.000000,616.400000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,620,1440.000000,16,0,36499.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,900,1440.000000,16,0,55118.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1465.000000,16,0,-1.000000,664.000000,extended,nbiot,60 +on6,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 +on8,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 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,16,0,5369.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1476.000000,17,0,-1.000000,746.400000,extended,nbiot,60 +on5,0,0,24,1,0,1336,1440.000000,17,0,82286.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,834,1474.000000,17,0,49710.000000,615.600000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1169,1449.000000,17,0,70999.000000,605.600000,extended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,17,0,53397.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,89,1449.000000,17,0,5254.000000,605.600000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1260,1440.000000,17,0,77499.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1200,1440.000000,18,0,73166.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,414,1474.000000,18,0,22122.000000,615.600000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1521.000000,18,0,-1.000000,816.400000,extended,nbiot,60 +on1,0,0,24,1,0,1380,1440.000000,18,0,84817.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,615,1440.000000,18,0,39193.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,18,0,20074.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,1268,1440.000000,18,0,76521.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,18,0,12405.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,486,1440.000000,18,0,29459.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,255,1440.000000,19,0,16458.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,19,0,13077.000000,602.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1449.000000,19,0,-1.000000,683.600000,extended,nbiot,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1016,1476.000000,19,0,58734.000000,616.400000,extended,nbiot,60 +on8,0,0,24,1,0,420,1440.000000,19,0,26978.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,835,1475.000000,20,0,49016.000000,616.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,600,1440.000000,20,0,38132.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1442.000000,20,0,-1.000000,732.800000,extended,nbiot,60 +on9,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 +on8,0,0,24,1,0,332,1452.000000,20,0,20704.000000,606.800000,extended,nbiot,60 +on1,0,0,24,1,0,74,1440.000000,20,0,5884.000000,602.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,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,20,0,55627.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1188,1468.000000,20,0,69517.000000,613.200000,extended,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,21,0,472.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1490.000000,21,0,-1.000000,752.000000,extended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,21,0,84449.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,105,1465.000000,21,0,5421.000000,612.000000,extended,nbiot,60 +on12,0,0,24,1,0,220,1460.000000,21,0,12836.000000,610.000000,extended,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,21,0,61570.000000,602.000000,extended,nbiot,60 +on6,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 +on3,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,960,1440.000000,21,0,59642.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,835,1475.000000,22,0,49799.000000,616.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,22,0,26330.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,60,1440.000000,22,0,6100.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,540,1440.000000,22,0,34129.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1514.000000,22,0,-1.000000,839.600000,extended,nbiot,60 +on9,0,0,24,1,0,770,1470.000000,22,0,43603.000000,614.000000,extended,nbiot,60 +on5,0,0,24,1,0,1005,1465.000000,22,0,58276.000000,612.000000,extended,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,22,0,29436.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,22,0,11225.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,29,1449.000000,22,0,1364.000000,605.600000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1259,1479.000000,23,0,72408.000000,617.600000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,23,0,43601.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1329,1440.000000,23,0,81675.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,707,1467.000000,23,0,42397.000000,612.800000,extended,nbiot,60 +on0,1,7,24,0,0,0,1492.000000,23,0,-1.000000,778.800000,extended,nbiot,60 +on1,0,0,24,1,0,139,1440.000000,23,0,10478.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,23,0,10530.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,1353,1453.000000,23,0,81635.000000,607.200000,extended,nbiot,60 +on3,0,0,24,1,0,693,1453.000000,24,0,41789.000000,607.200000,extended,nbiot,60 +on0,1,7,24,0,0,0,1509.000000,24,0,-1.000000,785.600000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,943,1463.000000,24,0,57513.000000,611.200000,extended,nbiot,60 +on5,0,0,24,1,0,599,1479.000000,24,0,35647.000000,617.600000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,300,1440.000000,24,0,20146.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,478,1478.000000,24,0,26241.000000,617.200000,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,584,1464.000000,24,0,35687.000000,611.600000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,960,1440.000000,24,0,60991.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,25,0,17130.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,540,1440.000000,25,0,33048.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,1320,1440.000000,25,0,81233.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,1426,1466.000000,25,0,85248.000000,612.400000,extended,nbiot,60 +on0,1,7,24,0,0,0,1503.000000,25,0,-1.000000,783.200000,extended,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,25,0,1073.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,902,1440.000000,25,0,57487.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,1198,1478.000000,25,0,69344.000000,617.200000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,60,1440.000000,26,0,5815.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,480,1440.000000,26,0,30498.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,477,1477.000000,26,0,28054.000000,616.800000,extended,nbiot,60 +on6,0,0,24,1,0,179,1479.000000,26,0,7385.000000,617.600000,extended,nbiot,60 +on12,0,0,24,1,0,1376,1476.000000,26,0,81365.000000,616.400000,extended,nbiot,60 +on7,0,0,24,1,0,1434,1474.000000,26,0,84811.000000,615.600000,extended,nbiot,60 +on4,0,0,24,1,0,1419,1459.000000,26,0,84851.000000,609.600000,extended,nbiot,60 +on0,1,10,24,0,0,0,1463.000000,26,0,-1.000000,845.200000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1200,1440.000000,26,0,74916.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,226,1466.000000,26,0,13151.000000,612.400000,extended,nbiot,60 +on3,0,0,24,1,0,240,1440.000000,26,0,16811.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1492.000000,27,0,-1.000000,830.800000,extended,nbiot,60 +on2,0,0,24,1,0,480,1440.000000,27,0,31719.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,27,0,27127.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,384,1444.000000,27,0,22269.000000,603.600000,extended,nbiot,60 +on1,0,0,24,1,0,72,1440.000000,27,0,6418.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,1028,1440.000000,27,0,64117.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,965,1440.000000,27,0,58245.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,1142,1440.000000,27,0,68542.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,339,1459.000000,27,0,19168.000000,609.600000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1041,1441.000000,27,0,64157.000000,602.400000,extended,nbiot,60 +on4,0,0,24,1,0,70,1440.000000,28,0,5993.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,171,1471.000000,28,0,9151.000000,614.400000,extended,nbiot,60 +on9,0,0,24,1,0,934,1454.000000,28,0,56204.000000,607.600000,extended,nbiot,60 +on10,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 +on6,0,0,24,1,0,1140,1440.000000,28,0,70067.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,137,1440.000000,28,0,9191.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1525.000000,28,0,-1.000000,792.000000,extended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,28,0,85187.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,180,1440.000000,28,0,12933.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,360,1440.000000,29,0,24460.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1426,1466.000000,29,0,83797.000000,612.400000,extended,nbiot,60 +on0,1,9,24,0,0,0,1450.000000,29,0,-1.000000,814.000000,extended,nbiot,60 +on9,0,0,24,1,0,1140,1440.000000,29,0,71610.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,490,1440.000000,29,0,31149.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,1320,1440.000000,29,0,81196.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,358,1478.000000,29,0,19064.000000,617.200000,extended,nbiot,60 +on3,0,0,24,1,0,1020,1440.000000,29,0,64324.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,840,1440.000000,29,0,53124.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,29,0,28623.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,30,0,-1.000000,602.000000,extended,nbiot,60 +on11,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 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,30,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 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,398,1458.000000,30,0,25147.000000,609.200000,extended,nbiot,60 +on6,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,31,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,31,0,11816.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1463.000000,31,0,-1.000000,663.200000,extended,nbiot,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,720,1440.000000,31,0,44269.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,994,1454.000000,31,0,59269.000000,607.600000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,404,1464.000000,32,0,23839.000000,611.600000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1026,1440.000000,32,0,62231.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,1082,1440.000000,32,0,66156.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,260,1440.000000,32,0,15863.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1402,1442.000000,32,0,84264.000000,602.800000,extended,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,32,0,-1.000000,758.000000,extended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,32,0,37196.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,451,1451.000000,32,0,27207.000000,606.400000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,998,1458.000000,33,0,57772.000000,609.200000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,611,1440.000000,33,0,36724.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,1320,1440.000000,33,0,81614.000000,602.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,33,0,-1.000000,706.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,874,1454.000000,33,0,51244.000000,607.600000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,196,1440.000000,33,0,13082.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,299,1479.000000,34,0,16938.000000,617.600000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1080,1440.000000,34,0,67028.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,693,1453.000000,34,0,40078.000000,607.200000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,34,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 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,360,1440.000000,34,0,24051.000000,602.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1465.000000,34,0,-1.000000,690.000000,extended,nbiot,60 +on3,0,0,24,1,0,780,1440.000000,35,0,50102.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1500.000000,35,0,-1.000000,756.000000,extended,nbiot,60 +on5,0,0,24,1,0,1042,1442.000000,35,0,61770.000000,602.800000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,35,0,30495.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,255,1440.000000,35,0,15202.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1315,1475.000000,35,0,79000.000000,616.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,35,0,4456.000000,602.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,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,90,1450.000000,36,0,6175.000000,606.000000,extended,nbiot,60 +on4,0,0,24,1,0,720,1440.000000,36,0,44463.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,36,0,21312.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1453.000000,36,0,-1.000000,737.200000,extended,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,36,0,2731.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,947,1467.000000,36,0,56758.000000,612.800000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,786,1440.000000,36,0,48215.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1022,1440.000000,37,0,64760.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1575.000000,37,0,-1.000000,864.000000,extended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,37,0,83426.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,240,1440.000000,37,0,14899.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,369,1440.000000,37,0,24195.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,37,0,66554.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,780,1440.000000,37,0,47819.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,1,1440.000000,37,0,2285.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,1107,1447.000000,37,0,66501.000000,604.800000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,720,1440.000000,37,0,45196.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,273,1453.000000,38,0,14829.000000,607.200000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,38,0,6740.000000,602.000000,extended,nbiot,60 +on0,1,2,24,0,0,0,1472.000000,38,0,-1.000000,640.800000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on9,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,39,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1528.000000,39,0,-1.000000,793.200000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,199,1440.000000,39,0,11644.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,576,1456.000000,39,0,35484.000000,608.400000,extended,nbiot,60 +on5,0,0,24,1,0,503,1443.000000,39,0,31288.000000,603.200000,extended,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,39,0,62991.000000,602.000000,extended,nbiot,60 +on9,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 +on11,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,437,1440.000000,39,0,27144.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,39,0,11695.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,900,1440.000000,39,0,54236.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,785,1440.000000,40,0,48089.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,780,1440.000000,40,0,48049.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,507,1447.000000,40,0,31718.000000,604.800000,extended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,40,0,27707.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,96,1456.000000,40,0,3883.000000,608.400000,extended,nbiot,60 +on4,0,0,24,1,0,227,1467.000000,40,0,11137.000000,612.800000,extended,nbiot,60 +on6,0,0,24,1,0,966,1440.000000,40,0,59153.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,134,1440.000000,40,0,7818.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1526.000000,40,0,-1.000000,844.400000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,71,1440.000000,40,0,3843.000000,602.000000,extended,nbiot,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,41,0,11888.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,840,1440.000000,41,0,51417.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1260,1440.000000,41,0,78168.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1504.000000,41,0,-1.000000,757.600000,extended,nbiot,60 +on6,0,0,24,1,0,85,1445.000000,41,0,5547.000000,604.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,360,1440.000000,41,0,22566.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,41,0,69979.000000,602.000000,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 +on2,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1427,1467.000000,42,0,83569.000000,612.800000,extended,nbiot,60 +on8,0,0,24,1,0,480,1440.000000,42,0,31798.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1502.000000,42,0,-1.000000,756.800000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,42,0,19942.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,900,1440.000000,42,0,56769.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,1159,1440.000000,42,0,70834.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,895,1475.000000,42,0,53960.000000,616.000000,extended,nbiot,60 +on5,0,0,24,1,0,420,1440.000000,43,0,28597.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,43,0,12527.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,1030,1440.000000,43,0,63886.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,120,1440.000000,43,0,8222.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1474.000000,43,0,-1.000000,771.600000,extended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,43,0,85744.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,43,0,66480.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,480,1440.000000,43,0,31595.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,44,0,10237.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,975,1440.000000,44,0,60201.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,350,1470.000000,44,0,20587.000000,614.000000,extended,nbiot,60 +on9,0,0,24,1,0,24,1444.000000,44,0,1622.000000,603.600000,extended,nbiot,60 +on0,1,7,24,0,0,0,1481.000000,44,0,-1.000000,774.400000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,44,0,28141.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,642,1462.000000,44,0,37137.000000,610.800000,extended,nbiot,60 +on8,0,0,24,1,0,540,1440.000000,44,0,34154.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,221,1461.000000,45,0,11813.000000,610.400000,extended,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,45,0,11871.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1340,1440.000000,45,0,81274.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,45,0,32839.000000,602.000000,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,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1501.000000,45,0,-1.000000,704.400000,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 +on6,0,0,24,1,0,438,1440.000000,46,0,28238.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1472.000000,46,0,-1.000000,744.800000,extended,nbiot,60 +on9,0,0,24,1,0,780,1440.000000,46,0,48628.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,213,1453.000000,46,0,13416.000000,607.200000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,60,1440.000000,46,0,5753.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,1140,1440.000000,46,0,71840.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,480,1440.000000,46,0,30684.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,225,1465.000000,47,0,13214.000000,612.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,480,1440.000000,47,0,29696.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,662,1440.000000,47,0,39837.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1477.000000,47,0,-1.000000,772.800000,extended,nbiot,60 +on8,0,0,24,1,0,1380,1440.000000,47,0,85135.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,255,1440.000000,47,0,14641.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,47,0,19554.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,673,1440.000000,47,0,39877.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,134,1440.000000,48,0,8805.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,1140,1440.000000,48,0,69170.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,48,0,35840.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1078,1478.000000,48,0,62568.000000,617.200000,extended,nbiot,60 +on12,0,0,24,1,0,840,1440.000000,48,0,52897.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1498.000000,48,0,-1.000000,833.200000,extended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,48,0,85367.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,1080,1440.000000,48,0,65320.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,120,1440.000000,48,0,8765.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,87,1447.000000,48,0,3791.000000,604.800000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,360,1440.000000,49,0,23586.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,148,1448.000000,49,0,9356.000000,605.200000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1452.000000,49,0,-1.000000,684.800000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on5,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 +on9,0,0,24,1,0,60,1440.000000,49,0,5889.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,326,1446.000000,49,0,18399.000000,604.400000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on2,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,50,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,50,0,12494.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,720,1440.000000,50,0,45813.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,540,1440.000000,50,0,33431.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,600,1440.000000,50,0,38260.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1493.000000,50,0,-1.000000,753.200000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1140,1440.000000,50,0,71448.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,575,1455.000000,50,0,33387.000000,608.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,51,0,3925.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,689,1449.000000,51,0,39876.000000,605.600000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,949,1469.000000,51,0,57184.000000,613.600000,extended,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,51,0,1697.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,51,0,13567.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,1020,1440.000000,51,0,62070.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,51,0,13611.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1523.000000,51,0,-1.000000,791.200000,extended,nbiot,60 +on7,0,0,24,1,0,1014,1474.000000,52,0,59411.000000,615.600000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1447.000000,52,0,-1.000000,656.800000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,561,1441.000000,52,0,35903.000000,602.400000,extended,nbiot,60 +on4,0,0,24,1,0,0,1440.000000,52,0,835.000000,602.000000,extended,nbiot,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,960,1440.000000,53,0,58866.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,879,1459.000000,53,0,53465.000000,609.600000,extended,nbiot,60 +on0,1,8,24,0,0,0,1476.000000,53,0,-1.000000,798.400000,extended,nbiot,60 +on4,0,0,24,1,0,1200,1440.000000,53,0,75373.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,1260,1440.000000,53,0,79098.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,53,0,12843.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,240,1440.000000,53,0,14618.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,600,1440.000000,53,0,39491.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,737,1440.000000,53,0,44628.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,54,0,12870.000000,602.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1483.000000,54,0,-1.000000,723.200000,extended,nbiot,60 +on7,0,0,24,1,0,1276,1440.000000,54,0,77071.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,674,1440.000000,54,0,39673.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,54,0,9856.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,165,1465.000000,54,0,9816.000000,612.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,837,1477.000000,55,0,47126.000000,616.800000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,650,1470.000000,55,0,39287.000000,614.000000,extended,nbiot,60 +on10,0,0,24,1,0,725,1440.000000,55,0,46492.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,518,1458.000000,55,0,29132.000000,609.200000,extended,nbiot,60 +on0,1,8,24,0,0,0,1460.000000,55,0,-1.000000,792.000000,extended,nbiot,60 +on7,0,0,24,1,0,1318,1478.000000,55,0,76067.000000,617.200000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,251,1440.000000,55,0,16071.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,18,1440.000000,55,0,1514.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,1291,1451.000000,55,0,76027.000000,606.400000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,56,0,3465.000000,602.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1493.000000,56,0,-1.000000,805.200000,extended,nbiot,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,56,0,26076.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,360,1440.000000,56,0,22038.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,804,1444.000000,56,0,46964.000000,603.600000,extended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,56,0,51363.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,674,1440.000000,56,0,41753.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,900,1440.000000,56,0,56964.000000,602.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,1067,1467.000000,56,0,62562.000000,612.800000,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 +on0,1,5,24,0,0,0,1494.000000,57,0,-1.000000,727.600000,extended,nbiot,60 +on3,0,0,24,1,0,200,1440.000000,57,0,14022.000000,602.000000,extended,nbiot,60 +on10,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 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1254,1474.000000,57,0,72647.000000,615.600000,extended,nbiot,60 +on11,0,0,24,1,0,0,1440.000000,57,0,2574.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,795,1440.000000,57,0,47083.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,206,1446.000000,57,0,14062.000000,604.400000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1140,1440.000000,58,0,69507.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,480,1440.000000,58,0,29537.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,888,1468.000000,58,0,53001.000000,613.200000,extended,nbiot,60 +on0,1,7,24,0,0,0,1609.000000,58,0,-1.000000,825.600000,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,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1260,1440.000000,58,0,78999.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,1037,1440.000000,58,0,62479.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,58,0,2967.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,58,0,25645.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,59,0,67165.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1505.000000,59,0,-1.000000,810.000000,extended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,59,0,30346.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,0,1440.000000,59,0,1385.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,1274,1440.000000,59,0,76527.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,59,0,54546.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,166,1466.000000,59,0,8873.000000,612.400000,extended,nbiot,60 +on2,0,0,24,1,0,1104,1444.000000,59,0,67205.000000,603.600000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1221,1441.000000,59,0,74079.000000,602.400000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on7,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 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,530,1470.000000,60,0,30151.000000,614.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1460.000000,60,0,-1.000000,688.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,856,1440.000000,60,0,52648.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,713,1473.000000,60,0,41647.000000,615.200000,extended,nbiot,60 +on5,0,0,24,1,0,899,1479.000000,60,0,52608.000000,617.600000,extended,nbiot,60 +on10,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 +on10,0,0,24,1,0,431,1440.000000,61,0,27941.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1339,1440.000000,61,0,80275.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,313,1440.000000,61,0,18643.000000,602.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1477.000000,61,0,-1.000000,798.800000,extended,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,61,0,187.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,1069,1469.000000,61,0,63766.000000,613.600000,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,61,0,35422.000000,602.000000,extended,nbiot,60 +on2,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 +on1,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,780,1440.000000,61,0,47083.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,61,0,11152.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,433,1440.000000,62,0,26630.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1480.000000,62,0,-1.000000,748.000000,extended,nbiot,60 +on1,0,0,24,1,0,72,1440.000000,62,0,7129.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,120,1440.000000,62,0,8888.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,62,0,22369.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,480,1440.000000,62,0,32213.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,964,1440.000000,62,0,57776.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,360,1440.000000,63,0,23243.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,1297,1457.000000,63,0,78270.000000,608.800000,extended,nbiot,60 +on5,0,0,24,1,0,808,1448.000000,63,0,47495.000000,605.200000,extended,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,63,0,17929.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,97,1457.000000,63,0,4573.000000,608.800000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,0,1440.000000,63,0,758.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,300,1440.000000,63,0,18739.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,504,1444.000000,63,0,30029.000000,603.600000,extended,nbiot,60 +on7,0,0,24,1,0,1232,1452.000000,63,0,73169.000000,606.800000,extended,nbiot,60 +on0,1,10,24,0,0,0,1484.000000,63,0,-1.000000,853.600000,extended,nbiot,60 +on8,0,0,24,1,0,537,1477.000000,63,0,29989.000000,616.800000,extended,nbiot,60 +on2,0,0,24,1,0,230,1470.000000,64,0,13005.000000,614.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on1,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 +on0,1,4,24,0,0,0,1460.000000,64,0,-1.000000,688.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,9,1440.000000,64,0,1487.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,181,1440.000000,64,0,13045.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,1228,1448.000000,64,0,73136.000000,605.200000,extended,nbiot,60 +on3,0,0,24,1,0,1244,1464.000000,65,0,75564.000000,611.600000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,170,1470.000000,65,0,7669.000000,614.000000,extended,nbiot,60 +on2,0,0,24,1,0,181,1440.000000,65,0,12902.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,65,0,82369.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,65,0,18670.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,65,0,-1.000000,732.000000,extended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,65,0,84794.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,65,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 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,196,1440.000000,66,0,11550.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,112,1472.000000,66,0,6152.000000,614.800000,extended,nbiot,60 +on5,0,0,24,1,0,321,1441.000000,66,0,19888.000000,602.400000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on10,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 +on6,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,66,0,-1.000000,654.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,67,0,67750.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1486.000000,67,0,-1.000000,724.400000,extended,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,67,0,6376.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,67,0,444.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,643,1463.000000,67,0,37366.000000,611.200000,extended,nbiot,60 +on2,0,0,24,1,0,61,1440.000000,67,0,6324.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,nbiot,60 +on8,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 +on4,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,nbiot,60 +on6,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,68,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1511.000000,68,0,-1.000000,760.400000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1020,1440.000000,68,0,62676.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,575,1455.000000,68,0,34218.000000,608.000000,extended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,68,0,25412.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,240,1440.000000,68,0,17237.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,300,1440.000000,68,0,19169.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,524,1464.000000,68,0,31575.000000,611.600000,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 +on11,0,0,24,1,0,240,1440.000000,69,0,17302.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1467.000000,69,0,-1.000000,820.800000,extended,nbiot,60 +on10,0,0,24,1,0,445,1445.000000,69,0,25459.000000,604.000000,extended,nbiot,60 +on12,0,0,24,1,0,360,1440.000000,69,0,24862.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,365,1440.000000,69,0,24902.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,209,1449.000000,69,0,12789.000000,605.600000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,347,1467.000000,69,0,20998.000000,612.800000,extended,nbiot,60 +on5,0,0,24,1,0,720,1440.000000,69,0,45217.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,54,1474.000000,69,0,2304.000000,615.600000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,569,1449.000000,69,0,34030.000000,605.600000,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,70,0,16450.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1203,1440.000000,70,0,72983.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,234,1474.000000,70,0,11232.000000,615.600000,extended,nbiot,60 +on0,1,8,24,0,0,0,1458.000000,70,0,-1.000000,791.200000,extended,nbiot,60 +on6,0,0,24,1,0,592,1472.000000,70,0,34611.000000,614.800000,extended,nbiot,60 +on12,0,0,24,1,0,1260,1440.000000,70,0,77479.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,70,0,82239.000000,602.000000,extended,nbiot,60 +on7,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 +on3,0,0,24,1,0,960,1440.000000,70,0,59915.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1140,1440.000000,70,0,71154.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1490.000000,71,0,-1.000000,752.000000,extended,nbiot,60 +on2,0,0,24,1,0,288,1468.000000,71,0,15848.000000,613.200000,extended,nbiot,60 +on3,0,0,24,1,0,540,1440.000000,71,0,35315.000000,602.000000,extended,nbiot,60 +on8,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 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1260,1440.000000,71,0,77907.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1320,1440.000000,71,0,80641.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,71,0,58351.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,71,0,18207.000000,602.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,1,0,1080,1440.000000,72,0,66498.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,359,1479.000000,72,0,19712.000000,617.600000,extended,nbiot,60 +on0,1,7,24,0,0,0,1490.000000,72,0,-1.000000,778.000000,extended,nbiot,60 +on6,0,0,24,1,0,235,1475.000000,72,0,13610.000000,616.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,72,0,23290.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,1200,1440.000000,72,0,72638.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,142,1442.000000,72,0,9786.000000,602.800000,extended,nbiot,60 +on1,0,0,24,1,0,309,1440.000000,72,0,19672.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,73,0,64735.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,73,0,12390.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1499.000000,73,0,-1.000000,781.600000,extended,nbiot,60 +on1,0,0,24,1,0,44,1464.000000,73,0,2246.000000,611.600000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1140,1440.000000,73,0,71178.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,73,0,19906.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,240,1440.000000,73,0,16139.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,780,1440.000000,73,0,48330.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,74,0,19559.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,nbiot,60 +on9,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 +on11,0,0,24,1,0,270,1450.000000,74,0,14958.000000,606.000000,extended,nbiot,60 +on12,0,0,24,1,0,60,1440.000000,74,0,5386.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,1067,1467.000000,74,0,61558.000000,612.800000,extended,nbiot,60 +on0,1,7,24,0,0,0,1507.000000,74,0,-1.000000,784.800000,extended,nbiot,60 +on6,0,0,24,1,0,1380,1440.000000,74,0,84950.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,480,1440.000000,74,0,30532.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,74,0,37143.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1361,1461.000000,75,0,79736.000000,610.400000,extended,nbiot,60 +on8,0,0,24,1,0,214,1454.000000,75,0,12181.000000,607.600000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1477.000000,75,0,-1.000000,746.800000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,112,1472.000000,75,0,5459.000000,614.800000,extended,nbiot,60 +on2,0,0,24,1,0,728,1440.000000,75,0,44695.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,214,1454.000000,75,0,12141.000000,607.600000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,75,0,52672.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,76,0,57440.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,60,1440.000000,76,0,5874.000000,602.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1505.000000,76,0,-1.000000,732.000000,extended,nbiot,60 +on4,0,0,24,1,0,420,1440.000000,76,0,28164.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,1260,1440.000000,76,0,77864.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,660,1440.000000,76,0,40729.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on10,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 +on7,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,195,1440.000000,77,0,12803.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,77,0,46391.000000,602.000000,extended,nbiot,60 +on9,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,1,0,1020,1440.000000,77,0,61408.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,103,1463.000000,77,0,6349.000000,611.200000,extended,nbiot,60 +on8,0,0,24,1,0,484,1440.000000,77,0,31407.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1451.000000,77,0,-1.000000,736.400000,extended,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,77,0,1910.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,501,1441.000000,78,0,30475.000000,602.400000,extended,nbiot,60 +on0,1,8,24,0,0,0,1528.000000,78,0,-1.000000,819.200000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,420,1440.000000,78,0,26990.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,78,0,2777.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,78,0,10215.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,327,1447.000000,78,0,20805.000000,604.800000,extended,nbiot,60 +on5,0,0,24,1,0,305,1440.000000,78,0,20765.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,1020,1440.000000,78,0,63789.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,107,1467.000000,78,0,5779.000000,612.800000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on12,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 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,983,1443.000000,79,0,59542.000000,603.200000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,367,1440.000000,79,0,22016.000000,602.000000,extended,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,79,0,-1.000000,628.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1080,1440.000000,80,0,67891.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,286,1466.000000,80,0,17701.000000,612.400000,extended,nbiot,60 +on0,1,5,24,0,0,0,1508.000000,80,0,-1.000000,733.200000,extended,nbiot,60 +on9,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 +on7,0,0,24,1,0,150,1450.000000,80,0,9261.000000,606.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,80,0,4273.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1106,1446.000000,80,0,67839.000000,604.400000,extended,nbiot,60 +on10,0,0,24,1,0,147,1447.000000,81,0,7424.000000,604.800000,extended,nbiot,60 +on9,0,0,24,1,0,1200,1440.000000,81,0,74320.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,1320,1440.000000,81,0,80168.000000,602.000000,extended,nbiot,60 +on5,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 +on11,0,0,24,1,0,436,1440.000000,81,0,26081.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,81,0,2650.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,1260,1440.000000,81,0,77689.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1486.000000,81,0,-1.000000,776.400000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1040,1440.000000,81,0,64486.000000,602.000000,extended,nbiot,60 +on3,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,82,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,82,0,8270.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,2,24,0,0,0,1459.000000,82,0,-1.000000,635.600000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,363,1440.000000,82,0,22006.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,398,1458.000000,83,0,24679.000000,609.200000,extended,nbiot,60 +on0,1,6,24,0,0,0,1475.000000,83,0,-1.000000,746.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,900,1440.000000,83,0,55907.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,83,0,59197.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,83,0,2939.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,1080,1440.000000,83,0,65706.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,83,0,32800.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,516,1456.000000,84,0,29014.000000,608.400000,extended,nbiot,60 +on3,0,0,24,1,0,46,1466.000000,84,0,3538.000000,612.400000,extended,nbiot,60 +on0,1,7,24,0,0,0,1480.000000,84,0,-1.000000,774.000000,extended,nbiot,60 +on10,0,0,24,1,0,338,1458.000000,84,0,18520.000000,609.200000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,479,1479.000000,84,0,27729.000000,617.600000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,346,1466.000000,84,0,18560.000000,612.400000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,13,1440.000000,84,0,3498.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,84,0,13018.000000,602.000000,extended,nbiot,60 +on0,1,10,24,0,0,0,1472.000000,85,0,-1.000000,848.800000,extended,nbiot,60 +on2,0,0,24,1,0,1320,1440.000000,85,0,81056.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,749,1449.000000,85,0,44508.000000,605.600000,extended,nbiot,60 +on3,0,0,24,1,0,648,1468.000000,85,0,36115.000000,613.200000,extended,nbiot,60 +on10,0,0,24,1,0,1172,1452.000000,85,0,71829.000000,606.800000,extended,nbiot,60 +on4,0,0,24,1,0,28,1448.000000,85,0,3037.000000,605.200000,extended,nbiot,60 +on9,0,0,24,1,0,151,1451.000000,85,0,8434.000000,606.400000,extended,nbiot,60 +on11,0,0,24,1,0,445,1445.000000,85,0,27549.000000,604.000000,extended,nbiot,60 +on8,0,0,24,1,0,872,1452.000000,85,0,52054.000000,606.800000,extended,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,85,0,35336.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,1064,1464.000000,85,0,61987.000000,611.600000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1480.000000,86,0,-1.000000,748.000000,extended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,86,0,53601.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,300,1440.000000,86,0,18601.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,960,1440.000000,86,0,59389.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,408,1468.000000,86,0,24278.000000,613.200000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,86,0,3474.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,473,1473.000000,86,0,25493.000000,615.200000,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,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1476.000000,87,0,-1.000000,720.400000,extended,nbiot,60 +on5,0,0,24,1,0,498,1440.000000,87,0,29613.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,87,0,28392.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1108,1448.000000,87,0,68126.000000,605.200000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,523,1463.000000,87,0,29573.000000,611.200000,extended,nbiot,60 +on1,0,0,24,1,0,218,1458.000000,87,0,12148.000000,609.200000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,241,1440.000000,88,0,17052.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,296,1476.000000,88,0,17092.000000,616.400000,extended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,88,0,2724.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,143,1443.000000,88,0,10224.000000,603.200000,extended,nbiot,60 +on0,1,7,24,0,0,0,1510.000000,88,0,-1.000000,786.000000,extended,nbiot,60 +on8,0,0,24,1,0,120,1440.000000,88,0,10276.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,840,1440.000000,88,0,52398.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,88,0,31899.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on1,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 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1188,1468.000000,89,0,69961.000000,613.200000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1112,1452.000000,89,0,67347.000000,606.800000,extended,nbiot,60 +on0,1,5,24,0,0,0,1486.000000,89,0,-1.000000,724.400000,extended,nbiot,60 +on11,0,0,24,1,0,104,1464.000000,89,0,4604.000000,611.600000,extended,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,89,0,55209.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,89,0,38056.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,90,0,32610.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,346,1466.000000,90,0,20852.000000,612.400000,extended,nbiot,60 +on1,0,0,24,1,0,328,1448.000000,90,0,20812.000000,605.200000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,240,1440.000000,90,0,14700.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,120,1440.000000,90,0,10400.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,600,1440.000000,90,0,37170.000000,602.000000,extended,nbiot,60 +on0,1,10,24,0,0,0,1618.000000,90,0,-1.000000,907.200000,extended,nbiot,60 +on3,0,0,24,1,0,720,1440.000000,90,0,43509.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,1218,1440.000000,90,0,73118.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,1020,1440.000000,90,0,63861.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,780,1440.000000,90,0,49671.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,120,1440.000000,91,0,8405.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,91,0,15751.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,339,1459.000000,91,0,18257.000000,609.600000,extended,nbiot,60 +on6,0,0,24,1,0,540,1440.000000,91,0,35028.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,928,1448.000000,91,0,56367.000000,605.200000,extended,nbiot,60 +on0,1,8,24,0,0,0,1502.000000,91,0,-1.000000,808.800000,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 +on3,0,0,24,1,0,1160,1440.000000,91,0,68976.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,932,1452.000000,91,0,56407.000000,606.800000,extended,nbiot,60 +on12,0,0,24,1,0,811,1451.000000,91,0,49503.000000,606.400000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,91,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 +on4,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 +on7,0,0,24,1,0,1326,1440.000000,92,0,81444.000000,602.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1479.000000,92,0,-1.000000,721.600000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1020,1440.000000,92,0,61780.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,780,1440.000000,92,0,47930.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,707,1467.000000,92,0,41556.000000,612.800000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1321,1440.000000,92,0,81484.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,297,1477.000000,93,0,17516.000000,616.800000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1020,1440.000000,93,0,62438.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,349,1469.000000,93,0,21299.000000,613.600000,extended,nbiot,60 +on0,1,6,24,0,0,0,1511.000000,93,0,-1.000000,760.400000,extended,nbiot,60 +on5,0,0,24,1,0,1080,1440.000000,93,0,67517.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1199,1479.000000,93,0,69830.000000,617.600000,extended,nbiot,60 +on3,0,0,24,1,0,1200,1440.000000,93,0,74197.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,212,1452.000000,94,0,13465.000000,606.800000,extended,nbiot,60 +on5,0,0,24,1,0,649,1469.000000,94,0,39456.000000,613.600000,extended,nbiot,60 +on10,0,0,24,1,0,1020,1440.000000,94,0,64349.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,60,1440.000000,94,0,5942.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1460.000000,94,0,-1.000000,740.000000,extended,nbiot,60 +on4,0,0,24,1,0,900,1440.000000,94,0,57379.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,418,1478.000000,94,0,22091.000000,617.200000,extended,nbiot,60 +on12,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 +on6,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,817,1457.000000,95,0,50327.000000,608.800000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,824,1464.000000,95,0,50287.000000,611.600000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,730,1440.000000,95,0,46205.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,208,1448.000000,95,0,14090.000000,605.200000,extended,nbiot,60 +on0,1,4,24,0,0,0,1460.000000,95,0,-1.000000,688.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,642,1462.000000,96,0,37546.000000,610.800000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,586,1466.000000,96,0,33356.000000,612.400000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1220,1440.000000,96,0,73576.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,22,1442.000000,96,0,3202.000000,602.800000,extended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,96,0,60266.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,96,0,-1.000000,732.000000,extended,nbiot,60 +on6,0,0,24,1,0,1260,1440.000000,96,0,77211.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,198,1440.000000,97,0,11097.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,265,1445.000000,97,0,16579.000000,604.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1080,1440.000000,97,0,67792.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,1327,1440.000000,97,0,81575.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,228,1468.000000,97,0,11057.000000,613.200000,extended,nbiot,60 +on0,1,7,24,0,0,0,1480.000000,97,0,-1.000000,774.000000,extended,nbiot,60 +on3,0,0,24,1,0,604,1440.000000,97,0,38532.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1342,1442.000000,97,0,81615.000000,602.800000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1481.000000,98,0,-1.000000,722.400000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,98,0,15765.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,1080,1440.000000,98,0,65641.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,781,1440.000000,98,0,48591.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,467,1467.000000,98,0,28369.000000,612.800000,extended,nbiot,60 +on5,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 +on3,0,0,24,1,0,720,1440.000000,98,0,43356.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,600,1440.000000,99,0,38368.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,300,1440.000000,99,0,20326.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,99,0,4284.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,0,1440.000000,99,0,1512.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1045,1445.000000,99,0,63860.000000,604.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,333,1453.000000,99,0,20366.000000,607.200000,extended,nbiot,60 +on0,1,8,24,0,0,0,1524.000000,99,0,-1.000000,817.600000,extended,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,99,0,16620.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,999,1459.000000,99,0,58629.000000,609.600000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,436,1440.000000,100,0,26899.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,100,0,986.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,116,1476.000000,100,0,5354.000000,616.400000,extended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,100,0,53420.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1499.000000,100,0,-1.000000,781.600000,extended,nbiot,60 +on12,0,0,24,1,0,1320,1440.000000,100,0,82237.000000,602.000000,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,1,0,360,1440.000000,100,0,24279.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,380,1440.000000,100,0,24236.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1153,1440.000000,101,0,70967.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,540,1440.000000,101,0,33941.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1484.000000,101,0,-1.000000,775.600000,extended,nbiot,60 +on8,0,0,24,1,0,696,1456.000000,101,0,41820.000000,608.400000,extended,nbiot,60 +on3,0,0,24,1,0,865,1445.000000,101,0,52367.000000,604.000000,extended,nbiot,60 +on5,0,0,24,1,0,0,1440.000000,101,0,2566.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,802,1442.000000,101,0,50337.000000,602.800000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on11,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 +on7,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,101,0,9875.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,1183,1463.000000,102,0,69964.000000,611.200000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,738,1440.000000,102,0,44479.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,1261,1440.000000,102,0,78840.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,102,0,35727.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,735,1440.000000,102,0,44439.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,240,1440.000000,102,0,14697.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1529.000000,102,0,-1.000000,845.600000,extended,nbiot,60 +on2,0,0,24,1,0,814,1454.000000,102,0,50110.000000,607.600000,extended,nbiot,60 +on3,0,0,24,1,0,1320,1440.000000,102,0,80593.000000,602.000000,extended,nbiot,60 +on7,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 +on6,0,0,24,1,0,420,1440.000000,102,0,26388.000000,602.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,659,1479.000000,103,0,39227.000000,617.600000,extended,nbiot,60 +on11,0,0,24,1,0,87,1447.000000,103,0,3698.000000,604.800000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1080,1440.000000,103,0,67430.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,103,0,15510.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,145,1445.000000,103,0,10496.000000,604.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1508.000000,103,0,-1.000000,785.200000,extended,nbiot,60 +on9,0,0,24,1,0,572,1452.000000,103,0,33073.000000,606.800000,extended,nbiot,60 +on8,0,0,24,1,0,1295,1455.000000,103,0,76611.000000,608.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,727,1440.000000,104,0,45398.000000,602.000000,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,1,0,35,1455.000000,104,0,927.000000,608.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1502.000000,104,0,-1.000000,756.800000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,900,1440.000000,104,0,57427.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,58,1478.000000,104,0,967.000000,617.200000,extended,nbiot,60 +on1,0,0,24,1,0,1162,1442.000000,104,0,69754.000000,602.800000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1020,1440.000000,104,0,64219.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,660,1440.000000,105,0,40684.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1375,1475.000000,105,0,81746.000000,616.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1500.000000,105,0,-1.000000,782.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1200,1440.000000,105,0,73085.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,1025,1440.000000,105,0,61410.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,105,0,35490.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,392,1452.000000,105,0,24934.000000,606.800000,extended,nbiot,60 +on4,0,0,24,1,0,219,1459.000000,105,0,11622.000000,609.600000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1325,1440.000000,106,0,82110.000000,602.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1481.000000,106,0,-1.000000,800.400000,extended,nbiot,60 +on4,0,0,24,1,0,960,1440.000000,106,0,58744.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,180,1440.000000,106,0,11800.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1220,1440.000000,106,0,75281.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,181,1440.000000,106,0,11759.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,60,1440.000000,106,0,5472.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,1209,1440.000000,106,0,75321.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,423,1440.000000,106,0,25432.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,180,1440.000000,107,0,12936.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,107,0,1082.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on4,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 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1504.000000,107,0,-1.000000,679.600000,extended,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,107,0,62463.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on6,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 +on2,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 +on4,0,0,24,1,0,1080,1440.000000,108,0,66979.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,108,0,63724.000000,602.000000,extended,nbiot,60 +on6,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 +on11,0,0,24,1,0,600,1440.000000,108,0,37290.000000,602.000000,extended,nbiot,60 +on1,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 +on10,0,0,24,1,0,60,1440.000000,108,0,5165.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,63,1440.000000,108,0,5205.000000,602.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1539.000000,108,0,-1.000000,745.600000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,874,1454.000000,109,0,53804.000000,607.600000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,109,0,34122.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on12,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 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,680,1440.000000,109,0,42800.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1458.000000,109,0,-1.000000,687.200000,extended,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,109,0,7672.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,375,1440.000000,110,0,24303.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,1221,1441.000000,110,0,72968.000000,602.400000,extended,nbiot,60 +on5,0,0,24,1,0,494,1440.000000,110,0,30040.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,21,1441.000000,110,0,2878.000000,602.400000,extended,nbiot,60 +on3,0,0,24,1,0,381,1441.000000,110,0,24263.000000,602.400000,extended,nbiot,60 +on12,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 +on0,1,9,24,0,0,0,1500.000000,110,0,-1.000000,834.000000,extended,nbiot,60 +on2,0,0,24,1,0,178,1478.000000,110,0,8168.000000,617.200000,extended,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,110,0,36747.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,496,1440.000000,110,0,30080.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,123,1440.000000,110,0,8128.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,111,0,69320.000000,602.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1473.000000,111,0,-1.000000,693.200000,extended,nbiot,60 +on4,0,0,24,1,0,721,1440.000000,111,0,44155.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,900,1440.000000,111,0,54568.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,111,0,35972.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on1,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 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,900,1440.000000,112,0,55531.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,451,1451.000000,112,0,26050.000000,606.400000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,444,1444.000000,112,0,26090.000000,603.600000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,391,1451.000000,112,0,22124.000000,606.400000,extended,nbiot,60 +on2,0,0,24,1,0,840,1440.000000,112,0,50490.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1527.000000,112,0,-1.000000,792.800000,extended,nbiot,60 +on6,0,0,24,1,0,530,1470.000000,112,0,30751.000000,614.000000,extended,nbiot,60 +on7,0,0,24,1,0,0,1440.000000,112,0,1904.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,762,1462.000000,113,0,44260.000000,610.800000,extended,nbiot,60 +on2,0,0,24,1,0,123,1440.000000,113,0,10202.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,743,1443.000000,113,0,44300.000000,603.200000,extended,nbiot,60 +on10,0,0,24,1,0,655,1475.000000,113,0,38801.000000,616.000000,extended,nbiot,60 +on4,0,0,24,1,0,861,1441.000000,113,0,51700.000000,602.400000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1460.000000,113,0,-1.000000,714.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1164,1444.000000,114,0,69678.000000,603.600000,extended,nbiot,60 +on5,0,0,24,1,0,1077,1477.000000,114,0,62467.000000,616.800000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,114,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 +on3,0,0,24,1,0,749,1449.000000,114,0,44686.000000,605.600000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1393,1440.000000,114,0,85392.000000,602.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,114,0,-1.000000,706.000000,extended,nbiot,60 +on6,0,0,24,1,0,879,1459.000000,114,0,51519.000000,609.600000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,540,1440.000000,115,0,32757.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,679,1440.000000,115,0,40662.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,164,1464.000000,115,0,7414.000000,611.600000,extended,nbiot,60 +on11,0,0,24,1,0,606,1440.000000,115,0,39224.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,89,1449.000000,115,0,3675.000000,605.600000,extended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,115,0,59707.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,115,0,31767.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,115,0,44732.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,300,1440.000000,115,0,18686.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1502.000000,115,0,-1.000000,834.800000,extended,nbiot,60 +on1,0,0,24,1,0,512,1452.000000,116,0,28946.000000,606.800000,extended,nbiot,60 +on6,0,0,24,1,0,574,1454.000000,116,0,35864.000000,607.600000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on3,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 +on5,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,734,1440.000000,116,0,44664.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1464.000000,116,0,-1.000000,741.600000,extended,nbiot,60 +on7,0,0,24,1,0,240,1440.000000,116,0,14937.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,95,1455.000000,116,0,5867.000000,608.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,579,1459.000000,116,0,35904.000000,609.600000,extended,nbiot,60 +on4,0,0,24,1,0,163,1463.000000,117,0,9159.000000,611.200000,extended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,117,0,69405.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1320,1440.000000,117,0,79574.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,117,0,67553.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1502.000000,117,0,-1.000000,782.800000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,840,1440.000000,117,0,51813.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,751,1451.000000,117,0,44924.000000,606.400000,extended,nbiot,60 +on5,0,0,24,1,0,422,1440.000000,117,0,28288.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,118,0,13451.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,118,0,32098.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,nbiot,60 +on7,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 +on5,0,0,24,1,0,816,1456.000000,118,0,50202.000000,608.400000,extended,nbiot,60 +on0,1,6,24,0,0,0,1493.000000,118,0,-1.000000,753.200000,extended,nbiot,60 +on8,0,0,24,1,0,900,1440.000000,118,0,57532.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,595,1475.000000,118,0,34459.000000,616.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,118,0,25983.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,706,1466.000000,119,0,40548.000000,612.400000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1357,1457.000000,119,0,80333.000000,608.800000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,360,1440.000000,119,0,22199.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,119,0,80293.000000,602.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1517.000000,119,0,-1.000000,814.800000,extended,nbiot,60 +on8,0,0,24,1,0,998,1458.000000,119,0,57989.000000,609.200000,extended,nbiot,60 +on2,0,0,24,1,0,1080,1440.000000,119,0,66880.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,664,1440.000000,119,0,40588.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,196,1440.000000,119,0,11765.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1460.000000,120,0,-1.000000,714.000000,extended,nbiot,60 +on4,0,0,24,1,0,1301,1461.000000,120,0,76293.000000,610.400000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on9,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 +on5,0,0,24,1,0,939,1459.000000,120,0,55677.000000,609.600000,extended,nbiot,60 +on6,0,0,24,1,0,772,1472.000000,120,0,46016.000000,614.800000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,106,1466.000000,120,0,6584.000000,612.400000,extended,nbiot,60 +on7,0,0,24,1,0,727,1440.000000,120,0,46056.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,677,1440.000000,121,0,39746.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1140,1440.000000,121,0,68545.000000,602.000000,extended,nbiot,60 +on0,1,2,24,0,0,0,1441.000000,121,0,-1.000000,628.400000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,361,1440.000000,122,0,24986.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,583,1463.000000,122,0,32768.000000,611.200000,extended,nbiot,60 +on1,0,0,24,1,0,507,1447.000000,122,0,29284.000000,604.800000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,703,1463.000000,122,0,41462.000000,611.200000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1128,1468.000000,122,0,65714.000000,613.200000,extended,nbiot,60 +on10,0,0,24,1,0,321,1441.000000,122,0,21195.000000,602.400000,extended,nbiot,60 +on0,1,8,24,0,0,0,1471.000000,122,0,-1.000000,796.400000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,783,1440.000000,122,0,50245.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,122,0,14286.000000,602.000000,extended,nbiot,60 +on8,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 +on6,0,0,24,1,0,600,1440.000000,123,0,36351.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,23,1443.000000,123,0,3295.000000,603.200000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,619,1440.000000,123,0,36391.000000,602.000000,extended,nbiot,60 +on10,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 +on9,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 +on1,0,0,24,1,0,120,1440.000000,123,0,8346.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1460.000000,123,0,-1.000000,688.000000,extended,nbiot,60 +on10,0,0,24,1,0,504,1444.000000,124,0,32331.000000,603.600000,extended,nbiot,60 +on8,0,0,24,1,0,1438,1478.000000,124,0,83541.000000,617.200000,extended,nbiot,60 +on0,1,8,24,0,0,0,1463.000000,124,0,-1.000000,793.200000,extended,nbiot,60 +on6,0,0,24,1,0,367,1440.000000,124,0,23270.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,757,1457.000000,124,0,46767.000000,608.800000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,420,1440.000000,124,0,25714.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,46,1466.000000,124,0,1517.000000,612.400000,extended,nbiot,60 +on2,0,0,24,1,0,1098,1440.000000,124,0,67006.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,360,1440.000000,124,0,23313.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,120,1440.000000,125,0,10645.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1465.000000,125,0,-1.000000,768.000000,extended,nbiot,60 +on12,0,0,24,1,0,825,1465.000000,125,0,49163.000000,612.000000,extended,nbiot,60 +on5,0,0,24,1,0,476,1476.000000,125,0,25416.000000,616.400000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,191,1440.000000,125,0,10974.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,125,0,22155.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,279,1459.000000,125,0,14922.000000,609.600000,extended,nbiot,60 +on4,0,0,24,1,0,511,1451.000000,125,0,31188.000000,606.400000,extended,nbiot,60 +on0,1,6,24,0,0,0,1485.000000,126,0,-1.000000,750.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1020,1440.000000,126,0,63617.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,316,1440.000000,126,0,20271.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,1260,1440.000000,126,0,78019.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,259,1440.000000,126,0,15057.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,126,0,68263.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,907,1440.000000,126,0,54627.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,418,1478.000000,127,0,23035.000000,617.200000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1200,1440.000000,127,0,74082.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,1026,1440.000000,127,0,63144.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,242,1440.000000,127,0,14938.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,282,1462.000000,127,0,14898.000000,610.800000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,341,1461.000000,127,0,18722.000000,610.400000,extended,nbiot,60 +on8,0,0,24,1,0,1080,1440.000000,127,0,68047.000000,602.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1484.000000,127,0,-1.000000,801.600000,extended,nbiot,60 +on1,0,0,24,1,0,1380,1440.000000,127,0,85878.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,128,0,1570.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,720,1440.000000,128,0,44456.000000,602.000000,extended,nbiot,60 +on4,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 +on5,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,90,1450.000000,128,0,5479.000000,606.000000,extended,nbiot,60 +on10,0,0,24,1,0,911,1440.000000,128,0,55553.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,829,1469.000000,128,0,48206.000000,613.600000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1021,1440.000000,128,0,63838.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,840,1440.000000,128,0,51644.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1501.000000,128,0,-1.000000,782.400000,extended,nbiot,60 +on8,0,0,24,1,0,240,1440.000000,129,0,15007.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1480.000000,129,0,-1.000000,774.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,822,1462.000000,129,0,48966.000000,610.800000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,129,0,6157.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,204,1444.000000,129,0,13971.000000,603.600000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,129,0,33298.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1103,1443.000000,129,0,68136.000000,603.200000,extended,nbiot,60 +on1,0,0,24,1,0,17,1440.000000,129,0,275.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,130,0,1365.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,660,1440.000000,130,0,41350.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,1288,1448.000000,130,0,77951.000000,605.200000,extended,nbiot,60 +on10,0,0,24,1,0,145,1445.000000,130,0,7271.000000,604.000000,extended,nbiot,60 +on11,0,0,24,1,0,303,1440.000000,130,0,18256.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1492.000000,130,0,-1.000000,804.800000,extended,nbiot,60 +on5,0,0,24,1,0,243,1440.000000,130,0,15945.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,322,1442.000000,130,0,18216.000000,602.800000,extended,nbiot,60 +on7,0,0,24,1,0,720,1440.000000,130,0,44176.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,703,1463.000000,131,0,40201.000000,611.200000,extended,nbiot,60 +on4,0,0,24,1,0,900,1440.000000,131,0,54263.000000,602.000000,extended,nbiot,60 +on10,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 +on0,1,8,24,0,0,0,1463.000000,131,0,-1.000000,793.200000,extended,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,131,0,66169.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,421,1440.000000,131,0,25422.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,290,1470.000000,131,0,15444.000000,614.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,131,0,32963.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,650,1470.000000,131,0,39419.000000,614.000000,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,474,1474.000000,131,0,25382.000000,615.600000,extended,nbiot,60 +on0,1,4,24,0,0,0,1456.000000,132,0,-1.000000,686.400000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1200,1440.000000,132,0,74085.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,900,1440.000000,132,0,54593.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,729,1440.000000,132,0,46366.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,132,0,61851.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,688,1448.000000,133,0,40300.000000,605.200000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,240,1440.000000,133,0,16571.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,835,1475.000000,133,0,49311.000000,616.000000,extended,nbiot,60 +on4,0,0,24,1,0,840,1440.000000,133,0,52853.000000,602.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1487.000000,133,0,-1.000000,802.800000,extended,nbiot,60 +on6,0,0,24,1,0,1336,1440.000000,133,0,82332.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,180,1440.000000,133,0,12985.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,173,1473.000000,133,0,7555.000000,615.200000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1159,1440.000000,133,0,69520.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,420,1440.000000,134,0,26773.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,0,1440.000000,134,0,1679.000000,602.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1533.000000,134,0,-1.000000,743.200000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,134,0,15818.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1320,1440.000000,134,0,80973.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,134,0,15778.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,57,1477.000000,135,0,461.000000,616.800000,extended,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,135,0,67484.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1501.000000,135,0,-1.000000,756.400000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,19,1440.000000,135,0,501.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,213,1453.000000,135,0,11135.000000,607.200000,extended,nbiot,60 +on2,0,0,24,1,0,1260,1440.000000,135,0,78745.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,191,1440.000000,135,0,11095.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,60,1440.000000,136,0,4948.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,136,0,81647.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,136,0,847.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1457.000000,136,0,-1.000000,738.800000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1050,1450.000000,136,0,62135.000000,606.000000,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,136,0,17560.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,136,0,32133.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1450.000000,137,0,-1.000000,658.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,432,1440.000000,137,0,25342.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,355,1475.000000,137,0,19999.000000,616.000000,extended,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,137,0,17700.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,138,0,32954.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,138,0,28742.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1200,1440.000000,138,0,73343.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1499.000000,138,0,-1.000000,781.600000,extended,nbiot,60 +on7,0,0,24,1,0,804,1444.000000,138,0,47819.000000,603.600000,extended,nbiot,60 +on2,0,0,24,1,0,188,1440.000000,138,0,11550.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,701,1461.000000,138,0,41589.000000,610.400000,extended,nbiot,60 +on1,0,0,24,1,0,1222,1442.000000,138,0,73288.000000,602.800000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,478,1478.000000,139,0,28748.000000,617.200000,extended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,139,0,51245.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,nbiot,60 +on9,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 +on0,1,6,24,0,0,0,1452.000000,139,0,-1.000000,736.800000,extended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,139,0,62005.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,99,1459.000000,139,0,7154.000000,609.600000,extended,nbiot,60 +on4,0,0,24,1,0,780,1440.000000,139,0,46999.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,1277,1440.000000,139,0,77518.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,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 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,70,1440.000000,140,0,3700.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,1075,1475.000000,140,0,62995.000000,616.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on3,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 +on6,0,0,24,1,0,60,1440.000000,140,0,3660.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1398,1440.000000,140,0,85867.000000,602.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1476.000000,140,0,-1.000000,694.400000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,141,0,6496.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,1064,1464.000000,141,0,63089.000000,611.600000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,982,1442.000000,141,0,59646.000000,602.800000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1478.000000,141,0,-1.000000,747.200000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,141,0,59704.000000,602.000000,extended,nbiot,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,141,0,54940.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,886,1466.000000,141,0,52229.000000,612.400000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1200,1440.000000,142,0,73567.000000,602.000000,extended,nbiot,60 +on7,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,1,0,1172,1452.000000,142,0,70240.000000,606.800000,extended,nbiot,60 +on0,1,7,24,0,0,0,1477.000000,142,0,-1.000000,772.800000,extended,nbiot,60 +on12,0,0,24,1,0,1380,1440.000000,142,0,83859.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,727,1440.000000,142,0,46543.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,840,1440.000000,142,0,50912.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,409,1469.000000,142,0,24410.000000,613.600000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,142,0,38804.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,615,1440.000000,143,0,39048.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,892,1472.000000,143,0,52488.000000,614.800000,extended,nbiot,60 +on1,0,0,24,1,0,180,1440.000000,143,0,13937.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,525,1465.000000,143,0,32257.000000,612.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1140,1440.000000,143,0,70084.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1476.000000,143,0,-1.000000,772.400000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,63,1440.000000,143,0,6060.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,660,1440.000000,143,0,40853.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,144,0,64661.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1512.000000,144,0,-1.000000,838.800000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,360,1440.000000,144,0,23268.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,231,1471.000000,144,0,13307.000000,614.400000,extended,nbiot,60 +on7,0,0,24,1,0,114,1474.000000,144,0,4614.000000,615.600000,extended,nbiot,60 +on2,0,0,24,1,0,840,1440.000000,144,0,53225.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,963,1440.000000,144,0,60885.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,1237,1457.000000,144,0,75214.000000,608.800000,extended,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,144,0,10336.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,144,0,868.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,1200,1440.000000,145,0,74378.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,780,1440.000000,145,0,48736.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,982,1442.000000,145,0,57857.000000,602.800000,extended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,145,0,25691.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,687,1447.000000,145,0,42489.000000,604.800000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,770,1470.000000,145,0,44099.000000,614.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1511.000000,145,0,-1.000000,760.400000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,600,1440.000000,146,0,36836.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,146,0,52680.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,53,1473.000000,146,0,2928.000000,615.200000,extended,nbiot,60 +on2,0,0,24,1,0,753,1453.000000,146,0,46485.000000,607.200000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,195,1440.000000,146,0,11092.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,146,0,8278.000000,602.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1495.000000,146,0,-1.000000,806.000000,extended,nbiot,60 +on4,0,0,24,1,0,932,1452.000000,146,0,56627.000000,606.800000,extended,nbiot,60 +on6,0,0,24,1,0,300,1440.000000,146,0,21134.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,240,1440.000000,147,0,15190.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1365,1465.000000,147,0,79446.000000,612.000000,extended,nbiot,60 +on6,0,0,24,1,0,120,1440.000000,147,0,8034.000000,602.000000,extended,nbiot,60 +on2,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,9,24,0,0,0,1515.000000,147,0,-1.000000,840.000000,extended,nbiot,60 +on5,0,0,24,1,0,840,1440.000000,147,0,52073.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,720,1440.000000,147,0,44670.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,774,1474.000000,147,0,44619.000000,615.600000,extended,nbiot,60 +on10,0,0,24,1,0,990,1450.000000,147,0,58387.000000,606.000000,extended,nbiot,60 +on12,0,0,24,1,0,785,1440.000000,147,0,47540.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,226,1466.000000,147,0,14052.000000,612.400000,extended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,148,0,18942.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,148,0,30943.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,148,0,-1.000000,706.000000,extended,nbiot,60 +on3,0,0,24,1,0,1344,1444.000000,148,0,81387.000000,603.600000,extended,nbiot,60 +on4,0,0,24,1,0,998,1458.000000,148,0,58688.000000,609.200000,extended,nbiot,60 +on2,0,0,24,1,0,218,1458.000000,148,0,14074.000000,609.200000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,149,0,61353.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,111,1471.000000,149,0,6552.000000,614.400000,extended,nbiot,60 +on11,0,0,24,1,0,1140,1440.000000,149,0,68780.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,149,0,40965.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1273,1440.000000,149,0,77730.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,360,1440.000000,149,0,22008.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1547.000000,149,0,-1.000000,774.800000,extended,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,150,0,32906.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,150,0,157.000000,602.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,220,1460.000000,150,0,11159.000000,610.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,600,1440.000000,150,0,37623.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,150,0,21193.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1272,1440.000000,150,0,78829.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1493.000000,150,0,-1.000000,779.200000,extended,nbiot,60 +on1,0,0,24,1,0,728,1440.000000,150,0,43667.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,167,1467.000000,151,0,8355.000000,612.800000,extended,nbiot,60 +on5,0,0,24,1,0,1140,1440.000000,151,0,69113.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,151,0,63143.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,840,1440.000000,151,0,51234.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1496.000000,151,0,-1.000000,728.400000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1320,1440.000000,151,0,82064.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,372,1440.000000,152,0,22028.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,152,0,7107.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,152,0,63204.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,19,1440.000000,152,0,3370.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1518.000000,152,0,-1.000000,789.200000,extended,nbiot,60 +on4,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 +on12,0,0,24,1,0,1153,1440.000000,152,0,70109.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,462,1462.000000,152,0,26864.000000,610.800000,extended,nbiot,60 +on11,0,0,24,1,0,0,1440.000000,152,0,3425.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,144,1444.000000,153,0,8063.000000,603.600000,extended,nbiot,60 +on0,1,9,24,0,0,0,1517.000000,153,0,-1.000000,840.800000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,136,1440.000000,153,0,8023.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,840,1440.000000,153,0,51999.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,46,1466.000000,153,0,489.000000,612.400000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,15,1440.000000,153,0,449.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,1239,1459.000000,153,0,74858.000000,609.600000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,287,1467.000000,153,0,16393.000000,612.800000,extended,nbiot,60 +on2,0,0,24,1,0,873,1453.000000,153,0,51942.000000,607.200000,extended,nbiot,60 +on9,0,0,24,1,0,1031,1440.000000,153,0,62321.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,1299,1459.000000,154,0,77319.000000,609.600000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1485.000000,154,0,-1.000000,802.000000,extended,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,154,0,710.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,660,1440.000000,154,0,43156.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1237,1457.000000,154,0,72708.000000,608.800000,extended,nbiot,60 +on4,0,0,24,1,0,159,1459.000000,154,0,8946.000000,609.600000,extended,nbiot,60 +on7,0,0,24,1,0,240,1440.000000,154,0,15283.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,840,1440.000000,154,0,53647.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,840,1440.000000,154,0,53607.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,155,0,32770.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,168,1468.000000,155,0,7934.000000,613.200000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1489.000000,155,0,-1.000000,751.600000,extended,nbiot,60 +on10,0,0,24,1,0,1070,1470.000000,155,0,63782.000000,614.000000,extended,nbiot,60 +on1,0,0,24,1,0,224,1464.000000,155,0,12082.000000,611.600000,extended,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,155,0,55990.000000,602.000000,extended,nbiot,60 +on4,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 +on8,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1025,1440.000000,155,0,63742.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1492.000000,156,0,-1.000000,726.800000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,46,1466.000000,156,0,2032.000000,612.400000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,780,1440.000000,156,0,49669.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,156,0,7776.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,156,0,4306.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1080,1440.000000,156,0,65566.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1084,1440.000000,157,0,68284.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,157,0,63226.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,960,1440.000000,157,0,59680.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,600,1440.000000,157,0,36792.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1493.000000,157,0,-1.000000,753.200000,extended,nbiot,60 +on12,0,0,24,1,0,56,1476.000000,157,0,1586.000000,616.400000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,320,1440.000000,157,0,21538.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1140,1440.000000,158,0,71516.000000,602.000000,extended,nbiot,60 +on9,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 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,649,1469.000000,158,0,38858.000000,613.600000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,158,0,9327.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,908,1440.000000,158,0,55904.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1488.000000,158,0,-1.000000,699.200000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,240,1440.000000,159,0,15756.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,159,0,7553.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,113,1473.000000,159,0,4365.000000,615.200000,extended,nbiot,60 +on12,0,0,24,1,0,671,1440.000000,159,0,41985.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,1002,1462.000000,159,0,58946.000000,610.800000,extended,nbiot,60 +on0,1,8,24,0,0,0,1491.000000,159,0,-1.000000,804.400000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1289,1449.000000,159,0,77960.000000,605.600000,extended,nbiot,60 +on2,0,0,24,1,0,357,1477.000000,159,0,20747.000000,616.800000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1018,1478.000000,159,0,58906.000000,617.200000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,160,0,5957.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,160,0,41443.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,1260,1440.000000,160,0,78346.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,160,0,26442.000000,602.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1507.000000,160,0,-1.000000,810.800000,extended,nbiot,60 +on2,0,0,24,1,0,35,1455.000000,160,0,2015.000000,608.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,618,1440.000000,160,0,37485.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,160,0,29105.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,160,0,26486.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,360,1440.000000,161,0,22217.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1320,1440.000000,161,0,80490.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,888,1468.000000,161,0,50986.000000,613.200000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,420,1440.000000,161,0,28522.000000,602.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1457.000000,161,0,-1.000000,712.800000,extended,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,161,0,38687.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,720,1440.000000,162,0,45493.000000,602.000000,extended,nbiot,60 +on0,1,10,24,0,0,0,1561.000000,162,0,-1.000000,884.400000,extended,nbiot,60 +on11,0,0,24,1,0,300,1440.000000,162,0,19307.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,556,1440.000000,162,0,34229.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1,1440.000000,162,0,3117.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,660,1440.000000,162,0,39739.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,8,1440.000000,162,0,3077.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,808,1448.000000,162,0,46902.000000,605.200000,extended,nbiot,60 +on1,0,0,24,1,0,1016,1476.000000,162,0,59993.000000,616.400000,extended,nbiot,60 +on4,0,0,24,1,0,900,1440.000000,162,0,56003.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,420,1440.000000,162,0,26593.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,163,0,6440.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,520,1460.000000,163,0,31967.000000,610.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1041,1441.000000,163,0,64501.000000,602.400000,extended,nbiot,60 +on9,0,0,24,1,0,334,1454.000000,163,0,19202.000000,607.600000,extended,nbiot,60 +on12,0,0,24,1,0,867,1447.000000,163,0,52544.000000,604.800000,extended,nbiot,60 +on7,0,0,24,1,0,360,1440.000000,163,0,24329.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1570.000000,163,0,-1.000000,862.000000,extended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,163,0,85408.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,480,1440.000000,163,0,32024.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,1020,1440.000000,163,0,64549.000000,602.000000,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,927,1447.000000,164,0,55742.000000,604.800000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,865,1445.000000,164,0,50956.000000,604.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1480.000000,164,0,-1.000000,774.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,290,1470.000000,164,0,16911.000000,614.000000,extended,nbiot,60 +on9,0,0,24,1,0,280,1460.000000,164,0,16871.000000,610.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,720,1440.000000,164,0,45078.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,926,1446.000000,164,0,55702.000000,604.400000,extended,nbiot,60 +on8,0,0,24,1,0,60,1440.000000,164,0,5466.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,452,1452.000000,165,0,26223.000000,606.800000,extended,nbiot,60 +on6,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 +on1,0,0,24,1,0,480,1440.000000,165,0,30339.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,83,1443.000000,165,0,5882.000000,603.200000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,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,1,0,1417,1457.000000,165,0,85828.000000,608.800000,extended,nbiot,60 +on0,1,4,24,0,0,0,1477.000000,165,0,-1.000000,694.800000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,166,0,36347.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,702,1462.000000,166,0,40284.000000,610.800000,extended,nbiot,60 +on10,0,0,24,1,0,977,1440.000000,166,0,61099.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,1020,1440.000000,166,0,63548.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,209,1449.000000,166,0,11209.000000,605.600000,extended,nbiot,60 +on12,0,0,24,1,0,791,1440.000000,166,0,49350.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,971,1440.000000,166,0,61139.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1498.000000,166,0,-1.000000,833.200000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,188,1440.000000,166,0,11249.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,23,1443.000000,166,0,283.000000,603.200000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1270,1440.000000,167,0,76585.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,87,1447.000000,167,0,6849.000000,604.800000,extended,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,167,0,9610.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,952,1472.000000,167,0,56953.000000,614.800000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1454.000000,167,0,-1.000000,737.600000,extended,nbiot,60 +on1,0,0,24,1,0,607,1440.000000,167,0,39352.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,167,0,70569.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1510.000000,168,0,-1.000000,734.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,660,1440.000000,168,0,41238.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,1020,1440.000000,168,0,61486.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,169,1469.000000,168,0,8502.000000,613.600000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,88,1448.000000,168,0,6452.000000,605.200000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,60,1440.000000,168,0,6510.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,117,1477.000000,169,0,6802.000000,616.800000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1080,1440.000000,169,0,66061.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,284,1464.000000,169,0,17552.000000,611.600000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1368,1468.000000,169,0,81678.000000,613.200000,extended,nbiot,60 +on6,0,0,24,1,0,161,1461.000000,169,0,10224.000000,610.400000,extended,nbiot,60 +on0,1,6,24,0,0,0,1450.000000,169,0,-1.000000,736.000000,extended,nbiot,60 +on9,0,0,24,1,0,379,1440.000000,169,0,25173.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,960,1440.000000,170,0,60471.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,100,1460.000000,170,0,5221.000000,610.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1474.000000,170,0,-1.000000,719.600000,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 +on1,0,0,24,1,0,600,1440.000000,170,0,36767.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,1307,1467.000000,170,0,76184.000000,612.800000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,120,1440.000000,170,0,8552.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,720,1440.000000,171,0,43962.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,420,1440.000000,171,0,28353.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1414,1454.000000,171,0,84722.000000,607.600000,extended,nbiot,60 +on0,1,7,24,0,0,0,1531.000000,171,0,-1.000000,794.400000,extended,nbiot,60 +on6,0,0,24,1,0,643,1463.000000,171,0,38447.000000,611.200000,extended,nbiot,60 +on2,0,0,24,1,0,190,1440.000000,171,0,11182.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,210,1450.000000,171,0,11142.000000,606.000000,extended,nbiot,60 +on4,0,0,24,1,0,1140,1440.000000,171,0,69795.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1320,1440.000000,172,0,79591.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,634,1454.000000,172,0,37764.000000,607.600000,extended,nbiot,60 +on8,0,0,24,1,0,1005,1465.000000,172,0,58012.000000,612.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1451.000000,172,0,-1.000000,736.400000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1140,1440.000000,172,0,69833.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,87,1447.000000,172,0,7051.000000,604.800000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,201,1441.000000,172,0,11404.000000,602.400000,extended,nbiot,60 +on0,1,6,24,0,0,0,1482.000000,173,0,-1.000000,748.800000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,930,1450.000000,173,0,54118.000000,606.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,480,1440.000000,173,0,29220.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,147,1447.000000,173,0,8239.000000,604.800000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,220,1460.000000,173,0,13328.000000,610.000000,extended,nbiot,60 +on4,0,0,24,1,0,189,1440.000000,173,0,13368.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,173,0,34229.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,960,1440.000000,174,0,60991.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,720,1440.000000,174,0,46563.000000,602.000000,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,240,1440.000000,174,0,14663.000000,602.000000,extended,nbiot,60 +on7,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,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,327,1447.000000,174,0,18372.000000,604.800000,extended,nbiot,60 +on1,0,0,24,1,0,1320,1440.000000,174,0,82732.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1487.000000,174,0,-1.000000,750.800000,extended,nbiot,60 +on2,0,0,24,1,0,714,1474.000000,174,0,39919.000000,615.600000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,175,0,3755.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1489.000000,175,0,-1.000000,725.600000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,175,0,2684.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,175,0,42213.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,175,0,18823.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,780,1440.000000,175,0,50177.000000,602.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1320,1440.000000,176,0,82457.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,949,1469.000000,176,0,57470.000000,613.600000,extended,nbiot,60 +on0,1,6,24,0,0,0,1499.000000,176,0,-1.000000,755.600000,extended,nbiot,60 +on4,0,0,24,1,0,468,1468.000000,176,0,25290.000000,613.200000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,176,0,39917.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,162,1462.000000,176,0,7673.000000,610.800000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,133,1440.000000,176,0,7633.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,685,1445.000000,177,0,41871.000000,604.000000,extended,nbiot,60 +on2,0,0,24,1,0,191,1440.000000,177,0,12436.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,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,240,1440.000000,177,0,16814.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,830,1470.000000,177,0,49576.000000,614.000000,extended,nbiot,60 +on6,0,0,24,1,0,401,1461.000000,177,0,21712.000000,610.400000,extended,nbiot,60 +on9,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,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,177,0,-1.000000,706.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1493.000000,178,0,-1.000000,753.200000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,720,1440.000000,178,0,44613.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,154,1454.000000,178,0,9876.000000,607.600000,extended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,178,0,38673.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,300,1440.000000,178,0,20856.000000,602.000000,extended,nbiot,60 +on9,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 +on3,0,0,24,1,0,124,1440.000000,178,0,9836.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,240,1440.000000,178,0,16192.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,28,1448.000000,179,0,458.000000,605.200000,extended,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,179,0,35382.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,179,0,9110.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1502.000000,179,0,-1.000000,756.800000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,883,1463.000000,179,0,52885.000000,611.200000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1245,1465.000000,179,0,72235.000000,612.000000,extended,nbiot,60 +on9,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 +on6,0,0,24,1,0,240,1440.000000,179,0,17755.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,102,1462.000000,180,0,4265.000000,610.800000,extended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,180,0,3159.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,360,1440.000000,180,0,24965.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,482,1440.000000,180,0,31831.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,300,1440.000000,180,0,20118.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,540,1440.000000,180,0,35529.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,1140,1440.000000,180,0,68613.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,931,1451.000000,180,0,54691.000000,606.400000,extended,nbiot,60 +on0,1,9,24,0,0,0,1524.000000,180,0,-1.000000,843.600000,extended,nbiot,60 +on8,0,0,24,1,0,1155,1440.000000,180,0,68573.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1477.000000,181,0,-1.000000,824.800000,extended,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,181,0,691.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,88,1448.000000,181,0,5280.000000,605.200000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,597,1477.000000,181,0,32811.000000,616.800000,extended,nbiot,60 +on5,0,0,24,1,0,676,1440.000000,181,0,43012.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,641,1461.000000,181,0,37982.000000,610.400000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,391,1451.000000,181,0,22553.000000,606.400000,extended,nbiot,60 +on4,0,0,24,1,0,519,1459.000000,181,0,31152.000000,609.600000,extended,nbiot,60 +on7,0,0,24,1,0,60,1440.000000,181,0,5240.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,1264,1440.000000,181,0,75839.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1020,1440.000000,182,0,63206.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,360,1440.000000,182,0,23295.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1541.000000,182,0,-1.000000,824.400000,extended,nbiot,60 +on6,0,0,24,1,0,780,1440.000000,182,0,47606.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,182,0,12059.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,540,1440.000000,182,0,34542.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1145,1440.000000,182,0,68835.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,879,1459.000000,182,0,51381.000000,609.600000,extended,nbiot,60 +on9,0,0,24,1,0,314,1440.000000,182,0,19511.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1489.000000,183,0,-1.000000,699.600000,extended,nbiot,60 +on5,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 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1140,1440.000000,183,0,71352.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,186,1440.000000,183,0,13776.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,420,1440.000000,183,0,26080.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,600,1440.000000,183,0,39103.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,888,1468.000000,184,0,53980.000000,613.200000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,768,1468.000000,184,0,45323.000000,613.200000,extended,nbiot,60 +on12,0,0,24,1,0,221,1461.000000,184,0,12086.000000,610.400000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,704,1464.000000,184,0,43034.000000,611.600000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,900,1440.000000,184,0,55341.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,873,1453.000000,184,0,53940.000000,607.200000,extended,nbiot,60 +on0,1,6,24,0,0,0,1489.000000,184,0,-1.000000,751.600000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,185,0,11659.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,261,1441.000000,185,0,17620.000000,602.400000,extended,nbiot,60 +on10,0,0,24,1,0,60,1440.000000,185,0,6992.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,825,1465.000000,185,0,47164.000000,612.000000,extended,nbiot,60 +on12,0,0,24,1,0,1382,1440.000000,185,0,85320.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1477.000000,185,0,-1.000000,772.800000,extended,nbiot,60 +on1,0,0,24,1,0,569,1449.000000,185,0,33858.000000,605.600000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,185,0,29007.000000,602.000000,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,1,0,60,1440.000000,186,0,5332.000000,602.000000,extended,nbiot,60 +on0,1,11,24,0,0,0,1518.000000,186,0,-1.000000,893.200000,extended,nbiot,60 +on4,0,0,24,1,0,854,1440.000000,186,0,53831.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,186,0,46636.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,360,1440.000000,186,0,24090.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,330,1450.000000,186,0,20427.000000,606.000000,extended,nbiot,60 +on2,0,0,24,1,0,519,1459.000000,186,0,29487.000000,609.600000,extended,nbiot,60 +on5,0,0,24,1,0,1200,1440.000000,186,0,73063.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,244,1440.000000,186,0,16334.000000,602.000000,extended,nbiot,60 +on3,0,0,24,1,0,243,1440.000000,186,0,16294.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,20,1440.000000,186,0,1098.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,186,0,8157.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,13,1440.000000,187,0,1180.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,187,0,-1.000000,758.000000,extended,nbiot,60 +on11,0,0,24,1,0,782,1440.000000,187,0,49269.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,885,1465.000000,187,0,53113.000000,612.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1322,1440.000000,187,0,80853.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,951,1471.000000,187,0,56291.000000,614.400000,extended,nbiot,60 +on7,0,0,24,1,0,575,1455.000000,187,0,34850.000000,608.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,259,1440.000000,187,0,17699.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,1260,1440.000000,188,0,78180.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,480,1440.000000,188,0,30200.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,188,0,8265.000000,602.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1494.000000,188,0,-1.000000,831.600000,extended,nbiot,60 +on3,0,0,24,1,0,1380,1440.000000,188,0,84087.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,188,0,25412.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1048,1448.000000,188,0,61731.000000,605.200000,extended,nbiot,60 +on5,0,0,24,1,0,1080,1440.000000,188,0,67057.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,21,1441.000000,188,0,1358.000000,602.400000,extended,nbiot,60 +on10,0,0,24,1,0,440,1440.000000,188,0,25452.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,189,0,31778.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1488.000000,189,0,-1.000000,751.200000,extended,nbiot,60 +on7,0,0,24,1,0,748,1448.000000,189,0,45869.000000,605.200000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,271,1451.000000,189,0,15276.000000,606.400000,extended,nbiot,60 +on3,0,0,24,1,0,720,1440.000000,189,0,45917.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,264,1444.000000,189,0,15316.000000,603.600000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on2,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 +on10,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1147,1440.000000,189,0,69365.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1509.000000,190,0,-1.000000,733.600000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,660,1440.000000,190,0,42400.000000,602.000000,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,1,0,420,1440.000000,190,0,27964.000000,602.000000,extended,nbiot,60 +on7,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 +on9,0,0,24,1,0,240,1440.000000,190,0,16189.000000,602.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,190,0,18693.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,220,1460.000000,190,0,11641.000000,610.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1487.000000,191,0,-1.000000,724.800000,extended,nbiot,60 +on3,0,0,24,1,0,364,1440.000000,191,0,23625.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1260,1440.000000,191,0,76726.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,191,0,11700.000000,602.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,191,0,29850.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,780,1440.000000,191,0,47564.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,73,1440.000000,192,0,3773.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,840,1440.000000,192,0,52516.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1464.000000,192,0,-1.000000,663.600000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,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,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,316,1440.000000,192,0,19066.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,360,1440.000000,193,0,22657.000000,602.000000,extended,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,193,0,13046.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,17,1440.000000,193,0,1851.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,720,1440.000000,193,0,46270.000000,602.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,601,1440.000000,193,0,37186.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,780,1440.000000,193,0,48563.000000,602.000000,extended,nbiot,60 +on10,0,0,24,1,0,309,1440.000000,193,0,19216.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1479.000000,193,0,-1.000000,773.600000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,474,1474.000000,194,0,27259.000000,615.600000,extended,nbiot,60 +on0,1,4,24,0,0,0,1492.000000,194,0,-1.000000,700.800000,extended,nbiot,60 +on8,0,0,24,1,0,27,1447.000000,194,0,740.000000,604.800000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,194,0,31853.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,60,1440.000000,194,0,6339.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,195,0,36715.000000,602.000000,extended,nbiot,60 +on1,0,0,24,1,0,481,1440.000000,195,0,29763.000000,602.000000,extended,nbiot,60 +on11,0,0,24,1,0,529,1469.000000,195,0,29723.000000,613.600000,extended,nbiot,60 +on10,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,49,1469.000000,195,0,1669.000000,613.600000,extended,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,195,0,20092.000000,602.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1543.000000,195,0,-1.000000,799.200000,extended,nbiot,60 +on3,0,0,24,1,0,420,1440.000000,195,0,27670.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,15,1440.000000,195,0,1709.000000,602.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,360,1440.000000,196,0,23474.000000,602.000000,extended,nbiot,60 +on4,0,0,24,1,0,660,1440.000000,196,0,43119.000000,602.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1528.000000,196,0,-1.000000,819.200000,extended,nbiot,60 +on12,0,0,24,1,0,1140,1440.000000,196,0,71131.000000,602.000000,extended,nbiot,60 +on8,0,0,24,1,0,191,1440.000000,196,0,12481.000000,602.000000,extended,nbiot,60 +on9,0,0,24,1,0,1227,1447.000000,196,0,73067.000000,604.800000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,269,1449.000000,196,0,14756.000000,605.600000,extended,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,196,0,19184.000000,602.000000,extended,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,196,0,2126.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1469.000000,197,0,-1.000000,743.600000,extended,nbiot,60 +on6,0,0,24,1,0,449,1449.000000,197,0,26522.000000,605.600000,extended,nbiot,60 +on9,0,0,24,1,0,1082,1440.000000,197,0,68005.000000,602.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,259,1440.000000,197,0,17730.000000,602.000000,extended,nbiot,60 +on1,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 +on10,0,0,24,1,0,298,1478.000000,197,0,17690.000000,617.200000,extended,nbiot,60 +on2,0,0,24,1,0,660,1440.000000,197,0,41947.000000,602.000000,extended,nbiot,60 +on7,0,0,24,1,0,1183,1463.000000,197,0,70714.000000,611.200000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,477,1477.000000,198,0,28608.000000,616.800000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,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,300,1440.000000,198,0,19251.000000,602.000000,extended,nbiot,60 +on12,0,0,24,1,0,1118,1458.000000,198,0,68136.000000,609.200000,extended,nbiot,60 +on11,0,0,24,1,0,1424,1464.000000,198,0,85550.000000,611.600000,extended,nbiot,60 +on10,0,0,24,1,0,1098,1440.000000,198,0,68096.000000,602.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1468.000000,198,0,-1.000000,743.200000,extended,nbiot,60 +on4,0,0,24,1,0,1071,1471.000000,198,0,63240.000000,614.400000,extended,nbiot,60 +on5,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 +on0,1,7,24,0,0,0,1478.000000,199,0,-1.000000,773.200000,extended,nbiot,60 +on9,0,0,24,1,0,960,1440.000000,199,0,59944.000000,602.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,99,1459.000000,199,0,3865.000000,609.600000,extended,nbiot,60 +on5,0,0,24,1,0,114,1474.000000,199,0,3825.000000,615.600000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,509,1449.000000,199,0,31529.000000,605.600000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,199,0,15636.000000,602.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,634,1454.000000,199,0,37628.000000,607.600000,extended,nbiot,60 +on4,0,0,24,1,0,123,1440.000000,199,0,10304.000000,602.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,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,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1456.000000,200,0,-1.000000,686.400000,extended,nbiot,60 +on7,0,0,24,1,0,1260,1440.000000,200,0,76466.000000,602.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1141,1440.000000,200,0,69139.000000,602.000000,extended,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,200,0,18280.000000,602.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,220,1460.000000,200,0,13879.000000,610.000000,extended,nbiot,60 +on3,0,0,24,1,0,695,1455.000320,1,0,41841.000320,645.310752,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1463.201600,1,0,-1.000000,767.283552,hintandextended,nbiot,60 +on8,0,0,24,1,0,258,1440.000000,1,0,17694.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,932,1452.000320,1,0,57349.000320,606.800336,hintandextended,nbiot,60 +on1,0,0,25,1,0,1080,1500.000000,1,1,67118.600640,664.545624,hintandextended,nbiot,60 +on9,0,0,24,1,0,600,1440.000000,1,0,37476.000320,602.000416,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1153,1440.000000,1,0,71453.000320,606.550000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,26,1,0,978,1580.600960,1,2,57389.600960,735.135800,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,2,0,39851.000320,640.350208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1474.000320,2,0,-1.000000,719.601168,hintandextended,nbiot,60 +on1,0,0,24,1,0,600,1440.000000,2,0,38607.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,12,1440.000000,2,0,3115.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1366,1466.000320,2,0,80625.000320,612.400336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,255,1440.000000,2,0,17907.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,1,0,1020,1440.000000,3,0,64495.000320,612.920000,hintandextended,nbiot,60 +on9,0,0,24,1,0,456,1456.000320,3,0,25921.000320,608.400336,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1516.202560,3,0,-1.000000,892.484976,hintandextended,nbiot,60 +on3,0,0,25,1,0,470,1500.000000,3,1,31034.000320,707.900000,hintandextended,nbiot,60 +on5,0,0,26,1,0,1243,1580.600960,3,3,75123.600960,756.845592,hintandextended,nbiot,60 +on2,0,0,25,1,0,317,1500.000000,3,1,23978.000320,653.170000,hintandextended,nbiot,60 +on11,0,0,27,1,0,456,1640.600960,3,4,25961.600960,747.696008,hintandextended,nbiot,60 +on1,0,0,24,1,0,1254,1474.000320,3,0,75083.000320,615.600336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,3,0,19042.000320,612.920000,hintandextended,nbiot,60 +on7,0,0,25,1,0,1058,1500.000000,3,1,66226.000320,626.000208,hintandextended,nbiot,60 +on10,0,0,26,1,0,1142,1560.000000,3,3,70118.000320,670.150000,hintandextended,nbiot,60 +on6,0,0,25,1,0,1302,1500.000000,3,1,81667.000320,626.000208,hintandextended,nbiot,60 +on12,0,0,25,1,0,240,1500.000000,4,1,16257.600640,663.506040,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,435,1440.000000,4,0,28510.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,1,0,1391,1440.000000,4,0,84027.000000,602.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1476.600960,4,0,-1.000000,798.642880,hintandextended,nbiot,60 +on4,0,0,25,1,0,390,1500.000000,4,1,24311.000320,626.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,221,1461.000320,4,0,11777.000320,610.400336,hintandextended,nbiot,60 +on7,0,0,24,1,0,755,1455.000320,4,0,44149.000320,608.000544,hintandextended,nbiot,60 +on2,0,0,24,1,0,1200,1440.000000,4,0,72991.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1260,1440.000000,4,0,76159.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,26,1,0,259,1581.600960,5,2,12518.600960,691.141008,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,5,0,10062.000320,652.310208,hintandextended,nbiot,60 +on6,0,0,25,1,0,339,1500.000000,5,1,21787.000320,660.450416,hintandextended,nbiot,60 +on11,0,0,24,1,0,255,1440.000000,5,0,16969.000320,604.600000,hintandextended,nbiot,60 +on9,0,0,26,1,0,449,1560.000000,5,3,26578.000320,675.999792,hintandextended,nbiot,60 +on5,0,0,25,1,0,172,1500.000000,5,1,12477.000320,668.704584,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,26,1,0,334,1560.000000,5,2,19831.000320,713.309792,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,26,1,0,228,1580.000960,5,2,17009.000960,722.481008,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1503.202880,5,0,-1.000000,835.285520,hintandextended,nbiot,60 +on10,0,0,25,1,0,158,1518.600960,5,1,10103.600960,680.760592,hintandextended,nbiot,60 +on2,0,0,24,1,0,360,1440.000000,6,0,22689.000320,639.700208,hintandextended,nbiot,60 +on3,0,0,26,1,0,493,1560.000000,6,3,33034.000320,764.659584,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,114,1474.000320,6,0,4695.000320,615.600336,hintandextended,nbiot,60 +on6,0,0,26,1,0,566,1581.600960,6,2,31589.600960,708.950384,hintandextended,nbiot,60 +on9,0,0,26,1,0,619,1581.600960,6,2,33075.600960,673.590800,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,529,1500.000000,6,1,31548.000320,638.805000,hintandextended,nbiot,60 +on8,0,0,25,1,0,468,1500.000000,6,1,27725.000320,633.800416,hintandextended,nbiot,60 +on11,0,0,24,1,0,266,1446.000320,6,0,14541.000320,604.400336,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1509.202240,6,0,-1.000000,837.684224,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,212,1452.000320,6,0,14236.000320,606.800336,hintandextended,nbiot,60 +on5,0,0,24,1,0,0,1440.000000,7,0,426.000320,602.000416,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1502.000640,7,0,-1.000000,808.803376,hintandextended,nbiot,60 +on9,0,0,26,1,0,572,1560.000000,7,3,34469.000320,663.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,7,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 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,252,1440.000000,7,0,14483.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,398,1500.000000,7,1,27872.000320,662.660000,hintandextended,nbiot,60 +on7,0,0,24,1,0,420,1440.000000,7,0,27916.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,26,1,0,596,1560.000000,7,3,37003.000320,663.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,300,1500.000000,7,1,18546.600640,673.516040,hintandextended,nbiot,60 +on10,0,0,25,1,0,458,1500.000000,7,1,31574.000320,643.810208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,984,1444.000320,8,0,60269.000320,603.600336,hintandextended,nbiot,60 +on8,0,0,25,1,0,780,1500.000000,8,1,49445.600640,662.205832,hintandextended,nbiot,60 +on9,0,0,24,1,0,1398,1460.000000,8,1,83646.000000,610.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1486.600960,8,0,-1.000000,802.642672,hintandextended,nbiot,60 +on7,0,0,25,1,0,1358,1500.000000,8,1,83606.000000,626.845000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,878,1500.000000,8,1,56076.000320,626.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,600,1440.000000,8,0,37231.000320,604.600416,hintandextended,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,8,0,34011.000320,602.000416,hintandextended,nbiot,60 +on6,0,0,24,1,0,35,1455.000320,8,0,560.000320,608.000336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,27,1,0,520,1641.600960,9,4,29088.600960,770.390592,hintandextended,nbiot,60 +on7,0,0,24,1,0,622,1442.000320,9,0,37342.000320,602.800336,hintandextended,nbiot,60 +on12,0,0,25,1,0,278,1500.000000,9,1,18317.000320,694.510208,hintandextended,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,9,0,13167.000320,613.959792,hintandextended,nbiot,60 +on4,0,0,26,1,0,423,1560.000000,9,3,25905.000320,700.310000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,26,1,0,329,1560.000000,9,3,23258.000320,728.910208,hintandextended,nbiot,60 +on9,0,0,25,1,0,198,1500.000000,9,1,13208.600960,626.000416,hintandextended,nbiot,60 +on5,0,0,25,1,0,199,1500.000000,9,1,14635.000320,701.919792,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1489.201920,9,0,-1.000000,829.684512,hintandextended,nbiot,60 +on6,0,0,25,1,0,472,1500.000000,9,1,29047.000320,637.959792,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,459,1500.000000,10,1,28150.000320,626.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,10,0,-1.000000,732.002080,hintandextended,nbiot,60 +on8,0,0,24,1,0,583,1463.000320,10,0,34488.000320,611.200544,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,150,1450.000320,10,0,8529.000320,606.000544,hintandextended,nbiot,60 +on4,0,0,25,1,0,281,1500.000000,10,2,20429.000320,663.050208,hintandextended,nbiot,60 +on1,0,0,24,1,0,363,1440.000000,10,0,21945.000320,639.310208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,248,1440.000000,10,0,16509.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1080,1500.000000,11,1,65483.000320,626.000416,hintandextended,nbiot,60 +on6,0,0,26,1,0,356,1560.000000,11,3,21066.000320,663.845000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1450.000640,11,0,-1.000000,814.003168,hintandextended,nbiot,60 +on4,0,0,24,1,0,65,1440.000000,11,0,4752.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,661,1440.000000,11,0,41751.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,120,1440.000000,11,0,8993.000320,606.160000,hintandextended,nbiot,60 +on7,0,0,26,1,0,296,1560.000000,11,3,16972.000320,663.845000,hintandextended,nbiot,60 +on12,0,0,25,1,0,401,1537.000000,11,3,21823.000320,653.800000,hintandextended,nbiot,60 +on10,0,0,25,1,0,196,1500.000000,11,1,13774.000320,626.845208,hintandextended,nbiot,60 +on5,0,0,24,1,0,577,1457.000320,11,0,32988.000320,612.700336,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,900,1500.000000,12,1,56206.000320,664.350416,hintandextended,nbiot,60 +on2,0,0,25,1,0,360,1500.000000,12,1,24927.000320,663.310416,hintandextended,nbiot,60 +on10,0,0,27,1,0,300,1640.600960,12,4,21381.600960,750.035592,hintandextended,nbiot,60 +on9,0,0,25,1,0,965,1500.000000,12,1,60773.000320,673.970208,hintandextended,nbiot,60 +on1,0,0,24,1,0,217,1457.000320,12,0,12480.000320,608.800336,hintandextended,nbiot,60 +on7,0,0,24,1,0,320,1440.000320,12,0,21341.000320,640.350544,hintandextended,nbiot,60 +on4,0,0,24,1,0,1080,1440.000000,12,0,64898.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,25,1,0,226,1500.000000,12,1,15378.000320,651.350416,hintandextended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,12,0,61353.000320,615.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,840,1500.000000,12,1,52919.600640,651.805624,hintandextended,nbiot,60 +on5,0,0,25,1,0,120,1500.000000,12,1,8172.600640,663.505624,hintandextended,nbiot,60 +on8,0,0,25,1,0,527,1500.000000,12,1,31564.000320,626.000416,hintandextended,nbiot,60 +on0,1,12,24,0,0,0,1535.802880,12,0,-1.000000,926.326768,hintandextended,nbiot,60 +on11,0,0,26,1,0,139,1581.600960,13,2,6307.600960,709.990592,hintandextended,nbiot,60 +on2,0,0,25,1,0,158,1518.600960,13,1,9932.600960,649.300800,hintandextended,nbiot,60 +on5,0,0,24,1,0,819,1459.000320,13,0,47478.000320,609.600544,hintandextended,nbiot,60 +on3,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 +on7,0,0,25,1,0,90,1500.000000,13,1,6266.000320,638.805000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1545.802560,13,0,-1.000000,852.325184,hintandextended,nbiot,60 +on4,0,0,24,1,0,1380,1440.000000,13,0,84912.000000,602.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,158,1500.000000,13,1,9891.000320,662.010416,hintandextended,nbiot,60 +on12,0,0,25,1,0,0,1500.000000,13,1,1349.600640,670.525000,hintandextended,nbiot,60 +on8,0,0,25,1,0,220,1500.000000,13,1,14795.000320,664.350416,hintandextended,nbiot,60 +on6,0,0,25,1,0,1358,1500.000000,13,1,84863.000000,626.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,840,1500.000000,14,1,52074.600640,667.145624,hintandextended,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,14,0,44176.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,130,1440.000000,14,0,9468.000320,602.000416,hintandextended,nbiot,60 +on3,0,0,24,1,0,917,1440.000000,14,0,54710.000320,603.950000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1393,1440.000000,14,0,83507.000000,602.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1460.600640,14,0,-1.000000,818.243584,hintandextended,nbiot,60 +on11,0,0,24,1,0,1012,1472.000320,14,0,59274.000320,614.800336,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,17,1440.000000,14,0,1245.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,198,1440.000000,14,0,12275.000320,640.350832,hintandextended,nbiot,60 +on9,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 +on4,0,0,25,1,0,73,1500.000000,14,2,5802.000320,680.600208,hintandextended,nbiot,60 +on8,0,0,26,1,0,679,1560.000000,15,3,41460.000320,738.660416,hintandextended,nbiot,60 +on6,0,0,25,1,0,629,1500.000000,15,1,38611.000320,626.845208,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1484.602240,15,0,-1.000000,879.844640,hintandextended,nbiot,60 +on9,0,0,26,1,0,800,1580.600960,15,2,46092.600960,696.786008,hintandextended,nbiot,60 +on3,0,0,25,1,0,165,1500.000000,15,1,12634.000320,639.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,779,1479.000320,15,0,46052.000320,617.600336,hintandextended,nbiot,60 +on4,0,0,26,1,0,204,1580.000960,15,2,10573.000960,658.001008,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,15,0,35405.000320,613.960000,hintandextended,nbiot,60 +on12,0,0,24,1,0,892,1472.000320,15,0,52670.000320,614.800336,hintandextended,nbiot,60 +on5,0,0,24,1,0,155,1455.000320,15,0,10533.000320,608.000336,hintandextended,nbiot,60 +on10,0,0,24,1,0,983,1443.000320,15,0,58047.000320,603.200336,hintandextended,nbiot,60 +on1,0,0,24,1,0,116,1476.000320,15,0,5891.000320,653.710336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,620,1440.000320,16,0,36499.000320,639.310336,hintandextended,nbiot,60 +on9,0,0,25,1,0,719,1500.000000,16,1,41470.000320,626.000416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,16,0,-1.000000,654.000832,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,16,0,5369.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1472.601280,17,0,-1.000000,745.042384,hintandextended,nbiot,60 +on5,0,0,24,1,0,1336,1440.000000,17,0,82286.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,834,1474.000320,17,0,49710.000320,615.600336,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1169,1449.000320,17,0,70999.000320,605.600336,hintandextended,nbiot,60 +on3,0,0,25,1,0,871,1564.600960,17,2,49750.600960,652.036008,hintandextended,nbiot,60 +on6,0,0,24,1,0,89,1449.000320,17,0,5254.000320,642.910544,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1260,1440.000000,17,0,77499.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,1200,1500.000000,18,1,73166.600640,626.195624,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,414,1474.000320,18,0,22122.000320,615.600544,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1521.600960,18,0,-1.000000,816.642672,hintandextended,nbiot,60 +on1,0,0,24,1,0,1380,1440.000000,18,0,84817.000000,602.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,615,1440.000000,18,0,39193.000320,602.000416,hintandextended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,18,0,20074.000320,615.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1268,1440.000000,18,0,76521.000320,609.800000,hintandextended,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,18,0,12405.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,1,0,486,1440.000000,18,0,29459.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,255,1440.000000,19,0,16458.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,19,0,13077.000320,602.000208,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1449.000320,19,0,-1.000000,683.600960,hintandextended,nbiot,60 +on3,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 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1016,1476.000320,19,0,58734.000320,616.400336,hintandextended,nbiot,60 +on8,0,0,24,1,0,420,1440.000000,19,0,26978.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,835,1475.000320,20,0,49016.000320,654.350336,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,600,1500.000000,20,1,38132.600640,664.545624,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1442.600640,20,0,-1.000000,759.042752,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,1080,1500.000000,20,1,64377.000320,626.000208,hintandextended,nbiot,60 +on8,0,0,24,1,0,332,1452.000320,20,0,20704.000320,606.800336,hintandextended,nbiot,60 +on1,0,0,24,1,0,74,1440.000000,20,0,5884.000320,602.000208,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,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,900,1500.000000,20,1,55627.600640,663.505832,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1188,1468.000320,20,0,69517.000320,613.200336,hintandextended,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,21,0,472.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,158,1500.000000,21,1,9849.000320,626.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,998,1500.000000,21,1,61566.000320,637.959792,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1511.601280,21,0,-1.000000,838.643216,hintandextended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,21,0,84449.000000,602.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,105,1465.000320,21,0,5421.000320,623.960752,hintandextended,nbiot,60 +on12,0,0,24,1,0,220,1460.000320,21,0,12836.000320,610.000336,hintandextended,nbiot,60 +on7,0,0,25,1,0,1057,1517.600960,21,1,61607.600960,695.050800,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,1119,1500.000000,21,1,70698.000320,664.350208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,960,1500.000000,21,1,59642.600640,639.195208,hintandextended,nbiot,60 +on3,0,0,25,1,0,518,1500.000000,22,1,34094.000320,638.350000,hintandextended,nbiot,60 +on10,0,0,24,1,0,814,1475.000320,22,1,49799.000320,653.700752,hintandextended,nbiot,60 +on11,0,0,25,1,0,720,1500.000000,22,1,41610.000320,626.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,22,0,26330.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,25,1,0,60,1500.000000,22,1,6100.600640,626.195832,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,545,1500.000000,22,1,34134.000960,663.310624,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1519.001920,22,0,-1.000000,893.605552,hintandextended,nbiot,60 +on9,0,0,24,1,0,770,1470.000320,22,0,43603.000320,627.910336,hintandextended,nbiot,60 +on5,0,0,26,1,0,618,1560.000000,22,2,36273.000320,714.350000,hintandextended,nbiot,60 +on12,0,0,25,1,0,480,1500.000000,22,1,29436.000320,637.960416,hintandextended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,22,0,11225.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,29,1449.000320,22,0,1364.000320,625.360544,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,838,1500.000000,23,1,49865.000320,626.000208,hintandextended,nbiot,60 +on6,0,0,24,1,0,1259,1479.000320,23,0,72408.000320,617.600336,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,23,0,43601.000320,639.310208,hintandextended,nbiot,60 +on7,0,0,25,1,0,281,1500.000000,23,1,17011.000320,663.700416,hintandextended,nbiot,60 +on4,0,0,24,1,0,707,1467.000320,23,0,42397.000320,612.800336,hintandextended,nbiot,60 +on9,0,0,25,1,0,1433,1500.000000,23,1,85304.000000,626.845000,hintandextended,nbiot,60 +on3,0,0,25,1,0,1461,1520.000000,23,1,85344.000000,634.000000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1492.600640,23,0,-1.000000,857.042544,hintandextended,nbiot,60 +on1,0,0,24,1,0,139,1440.000000,23,0,10478.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,25,1,0,120,1500.000000,23,1,10530.600640,663.505624,hintandextended,nbiot,60 +on2,0,0,24,1,0,1353,1453.000320,23,0,81635.000320,607.200336,hintandextended,nbiot,60 +on3,0,0,24,1,0,693,1453.000320,24,0,41789.000320,607.200336,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1496.202240,24,0,-1.000000,832.484432,hintandextended,nbiot,60 +on6,0,0,26,1,0,438,1580.600960,24,2,26281.600960,724.605592,hintandextended,nbiot,60 +on8,0,0,25,1,0,482,1500.000000,24,1,31001.000320,660.580000,hintandextended,nbiot,60 +on5,0,0,24,1,0,599,1479.000320,24,0,35647.000320,617.600544,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,300,1440.000000,24,0,20146.000320,613.960000,hintandextended,nbiot,60 +on4,0,0,25,1,0,341,1500.000000,24,1,22530.000320,645.760208,hintandextended,nbiot,60 +on7,0,0,24,1,0,478,1478.000320,24,0,26241.000320,622.400336,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,584,1500.000000,24,1,38563.000320,636.400208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,537,1581.600960,24,2,31042.600960,696.991008,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,25,0,17130.000320,602.000416,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,540,1440.000000,25,0,33048.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,1,0,1320,1440.000000,25,0,81233.000320,604.600208,hintandextended,nbiot,60 +on1,0,0,24,1,0,1426,1466.000000,25,0,85248.000000,612.400000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1503.000640,25,0,-1.000000,783.202336,hintandextended,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,25,0,1073.000320,602.000624,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,902,1440.000000,25,0,57487.000320,602.000416,hintandextended,nbiot,60 +on2,0,0,24,1,0,1198,1478.000320,25,0,69344.000320,617.200336,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,60,1500.000000,26,1,5815.600640,663.505624,hintandextended,nbiot,60 +on1,0,0,25,1,0,278,1500.000000,26,1,18556.000320,664.350416,hintandextended,nbiot,60 +on9,0,0,26,1,0,236,1580.600960,26,2,13191.600960,699.906424,hintandextended,nbiot,60 +on6,0,0,24,1,0,179,1479.000320,26,0,7385.000320,617.600336,hintandextended,nbiot,60 +on12,0,0,24,1,0,1376,1476.000320,26,0,81365.000320,616.400336,hintandextended,nbiot,60 +on7,0,0,24,1,0,1434,1474.000000,26,0,84811.000000,615.600000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1419,1459.000000,26,0,84851.000000,609.600000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1484.201920,26,0,-1.000000,853.684096,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,536,1500.000000,26,1,30492.000320,639.000208,hintandextended,nbiot,60 +on5,0,0,24,1,0,226,1466.000320,26,0,13151.000320,612.400336,hintandextended,nbiot,60 +on3,0,0,24,1,0,240,1440.000000,26,0,16811.000320,602.000208,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1472.600960,27,0,-1.000000,849.043920,hintandextended,nbiot,60 +on2,0,0,25,1,0,480,1500.000000,27,1,31719.600640,713.425416,hintandextended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,27,0,27127.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,384,1444.000320,27,0,22269.000320,603.600336,hintandextended,nbiot,60 +on1,0,0,24,1,0,72,1440.000000,27,0,6418.000320,602.000416,hintandextended,nbiot,60 +on8,0,0,24,1,0,1028,1440.000000,27,0,64117.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,965,1440.000000,27,0,58245.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,25,1,0,618,1500.000000,27,1,37258.000320,647.450416,hintandextended,nbiot,60 +on12,0,0,24,1,0,339,1459.000320,27,0,19168.000320,609.600336,hintandextended,nbiot,60 +on4,0,0,26,1,0,678,1560.000000,27,3,40089.000320,663.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,1041,1500.000000,27,2,65760.000320,651.350000,hintandextended,nbiot,60 +on4,0,0,24,1,0,70,1440.000000,28,0,5993.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,171,1471.000320,28,0,9151.000320,614.400336,hintandextended,nbiot,60 +on9,0,0,24,1,0,934,1454.000320,28,0,56204.000320,607.600336,hintandextended,nbiot,60 +on10,0,0,25,1,0,269,1500.000000,28,1,15404.000320,650.245000,hintandextended,nbiot,60 +on5,0,0,26,1,0,274,1580.000960,28,2,15444.000960,683.090592,hintandextended,nbiot,60 +on6,0,0,26,1,0,436,1560.000000,28,2,24758.000320,714.350208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1500.002880,28,0,-1.000000,860.005104,hintandextended,nbiot,60 +on2,0,0,25,1,0,137,1500.000000,28,1,9191.000960,639.910416,hintandextended,nbiot,60 +on7,0,0,26,1,0,341,1560.000000,28,2,21573.000320,691.795208,hintandextended,nbiot,60 +on3,0,0,26,1,0,396,1640.000960,28,3,21613.000960,733.545384,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,161,1490.000000,28,1,12883.000320,667.500000,hintandextended,nbiot,60 +on5,0,0,26,1,0,1219,1560.000000,29,3,72993.000320,676.650000,hintandextended,nbiot,60 +on2,0,0,24,1,0,360,1481.000000,29,1,24460.600640,703.615416,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,1090,1500.000000,29,1,66657.000320,693.470208,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1469.201600,29,0,-1.000000,847.684800,hintandextended,nbiot,60 +on9,0,0,25,1,0,1158,1515.000000,29,3,71595.000320,645.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,490,1440.000000,29,0,31149.000320,607.460000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1320,1440.000000,29,0,81196.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,1,0,358,1478.000320,29,0,19064.000320,617.200544,hintandextended,nbiot,60 +on3,0,0,26,1,0,572,1581.600960,29,2,31190.600960,667.611008,hintandextended,nbiot,60 +on1,0,0,24,1,0,840,1440.000000,29,0,53124.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,420,1500.000000,29,1,28623.600640,639.195208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,30,0,-1.000000,602.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,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 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,30,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 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,398,1458.000320,30,0,25147.000320,609.200336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,31,0,11816.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,3,24,0,0,0,1463.000320,31,0,-1.000000,663.200960,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,720,1440.000000,31,0,44269.000320,602.000416,hintandextended,nbiot,60 +on9,0,0,24,1,0,994,1454.000320,31,0,59269.000320,607.600336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,1170,1560.000000,32,3,70211.000320,663.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,404,1464.000320,32,0,23839.000320,611.600336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1026,1440.000000,32,0,62231.000320,639.310208,hintandextended,nbiot,60 +on9,0,0,24,1,0,1082,1440.000000,32,0,66156.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,1,0,260,1440.000320,32,0,15863.000320,602.000544,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1402,1442.000000,32,0,84264.000000,602.800000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,32,0,-1.000000,784.001872,hintandextended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,32,0,37196.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,451,1451.000320,32,0,27207.000320,606.400336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,998,1458.000320,33,0,57772.000320,647.550544,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,298,1500.000000,33,1,17140.000320,626.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,611,1440.000000,33,0,36724.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,1320,1440.000000,33,0,81614.000320,602.000208,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,33,0,-1.000000,732.001456,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,874,1454.000320,33,0,51244.000320,607.600336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,196,1440.000000,33,0,13082.000320,639.310208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,299,1479.000320,34,0,16938.000320,617.600336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1080,1440.000000,34,0,67028.000320,613.960000,hintandextended,nbiot,60 +on12,0,0,24,1,0,693,1453.000320,34,0,40078.000320,607.200336,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,398,1500.000000,34,1,26254.000320,639.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,1169,1500.000000,34,1,70229.000320,639.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,360,1500.000000,34,1,24051.600640,675.855832,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1465.600960,34,0,-1.000000,742.242256,hintandextended,nbiot,60 +on3,0,0,25,1,0,780,1500.000000,35,1,50102.600640,659.605832,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1500.600960,35,0,-1.000000,860.244336,hintandextended,nbiot,60 +on5,0,0,25,1,0,158,1500.000000,35,1,8901.000320,626.000416,hintandextended,nbiot,60 +on4,0,0,26,1,0,694,1560.000000,35,3,40521.000320,700.310000,hintandextended,nbiot,60 +on12,0,0,25,1,0,480,1500.000000,35,1,30495.600640,704.065832,hintandextended,nbiot,60 +on2,0,0,24,1,0,255,1440.000000,35,0,15202.000320,639.310208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,590,1500.000000,35,1,38842.000320,664.350416,hintandextended,nbiot,60 +on7,0,0,25,1,0,844,1500.000000,35,1,53694.000320,674.230000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,35,0,4456.000320,617.860208,hintandextended,nbiot,60 +on6,0,0,25,1,0,340,1500.000000,35,1,21232.000320,626.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,708,1500.000000,35,1,44746.000320,639.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,90,1450.000320,36,0,6175.000320,606.000336,hintandextended,nbiot,60 +on4,0,0,25,1,0,720,1500.000000,36,1,44463.600640,626.195624,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,36,0,21312.000320,615.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1453.000320,36,0,-1.000000,737.202208,hintandextended,nbiot,60 +on2,0,0,25,1,0,0,1500.000000,36,1,2731.600640,626.195624,hintandextended,nbiot,60 +on5,0,0,24,1,0,947,1467.000320,36,0,56758.000320,631.650336,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,786,1440.000000,36,0,48215.000320,611.100000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1022,1440.000000,37,0,64760.000320,602.000416,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1538.600960,37,0,-1.000000,901.444544,hintandextended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,37,0,83426.000000,602.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,240,1440.000000,37,0,14899.000320,613.960208,hintandextended,nbiot,60 +on10,0,0,24,1,0,369,1440.000000,37,0,24195.000320,609.150208,hintandextended,nbiot,60 +on6,0,0,25,1,0,649,1500.000000,37,1,37918.000320,626.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,1080,1500.000000,37,1,66554.600640,667.145624,hintandextended,nbiot,60 +on9,0,0,25,1,0,458,1500.000000,37,1,29818.000320,700.620208,hintandextended,nbiot,60 +on12,0,0,27,1,0,713,1620.000000,37,5,43046.000320,738.350000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1,1440.000000,37,0,2285.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,25,1,0,574,1500.000000,37,1,35654.000320,686.060416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,285,1500.000000,37,1,19073.000320,626.000416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,273,1453.000320,38,0,14829.000320,607.460544,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,38,0,6740.000320,602.000208,hintandextended,nbiot,60 +on0,1,3,24,0,0,0,1472.000320,38,0,-1.000000,666.800960,hintandextended,nbiot,60 +on12,0,0,25,1,0,1298,1500.000000,38,1,78694.000320,626.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,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,39,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1528.000960,39,0,-1.000000,793.202672,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,199,1440.000000,39,0,11644.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,576,1456.000320,39,0,35484.000320,647.400336,hintandextended,nbiot,60 +on5,0,0,24,1,0,503,1443.000320,39,0,31288.000320,603.200336,hintandextended,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,39,0,62991.000320,602.000208,hintandextended,nbiot,60 +on9,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 +on11,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,437,1440.000000,39,0,27144.000320,602.000624,hintandextended,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,39,0,11695.000320,602.000416,hintandextended,nbiot,60 +on12,0,0,24,1,0,900,1440.000000,39,0,54236.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,26,1,0,318,1560.000000,40,3,18250.000320,665.600208,hintandextended,nbiot,60 +on11,0,0,24,1,0,780,1440.000000,40,0,48049.000320,630.860000,hintandextended,nbiot,60 +on10,0,0,24,1,0,471,1467.000000,40,1,31718.200320,629.700000,hintandextended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,40,0,27707.000320,614.350000,hintandextended,nbiot,60 +on2,0,0,25,1,0,97,1517.600960,40,1,3884.600960,646.040384,hintandextended,nbiot,60 +on4,0,0,24,1,0,227,1467.000320,40,0,11137.000320,642.310336,hintandextended,nbiot,60 +on6,0,0,24,1,0,966,1440.000000,40,0,59153.000320,611.100000,hintandextended,nbiot,60 +on9,0,0,25,1,0,257,1500.000000,40,1,15744.000320,626.000208,hintandextended,nbiot,60 +on5,0,0,24,1,0,134,1440.000000,40,0,7818.000320,604.859792,hintandextended,nbiot,60 +on0,1,12,24,0,0,0,1513.202240,40,0,-1.000000,917.284432,hintandextended,nbiot,60 +on12,0,0,26,1,0,111,1581.600960,40,2,7859.600960,703.100592,hintandextended,nbiot,60 +on8,0,0,25,1,0,864,1500.000000,40,1,53181.000320,679.170208,hintandextended,nbiot,60 +on7,0,0,24,1,0,71,1440.000000,40,0,3843.000320,606.809792,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,26,1,0,512,1560.000000,41,2,32457.000320,752.699792,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,180,1500.000000,41,1,11888.600640,663.505624,hintandextended,nbiot,60 +on12,0,0,26,1,0,515,1581.600960,41,2,29266.600960,659.486008,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,26,1,0,476,1560.000000,41,3,29225.000320,674.959792,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1461.600960,41,0,-1.000000,792.644128,hintandextended,nbiot,60 +on6,0,0,24,1,0,85,1445.000320,41,0,5547.000320,615.700752,hintandextended,nbiot,60 +on4,0,0,25,1,0,398,1500.000000,41,1,25601.000320,664.545208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,344,1500.000000,41,1,20751.000320,630.550208,hintandextended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,41,0,69979.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1427,1467.000000,42,0,83569.000000,612.800000,hintandextended,nbiot,60 +on8,0,0,24,1,0,480,1440.000000,42,0,31798.000320,602.000208,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1502.600960,42,0,-1.000000,757.042464,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,300,1500.000000,42,1,19942.600640,626.195832,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,900,1500.000000,42,1,56769.600640,626.195624,hintandextended,nbiot,60 +on7,0,0,24,1,0,1159,1440.000000,42,0,70834.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,895,1475.000320,42,0,53960.000320,616.000336,hintandextended,nbiot,60 +on5,0,0,24,1,0,420,1440.000000,43,0,28597.000320,652.310000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,43,0,12527.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,1030,1440.000000,43,0,63886.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,120,1440.000000,43,0,8222.000320,602.000208,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1471.000640,43,0,-1.000000,770.401920,hintandextended,nbiot,60 +on7,0,0,25,1,0,520,1500.000000,43,1,31572.000320,626.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,43,0,66480.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,25,1,0,535,1500.000000,43,2,34420.000320,653.950000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,44,0,10237.000320,612.010416,hintandextended,nbiot,60 +on7,0,0,24,1,0,975,1440.000000,44,0,60201.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,26,1,0,476,1560.000000,44,3,28102.000320,663.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,350,1470.000320,44,0,20587.000320,657.810544,hintandextended,nbiot,60 +on9,0,0,24,1,0,24,1444.000320,44,0,1622.000320,603.600336,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1462.000320,44,0,-1.000000,844.803664,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,399,1500.000000,44,1,24438.000320,626.845208,hintandextended,nbiot,60 +on2,0,0,25,1,0,422,1500.000000,44,2,30906.000320,741.050208,hintandextended,nbiot,60 +on11,0,0,24,1,0,642,1462.000320,44,0,37137.000320,610.800544,hintandextended,nbiot,60 +on8,0,0,25,1,0,218,1500.000000,44,1,14097.000320,626.000416,hintandextended,nbiot,60 +on6,0,0,25,1,0,1363,1500.000000,44,1,82493.000320,626.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,221,1461.000320,45,0,11813.000320,610.400544,hintandextended,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,45,0,11871.000320,603.300416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1340,1440.000320,45,0,81274.000320,602.000336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,45,0,32839.000320,602.000208,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,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,26,1,0,1338,1580.600960,45,2,81314.600960,678.195800,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1521.601600,45,0,-1.000000,764.642304,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,1357,1500.000000,45,1,85057.000000,627.690000,hintandextended,nbiot,60 +on6,0,0,24,1,0,438,1440.000000,46,0,28238.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,26,1,0,260,1580.600960,46,2,13456.600960,672.346008,hintandextended,nbiot,60 +on1,0,0,25,1,0,278,1500.000000,46,1,18498.000320,663.310208,hintandextended,nbiot,60 +on11,0,0,25,1,0,639,1500.000000,46,1,37890.000320,626.000208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1479.802560,46,0,-1.000000,851.924768,hintandextended,nbiot,60 +on9,0,0,24,1,0,780,1440.000000,46,0,48628.000320,640.350208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,213,1453.000320,46,0,13416.000320,607.200336,hintandextended,nbiot,60 +on3,0,0,25,1,0,589,1500.000000,46,1,35717.000320,654.210000,hintandextended,nbiot,60 +on5,0,0,25,1,0,60,1500.000000,46,1,5753.600640,663.505624,hintandextended,nbiot,60 +on10,0,0,25,1,0,355,1500.000000,46,1,22266.000320,626.000416,hintandextended,nbiot,60 +on4,0,0,25,1,0,480,1500.000000,46,1,30684.600640,664.545832,hintandextended,nbiot,60 +on12,0,0,24,1,0,225,1465.000320,47,0,13214.000320,612.000336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,480,1440.000000,47,0,29696.000320,602.000416,hintandextended,nbiot,60 +on10,0,0,25,1,0,818,1500.000000,47,1,49875.000320,626.000208,hintandextended,nbiot,60 +on7,0,0,24,1,0,662,1440.000000,47,0,39837.000320,613.960000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,415,1500.000000,47,1,22194.000320,626.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1478.601280,47,0,-1.000000,825.443216,hintandextended,nbiot,60 +on8,0,0,24,1,0,1380,1440.000000,47,0,85135.000000,602.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,255,1440.000000,47,0,14641.000320,656.600000,hintandextended,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,47,0,19554.000320,639.310208,hintandextended,nbiot,60 +on9,0,0,25,1,0,674,1500.000000,47,1,39878.600960,647.710624,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,172,1500.000000,48,2,13816.000320,668.314584,hintandextended,nbiot,60 +on6,0,0,24,1,0,1118,1463.000000,48,1,69147.000320,611.200208,hintandextended,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,48,0,35840.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1078,1478.000320,48,0,62568.000320,617.200336,hintandextended,nbiot,60 +on12,0,0,25,1,0,459,1500.000000,48,1,26065.000320,626.000416,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1482.601280,48,0,-1.000000,853.043840,hintandextended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,48,0,85367.000000,602.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1080,1440.000000,48,0,65320.000320,610.060000,hintandextended,nbiot,60 +on1,0,0,25,1,0,120,1500.000000,48,1,8765.600640,639.195208,hintandextended,nbiot,60 +on11,0,0,24,1,0,87,1447.000320,48,0,3791.000320,610.910544,hintandextended,nbiot,60 +on5,0,0,26,1,0,259,1581.600960,48,2,13857.600960,658.640800,hintandextended,nbiot,60 +on11,0,0,24,1,0,360,1440.000000,49,0,23586.000320,604.600416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,148,1448.000320,49,0,9356.000320,605.200336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1472.601600,49,0,-1.000000,719.042304,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,49,0,5889.000320,625.660208,hintandextended,nbiot,60 +on1,0,0,24,1,0,326,1446.000320,49,0,18399.000320,604.400336,hintandextended,nbiot,60 +on12,0,0,26,1,0,198,1580.600960,49,2,9396.600960,658.436008,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,702,1500.000000,50,1,42456.000320,639.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,50,0,12494.000320,602.000416,hintandextended,nbiot,60 +on7,0,0,24,1,0,720,1440.000000,50,0,45813.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,540,1500.000000,50,1,33431.600640,626.195624,hintandextended,nbiot,60 +on9,0,0,25,1,0,600,1500.000000,50,1,38260.000320,691.910624,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1493.601280,50,0,-1.000000,779.443216,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1140,1500.000000,50,1,72377.000320,665.000208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,575,1455.000320,50,0,33387.000320,608.000336,hintandextended,nbiot,60 +on7,0,0,26,1,0,198,1560.000000,51,2,13563.000320,674.959584,hintandextended,nbiot,60 +on2,0,0,25,1,0,61,1500.000000,51,1,3926.600320,663.310208,hintandextended,nbiot,60 +on12,0,0,24,1,0,689,1449.000320,51,0,39876.000320,605.600336,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,26,1,0,207,1580.000960,51,2,9363.000960,671.000384,hintandextended,nbiot,60 +on3,0,0,25,1,0,98,1500.000000,51,1,9323.000320,638.350208,hintandextended,nbiot,60 +on9,0,0,25,1,0,0,1500.000000,51,1,1697.600640,685.475416,hintandextended,nbiot,60 +on8,0,0,25,1,0,217,1517.600960,51,1,13604.600960,659.300800,hintandextended,nbiot,60 +on10,0,0,25,1,0,40,1500.000000,51,1,3884.000320,653.820208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,240,1500.000000,51,1,14543.600640,626.195832,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1511.802880,51,0,-1.000000,838.725520,hintandextended,nbiot,60 +on7,0,0,24,1,0,1014,1474.000320,52,0,59411.000320,642.250752,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,26,1,0,296,1560.000000,52,3,17292.000320,663.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1447.600640,52,0,-1.000000,709.042752,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,561,1441.000320,52,0,35903.000320,602.400544,hintandextended,nbiot,60 +on4,0,0,25,1,0,0,1500.000000,52,1,835.600640,662.465832,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,212,1500.000000,52,1,12028.000320,639.910208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,702,1500.000000,53,1,41600.000320,650.830416,hintandextended,nbiot,60 +on1,0,0,24,1,0,879,1459.000320,53,0,53465.000320,646.910336,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1475.000640,53,0,-1.000000,824.003584,hintandextended,nbiot,60 +on4,0,0,25,1,0,1200,1500.000000,53,1,75373.600640,659.995624,hintandextended,nbiot,60 +on3,0,0,27,1,0,854,1620.000000,53,5,50148.000320,727.300000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,53,0,12843.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,25,1,0,959,1500.000000,53,1,56928.000320,631.200208,hintandextended,nbiot,60 +on11,0,0,24,1,0,240,1440.000000,53,0,14618.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,600,1440.000000,53,0,39491.000320,638.270416,hintandextended,nbiot,60 +on10,0,0,24,1,0,731,1440.000000,53,1,44628.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,181,1500.000000,54,1,12871.600320,663.310624,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1485.201280,54,0,-1.000000,828.084464,hintandextended,nbiot,60 +on7,0,0,24,1,0,1276,1440.000000,54,0,77071.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,674,1440.000000,54,0,39673.000320,602.000416,hintandextended,nbiot,60 +on9,0,0,25,1,0,363,1500.000000,54,1,24201.000320,640.950208,hintandextended,nbiot,60 +on12,0,0,25,1,0,120,1500.000000,54,1,9856.600960,637.246040,hintandextended,nbiot,60 +on10,0,0,25,1,0,299,1500.000000,54,1,20253.000320,663.310208,hintandextended,nbiot,60 +on5,0,0,25,1,0,218,1500.000000,54,1,12827.000320,637.960000,hintandextended,nbiot,60 +on1,0,0,24,1,0,165,1465.000320,54,0,9816.000320,655.810960,hintandextended,nbiot,60 +on6,0,0,25,1,0,704,1500.000000,54,1,45554.000320,672.150000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,837,1477.000320,55,0,47126.000320,655.150336,hintandextended,nbiot,60 +on5,0,0,24,1,0,650,1470.000320,55,0,39287.000320,614.000544,hintandextended,nbiot,60 +on10,0,0,24,1,0,725,1440.000000,55,0,46492.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,518,1458.000320,55,0,29132.000320,609.200544,hintandextended,nbiot,60 +on8,0,0,25,1,0,1396,1500.000000,55,1,84482.000000,626.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,55,0,-1.000000,810.002496,hintandextended,nbiot,60 +on7,0,0,25,1,0,1318,1500.000000,55,1,80576.000320,637.310000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,251,1440.000000,55,0,16071.000320,602.000416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,18,1440.000000,55,0,1514.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,1291,1451.000320,55,0,76027.000320,606.400336,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,0,1500.000000,56,1,3465.600640,626.195624,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1476.000320,56,0,-1.000000,798.403040,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,56,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 +on11,0,0,24,1,0,420,1440.000000,56,0,26076.000320,639.310416,hintandextended,nbiot,60 +on2,0,0,24,1,0,360,1440.000000,56,0,22038.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,1,0,804,1444.000320,56,0,46964.000320,603.600336,hintandextended,nbiot,60 +on3,0,0,25,1,0,763,1500.000000,56,1,44110.000320,639.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,674,1440.000000,56,0,41753.000320,639.310208,hintandextended,nbiot,60 +on5,0,0,25,1,0,519,1500.000000,56,1,31397.000320,626.000624,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1067,1467.000320,56,0,62562.000320,612.800336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1494.601280,57,0,-1.000000,727.843008,hintandextended,nbiot,60 +on3,0,0,24,1,0,200,1440.000320,57,0,14022.000320,602.000544,hintandextended,nbiot,60 +on10,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 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1254,1474.000320,57,0,72647.000320,615.600336,hintandextended,nbiot,60 +on11,0,0,24,1,0,0,1440.000000,57,0,2574.000320,602.000416,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,795,1440.000000,57,0,47083.000320,602.000416,hintandextended,nbiot,60 +on8,0,0,25,1,0,206,1506.600960,57,1,14062.600960,628.836424,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1140,1440.000000,58,0,69507.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,480,1440.000000,58,0,29537.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,24,1,0,888,1468.000320,58,0,53001.000320,613.200336,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1609.601920,58,0,-1.000000,825.842848,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,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1260,1440.000000,58,0,78999.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,1,0,1037,1440.000000,58,0,62479.000320,603.300416,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,0,1500.000000,58,1,2967.600640,626.195624,hintandextended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,58,0,25645.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,111,1500.000000,59,1,6837.000320,676.960000,hintandextended,nbiot,60 +on6,0,0,26,1,0,130,1581.600960,59,2,6878.600960,659.485800,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1506.802240,59,0,-1.000000,862.724640,hintandextended,nbiot,60 +on5,0,0,25,1,0,480,1500.000000,59,1,30346.600640,663.505624,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,0,1500.000000,59,1,1385.600640,680.274792,hintandextended,nbiot,60 +on12,0,0,24,1,0,1274,1440.000000,59,0,76527.000320,640.350208,hintandextended,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,59,0,54546.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,166,1466.000320,59,0,8873.000320,612.400336,hintandextended,nbiot,60 +on2,0,0,26,1,0,199,1560.000000,59,2,11116.000320,701.350208,hintandextended,nbiot,60 +on3,0,0,25,1,0,581,1500.000000,59,1,38018.000320,626.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,1221,1441.000320,59,0,74079.000320,602.400336,hintandextended,nbiot,60 +on9,0,0,25,1,0,1006,1500.000000,60,1,59018.000320,626.000208,hintandextended,nbiot,60 +on7,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 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,530,1470.000320,60,0,30151.000320,614.000336,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.600960,60,0,-1.000000,766.242464,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,26,1,0,1033,1560.000000,60,3,62603.000320,680.550000,hintandextended,nbiot,60 +on2,0,0,25,1,0,856,1500.000000,60,1,52648.600960,663.505624,hintandextended,nbiot,60 +on6,0,0,24,1,0,713,1473.000320,60,0,41647.000320,615.200336,hintandextended,nbiot,60 +on5,0,0,24,1,0,899,1479.000320,60,0,52608.000320,641.260336,hintandextended,nbiot,60 +on10,0,0,25,1,0,938,1500.000000,60,1,56861.000320,676.700000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,431,1440.000000,61,0,27941.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,25,1,0,1157,1500.000000,61,1,69427.000320,663.310208,hintandextended,nbiot,60 +on11,0,0,25,1,0,1246,1500.000000,61,1,74704.000320,626.000416,hintandextended,nbiot,60 +on6,0,0,24,1,0,313,1440.000000,61,0,18643.000320,630.600624,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1497.601600,61,0,-1.000000,885.045008,hintandextended,nbiot,60 +on8,0,0,25,1,0,0,1500.000000,61,1,187.600640,626.195832,hintandextended,nbiot,60 +on9,0,0,24,1,0,1069,1469.000320,61,0,63766.000320,613.600336,hintandextended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,61,0,35422.000320,613.960000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,26,1,0,1038,1580.600960,61,2,63806.600960,660.646008,hintandextended,nbiot,60 +on1,0,0,25,1,0,585,1500.000000,61,1,37084.000320,639.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,780,1440.000000,61,0,47083.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,25,1,0,180,1500.000000,61,1,11152.600640,626.195624,hintandextended,nbiot,60 +on10,0,0,24,1,0,433,1440.000000,62,0,26630.000320,606.550000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1480.601280,62,0,-1.000000,748.242176,hintandextended,nbiot,60 +on1,0,0,24,1,0,72,1440.000000,62,0,7129.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,1,0,120,1440.000000,62,0,8888.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,360,1500.000000,62,1,22369.600640,631.005208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,480,1440.000000,62,0,32213.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,964,1440.000000,62,0,57776.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,360,1440.000000,63,0,23243.000320,602.000416,hintandextended,nbiot,60 +on4,0,0,24,1,0,1297,1457.000320,63,0,78270.000320,619.850336,hintandextended,nbiot,60 +on5,0,0,24,1,0,808,1448.000320,63,0,47495.000320,633.800336,hintandextended,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,63,0,17929.000320,602.000624,hintandextended,nbiot,60 +on2,0,0,24,1,0,97,1457.000320,63,0,4573.000320,608.800336,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,0,1500.000000,63,1,758.600640,626.195624,hintandextended,nbiot,60 +on3,0,0,24,1,0,300,1440.000000,63,0,18739.000320,602.000416,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,504,1504.600960,63,1,30029.600960,628.036008,hintandextended,nbiot,60 +on7,0,0,24,1,0,1232,1452.000320,63,0,73169.000320,606.800336,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1485.202240,63,0,-1.000000,854.084640,hintandextended,nbiot,60 +on8,0,0,24,1,0,537,1477.000320,63,0,29989.000320,616.800336,hintandextended,nbiot,60 +on2,0,0,24,1,0,230,1470.000320,64,0,13005.000320,614.000544,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1460.600960,64,0,-1.000000,688.242464,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,9,1440.000000,64,0,1487.000320,602.000416,hintandextended,nbiot,60 +on12,0,0,25,1,0,181,1500.000000,64,1,13045.600960,663.505832,hintandextended,nbiot,60 +on4,0,0,25,1,0,286,1500.000000,64,1,18285.000320,626.000416,hintandextended,nbiot,60 +on3,0,0,24,1,0,1244,1464.000320,65,0,75564.000320,611.600336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,170,1470.000320,65,0,7669.000320,614.000336,hintandextended,nbiot,60 +on2,0,0,24,1,0,181,1440.000000,65,0,12902.000320,602.000416,hintandextended,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,65,0,18670.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,1320,1500.000000,65,1,82369.600640,663.505416,hintandextended,nbiot,60 +on12,0,0,25,1,0,1405,1500.000000,65,1,84785.000000,647.580000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1411,1451.000000,65,0,84825.000000,606.400000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.000000,65,0,-1.000000,766.001456,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,65,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 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,196,1440.000000,66,0,11550.000320,639.310416,hintandextended,nbiot,60 +on8,0,0,24,1,0,112,1472.000320,66,0,6152.000320,614.800336,hintandextended,nbiot,60 +on5,0,0,24,1,0,321,1441.000320,66,0,19888.000320,602.400336,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,66,0,-1.000000,680.001040,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,719,1500.000000,66,1,41824.000320,626.000208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,28,1,0,249,1701.600960,67,4,11638.600960,772.030592,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1530.804480,67,0,-1.000000,872.325952,hintandextended,nbiot,60 +on9,0,0,24,1,0,1009,1469.000320,67,0,59283.000320,613.600336,hintandextended,nbiot,60 +on10,0,0,25,1,0,0,1500.000000,67,1,444.600640,631.915000,hintandextended,nbiot,60 +on11,0,0,27,1,0,196,1620.000000,67,3,11597.000320,745.629584,hintandextended,nbiot,60 +on2,0,0,24,1,0,61,1440.000000,67,0,6324.000320,649.060208,hintandextended,nbiot,60 +on7,0,0,25,1,0,212,1500.000000,67,1,14659.000320,644.069792,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,116,1520.000960,67,1,6364.000960,634.845592,hintandextended,nbiot,60 +on12,0,0,26,1,0,199,1580.000960,67,2,9253.000960,671.000384,hintandextended,nbiot,60 +on4,0,0,26,1,0,127,1560.000000,67,2,9213.000320,704.534792,hintandextended,nbiot,60 +on6,0,0,26,1,0,259,1581.600960,67,2,14700.600960,658.640800,hintandextended,nbiot,60 +on12,0,0,25,1,0,330,1500.000000,68,1,19149.000320,626.000208,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1531.601600,68,0,-1.000000,820.643968,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,26,1,0,636,1560.000000,68,2,36252.000320,663.000208,hintandextended,nbiot,60 +on11,0,0,26,1,0,569,1580.600960,68,2,31615.600960,695.746008,hintandextended,nbiot,60 +on9,0,0,24,1,0,575,1455.000320,68,0,34218.000320,608.000544,hintandextended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,68,0,25412.000320,639.310208,hintandextended,nbiot,60 +on3,0,0,24,1,0,240,1440.000000,68,0,17237.000320,620.460000,hintandextended,nbiot,60 +on6,0,0,25,1,0,320,1500.000000,68,2,22555.000320,680.600208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,524,1464.000320,68,0,31575.000320,611.600336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,240,1500.000000,69,1,17302.600640,626.195624,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1481.600960,69,0,-1.000000,878.644960,hintandextended,nbiot,60 +on10,0,0,24,1,0,445,1445.000320,69,0,25459.000320,604.000336,hintandextended,nbiot,60 +on12,0,0,25,1,0,360,1500.000000,69,1,24862.600640,642.445000,hintandextended,nbiot,60 +on2,0,0,25,1,0,365,1500.000000,69,2,24916.000320,673.709792,hintandextended,nbiot,60 +on8,0,0,24,1,0,209,1449.000320,69,0,12789.000320,656.950128,hintandextended,nbiot,60 +on1,0,0,26,1,0,637,1560.000000,69,3,39305.000320,663.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,347,1467.000320,69,0,20998.000320,612.800544,hintandextended,nbiot,60 +on5,0,0,24,1,0,720,1440.000000,69,0,45217.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,54,1474.000320,69,0,2304.000320,615.600336,hintandextended,nbiot,60 +on6,0,0,25,1,0,525,1500.000000,69,1,34030.000320,626.845208,hintandextended,nbiot,60 +on7,0,0,26,1,0,476,1560.000000,69,2,29751.000320,700.700208,hintandextended,nbiot,60 +on10,0,0,25,1,0,240,1500.000000,70,1,16450.000320,639.000208,hintandextended,nbiot,60 +on9,0,0,25,1,0,356,1500.000000,70,1,20561.000320,638.804792,hintandextended,nbiot,60 +on8,0,0,24,1,0,1203,1440.000000,70,0,72983.000320,613.050000,hintandextended,nbiot,60 +on1,0,0,24,1,0,234,1474.000320,70,0,11232.000320,653.300544,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1480.802560,70,0,-1.000000,826.324768,hintandextended,nbiot,60 +on6,0,0,24,1,0,592,1472.000320,70,0,34611.000320,653.150544,hintandextended,nbiot,60 +on12,0,0,24,1,0,1260,1440.000000,70,0,77479.000320,653.350000,hintandextended,nbiot,60 +on11,0,0,25,1,0,1320,1500.000000,70,1,82239.600640,626.195416,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,26,1,0,386,1581.600960,70,2,20602.600960,658.641008,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,1140,1500.000000,70,1,71154.600640,626.195624,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1490.001280,71,0,-1.000000,752.002800,hintandextended,nbiot,60 +on2,0,0,24,1,0,288,1468.000320,71,0,15848.000320,613.200336,hintandextended,nbiot,60 +on3,0,0,24,1,0,540,1440.000000,71,0,35315.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,1260,1440.000000,71,0,77907.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1320,1440.000000,71,0,80641.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,960,1500.000000,71,1,58351.600640,626.196040,hintandextended,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,71,0,18207.000320,602.000416,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,1,0,1080,1440.000000,72,0,66498.000320,607.200000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,397,1500.000000,72,2,23272.000320,626.650000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1470.000320,72,0,-1.000000,770.002832,hintandextended,nbiot,60 +on6,0,0,24,1,0,235,1475.000320,72,0,13610.000320,616.000544,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,420,1500.000000,72,2,28180.000320,650.700000,hintandextended,nbiot,60 +on11,0,0,25,1,0,1200,1500.000000,72,1,72638.600640,626.195624,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,142,1442.000320,72,0,9786.000320,602.800336,hintandextended,nbiot,60 +on1,0,0,24,1,0,309,1440.000000,72,0,19672.000320,602.000416,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,73,0,64735.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,73,0,12390.000320,613.960000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1488.001280,73,0,-1.000000,777.202384,hintandextended,nbiot,60 +on1,0,0,24,1,0,44,1464.000320,73,0,2246.000320,611.600544,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1140,1452.000000,73,1,71178.000320,606.800416,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,73,0,19906.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,1,0,227,1471.000000,73,1,16108.000320,614.400208,hintandextended,nbiot,60 +on3,0,0,24,1,0,780,1440.000000,73,0,48330.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,338,1500.000000,74,2,24405.000320,665.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,338,1500.000000,74,1,19516.000320,626.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,270,1450.000320,74,0,14958.000320,610.160544,hintandextended,nbiot,60 +on12,0,0,25,1,0,60,1500.000000,74,1,5386.600640,670.265416,hintandextended,nbiot,60 +on3,0,0,24,1,0,1067,1467.000320,74,0,61558.000320,612.800336,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1476.600640,74,0,-1.000000,798.643168,hintandextended,nbiot,60 +on6,0,0,24,1,0,1380,1440.000000,74,0,84950.000000,602.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,144,1500.000000,74,1,10411.000320,639.000208,hintandextended,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,74,0,37143.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1361,1461.000320,75,0,79736.000320,610.400336,hintandextended,nbiot,60 +on8,0,0,25,1,0,214,1514.600960,75,1,12181.600960,632.036216,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1477.601280,75,0,-1.000000,747.043008,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,112,1472.000320,75,0,5459.000320,614.800336,hintandextended,nbiot,60 +on2,0,0,24,1,0,728,1440.000000,75,0,44695.000320,602.000624,hintandextended,nbiot,60 +on12,0,0,24,1,0,214,1454.000320,75,0,12141.000320,607.600544,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,75,0,52672.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,76,0,57440.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,25,1,0,159,1500.000000,76,1,8337.000320,626.000208,hintandextended,nbiot,60 +on3,0,0,24,1,0,60,1440.000000,76,0,5874.000320,617.860416,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1505.000960,76,0,-1.000000,758.002048,hintandextended,nbiot,60 +on4,0,0,24,1,0,420,1440.000000,76,0,28164.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,1260,1440.000000,76,0,77864.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,660,1440.000000,76,0,40729.000320,602.000416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,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 +on7,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,195,1440.000000,77,0,12803.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,25,1,0,720,1500.000000,77,1,46391.600640,626.195624,hintandextended,nbiot,60 +on9,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,1,0,1020,1440.000000,77,0,61408.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,1,0,103,1463.000320,77,0,6349.000320,611.200336,hintandextended,nbiot,60 +on8,0,0,24,1,0,484,1440.000000,77,0,31407.000320,602.000624,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1451.600640,77,0,-1.000000,736.642336,hintandextended,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,77,0,1910.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,25,1,0,477,1500.000000,78,1,26937.000320,631.460624,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1499.600960,78,0,-1.000000,833.843712,hintandextended,nbiot,60 +on10,0,0,25,1,0,398,1500.000000,78,1,22528.000320,663.700208,hintandextended,nbiot,60 +on4,0,0,25,1,0,421,1500.000000,78,1,26991.600320,664.350208,hintandextended,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,78,0,2777.000320,613.960000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,130,1460.000000,78,2,11334.000320,642.500000,hintandextended,nbiot,60 +on9,0,0,24,1,0,300,1440.000000,78,0,20778.000320,602.000416,hintandextended,nbiot,60 +on5,0,0,26,1,0,162,1560.000000,78,3,10185.000320,697.255208,hintandextended,nbiot,60 +on12,0,0,24,1,0,1020,1440.000000,78,0,63789.000320,640.350208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,67,1487.000000,78,1,5779.000320,620.800208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,983,1443.000320,79,0,59542.000320,603.200336,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,367,1440.000000,79,0,22016.000320,602.000208,hintandextended,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,79,0,-1.000000,628.000416,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,1080,1500.000000,80,1,67891.600640,626.195624,hintandextended,nbiot,60 +on1,0,0,24,1,0,286,1466.000320,80,0,17701.000320,612.400960,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1508.600960,80,0,-1.000000,733.443088,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,150,1450.000320,80,0,9261.000320,606.000544,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,80,0,4273.000320,602.000624,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1106,1446.000320,80,0,67839.000320,604.400336,hintandextended,nbiot,60 +on10,0,0,24,1,0,147,1447.000320,81,0,7424.000320,615.200752,hintandextended,nbiot,60 +on9,0,0,25,1,0,1200,1500.000000,81,1,74320.600640,658.695624,hintandextended,nbiot,60 +on7,0,0,24,1,0,1320,1440.000000,81,0,80168.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,25,1,0,527,1500.000000,81,1,31270.000320,626.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,436,1440.000000,81,0,26081.000320,639.310208,hintandextended,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,81,0,2650.000320,602.000416,hintandextended,nbiot,60 +on4,0,0,25,1,0,1156,1500.000000,81,1,69180.000320,626.000416,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1486.601280,81,0,-1.000000,802.643424,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1040,1440.000320,81,0,64486.000320,602.000336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,82,0,8270.000320,602.000416,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,2,24,0,0,0,1459.000320,82,0,-1.000000,635.600752,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,363,1440.000000,82,0,22006.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,398,1458.000320,83,0,24679.000320,610.500544,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1475.000960,83,0,-1.000000,746.002672,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,900,1440.000000,83,0,55907.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,83,0,59197.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,83,0,2939.000320,602.000624,hintandextended,nbiot,60 +on10,0,0,25,1,0,1080,1500.000000,83,1,65706.600640,637.245624,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,83,0,32800.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,159,1500.000000,84,1,13008.000320,656.809792,hintandextended,nbiot,60 +on6,0,0,26,1,0,157,1560.000000,84,2,7244.000320,676.000208,hintandextended,nbiot,60 +on3,0,0,25,1,0,84,1500.000000,84,2,6733.000320,647.904792,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1483.201920,84,0,-1.000000,827.285552,hintandextended,nbiot,60 +on10,0,0,26,1,0,139,1581.600960,84,2,6774.600960,682.300800,hintandextended,nbiot,60 +on11,0,0,27,1,0,348,1620.000000,84,4,24194.000320,734.580000,hintandextended,nbiot,60 +on12,0,0,24,1,0,479,1479.000320,84,0,27729.000320,617.600336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,306,1440.000000,84,0,18520.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,13,1440.000000,84,0,3498.000320,696.770832,hintandextended,nbiot,60 +on5,0,0,25,1,0,211,1511.600960,84,1,13049.600960,668.340384,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1492.601280,85,0,-1.000000,857.044048,hintandextended,nbiot,60 +on2,0,0,25,1,0,387,1500.000000,85,1,22668.000320,663.310416,hintandextended,nbiot,60 +on7,0,0,24,1,0,749,1449.000320,85,0,44508.000320,605.600544,hintandextended,nbiot,60 +on3,0,0,26,1,0,510,1580.600960,85,2,27589.600960,658.436216,hintandextended,nbiot,60 +on10,0,0,25,1,0,278,1500.000000,85,1,19062.000320,663.310416,hintandextended,nbiot,60 +on4,0,0,24,1,0,28,1448.000320,85,0,3037.000320,605.200336,hintandextended,nbiot,60 +on9,0,0,24,1,0,151,1451.000320,85,0,8434.000320,616.800544,hintandextended,nbiot,60 +on11,0,0,24,1,0,445,1445.000320,85,0,27549.000320,604.000336,hintandextended,nbiot,60 +on8,0,0,24,1,0,872,1452.000320,85,0,52054.000320,606.800336,hintandextended,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,85,0,35336.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,1,0,1064,1464.000320,85,0,61987.000320,611.600336,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1522.202880,86,0,-1.000000,868.884896,hintandextended,nbiot,60 +on3,0,0,25,1,0,439,1520.000960,86,1,24318.000960,645.895592,hintandextended,nbiot,60 +on7,0,0,24,1,0,300,1440.000000,86,0,18601.000320,614.350000,hintandextended,nbiot,60 +on11,0,0,25,1,0,979,1513.000000,86,3,63186.000320,652.650000,hintandextended,nbiot,60 +on1,0,0,27,1,0,492,1641.600960,86,3,25534.600960,682.640800,hintandextended,nbiot,60 +on2,0,0,24,1,0,408,1468.000320,86,0,24278.000320,613.200336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,878,1500.000000,86,1,56863.000320,630.160208,hintandextended,nbiot,60 +on9,0,0,24,1,0,0,1463.000000,86,1,3474.600640,611.395624,hintandextended,nbiot,60 +on10,0,0,27,1,0,519,1620.000000,86,3,30925.000320,701.689792,hintandextended,nbiot,60 +on12,0,0,25,1,0,456,1553.000000,86,2,25493.000320,673.004584,hintandextended,nbiot,60 +on4,0,0,26,1,0,919,1560.000000,86,3,59376.000320,731.899792,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1456.000320,87,0,-1.000000,764.402208,hintandextended,nbiot,60 +on5,0,0,25,1,0,498,1500.000000,87,2,33324.000320,700.619792,hintandextended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,87,0,28392.000320,613.960208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,278,1500.000000,87,1,17923.000320,626.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1108,1448.000320,87,0,68126.000320,642.510336,hintandextended,nbiot,60 +on3,0,0,25,1,0,1199,1500.000000,87,1,71131.000320,626.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,495,1483.000000,87,1,29573.200320,619.200416,hintandextended,nbiot,60 +on1,0,0,24,1,0,218,1458.000320,87,0,12148.000320,609.460336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,241,1440.000000,88,0,17052.000320,602.000416,hintandextended,nbiot,60 +on6,0,0,25,1,0,334,1500.000000,88,2,19917.000320,628.600000,hintandextended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,88,0,2724.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,143,1443.000320,88,0,10224.000320,641.550960,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1488.600960,88,0,-1.000000,777.443920,hintandextended,nbiot,60 +on8,0,0,25,1,0,120,1500.000000,88,1,10276.600640,629.446040,hintandextended,nbiot,60 +on7,0,0,25,1,0,520,1500.000000,88,1,34609.000320,664.350416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,88,0,31899.000320,613.960000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,976,1500.000000,89,1,61044.000320,626.000208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,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 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1188,1468.000320,89,0,69961.000320,651.550336,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1112,1452.000320,89,0,67347.000320,606.800336,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1486.000640,89,0,-1.000000,750.401504,hintandextended,nbiot,60 +on11,0,0,24,1,0,104,1464.000320,89,0,4604.000320,611.600336,hintandextended,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,89,0,55209.000320,604.210000,hintandextended,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,89,0,38056.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,90,0,32610.000320,603.300000,hintandextended,nbiot,60 +on8,0,0,25,1,0,346,1526.600960,90,1,20852.600960,636.836008,hintandextended,nbiot,60 +on1,0,0,24,1,0,328,1448.000320,90,0,20812.000320,605.200544,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,240,1440.000000,90,0,14700.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,1,0,120,1440.000000,90,0,10400.000320,602.000416,hintandextended,nbiot,60 +on6,0,0,24,1,0,600,1440.000000,90,0,37170.000320,677.660416,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1582.203200,90,0,-1.000000,892.885232,hintandextended,nbiot,60 +on3,0,0,25,1,0,720,1500.000000,90,1,43509.600640,627.495624,hintandextended,nbiot,60 +on11,0,0,24,1,0,1218,1440.000000,90,0,73118.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,1020,1440.000000,90,0,63861.000320,602.000416,hintandextended,nbiot,60 +on10,0,0,25,1,0,717,1500.000000,90,1,42594.000320,650.700208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,120,1500.000000,91,1,8405.600640,626.195624,hintandextended,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,91,0,15751.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,1,0,339,1459.000320,91,0,18257.000320,648.210544,hintandextended,nbiot,60 +on6,0,0,24,1,0,540,1440.000000,91,0,35028.000320,602.000416,hintandextended,nbiot,60 +on9,0,0,24,1,0,928,1448.000320,91,0,56367.000320,605.200336,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1502.601600,91,0,-1.000000,835.043760,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1160,1440.000320,91,0,68976.000320,602.000336,hintandextended,nbiot,60 +on4,0,0,25,1,0,932,1512.600960,91,1,56407.600960,654.636008,hintandextended,nbiot,60 +on12,0,0,24,1,0,811,1451.000320,91,0,49503.000320,606.400336,hintandextended,nbiot,60 +on11,0,0,25,1,0,420,1500.000000,91,1,23820.000320,626.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,1292,1500.000000,92,1,77623.000320,663.310208,hintandextended,nbiot,60 +on7,0,0,24,1,0,1326,1440.000000,92,0,81444.000320,610.059792,hintandextended,nbiot,60 +on4,0,0,26,1,0,1406,1581.600960,92,2,81485.600960,658.640592,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1480.601280,92,0,-1.000000,826.243008,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1020,1440.000000,92,0,61780.000320,613.960208,hintandextended,nbiot,60 +on11,0,0,25,1,0,1118,1500.000000,92,1,70944.000320,626.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,780,1440.000000,92,0,47930.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,1,0,707,1467.000320,92,0,41556.000320,612.800336,hintandextended,nbiot,60 +on12,0,0,26,1,0,1231,1560.000000,92,3,72043.000320,700.310000,hintandextended,nbiot,60 +on5,0,0,25,1,0,1065,1500.000000,92,1,67188.000320,730.519792,hintandextended,nbiot,60 +on6,0,0,24,1,0,297,1477.000320,93,0,17516.000320,616.800544,hintandextended,nbiot,60 +on2,0,0,25,1,0,1196,1500.000000,93,1,74142.000320,626.000208,hintandextended,nbiot,60 +on8,0,0,24,1,0,1020,1440.000000,93,0,62438.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,349,1469.000320,93,0,21299.000320,613.600336,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1511.000640,93,0,-1.000000,812.402752,hintandextended,nbiot,60 +on5,0,0,25,1,0,1080,1500.000000,93,1,67517.600640,663.505624,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1199,1479.000320,93,0,69830.000320,619.810336,hintandextended,nbiot,60 +on3,0,0,24,1,0,1200,1440.000000,93,0,74197.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,26,1,0,1316,1560.000000,93,3,77910.000320,663.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,212,1452.000320,94,0,13465.000320,606.800336,hintandextended,nbiot,60 +on5,0,0,24,1,0,649,1469.000320,94,0,39456.000320,613.600544,hintandextended,nbiot,60 +on10,0,0,25,1,0,1020,1500.000000,94,1,64349.600640,664.545624,hintandextended,nbiot,60 +on7,0,0,25,1,0,60,1500.000000,94,1,5942.600640,626.195624,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1460.600640,94,0,-1.000000,740.242960,hintandextended,nbiot,60 +on4,0,0,25,1,0,900,1500.000000,94,1,57379.600640,626.195624,hintandextended,nbiot,60 +on3,0,0,24,1,0,418,1478.000320,94,0,22091.000320,617.200336,hintandextended,nbiot,60 +on12,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 +on6,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,817,1517.600960,95,1,50327.600960,633.236216,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,824,1464.000320,95,0,50287.000320,648.000336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,730,1440.000000,95,0,46205.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,208,1448.000320,95,0,14090.000320,605.200544,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1460.600960,95,0,-1.000000,688.242048,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,642,1462.000320,96,0,37546.000320,610.800336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,586,1466.000320,96,0,33356.000320,616.560336,hintandextended,nbiot,60 +on4,0,0,26,1,0,691,1560.000000,96,2,42684.000320,701.350000,hintandextended,nbiot,60 +on12,0,0,26,1,0,679,1580.000960,96,2,37586.000960,658.846008,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1220,1440.000320,96,0,73576.000320,602.000336,hintandextended,nbiot,60 +on10,0,0,24,1,0,22,1442.000320,96,0,3202.000320,602.800544,hintandextended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,96,0,60266.000320,640.350208,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1460.001280,96,0,-1.000000,792.002800,hintandextended,nbiot,60 +on6,0,0,24,1,0,1260,1440.000000,96,0,77211.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,198,1500.000000,97,1,11097.600960,626.195624,hintandextended,nbiot,60 +on12,0,0,24,1,0,265,1445.000320,97,0,16579.000320,641.310336,hintandextended,nbiot,60 +on4,0,0,25,1,0,1184,1500.000000,97,1,69758.000320,626.000208,hintandextended,nbiot,60 +on8,0,0,24,1,0,1080,1440.000000,97,0,67792.000320,639.700208,hintandextended,nbiot,60 +on5,0,0,24,1,0,1327,1440.000000,97,0,81575.000320,610.450000,hintandextended,nbiot,60 +on6,0,0,24,1,0,228,1468.000320,97,0,11057.000320,613.200336,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1460.600960,97,0,-1.000000,792.243088,hintandextended,nbiot,60 +on3,0,0,25,1,0,355,1500.000000,97,1,19613.000320,626.000416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,26,1,0,1226,1560.000000,97,3,73242.000320,695.955208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1481.000960,98,0,-1.000000,774.402464,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,98,0,15765.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,1,0,1080,1440.000000,98,0,65641.000320,615.910416,hintandextended,nbiot,60 +on12,0,0,25,1,0,1178,1500.000000,98,1,69872.000320,626.845208,hintandextended,nbiot,60 +on10,0,0,24,1,0,781,1440.000000,98,0,48591.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,467,1467.000320,98,0,28369.000320,612.800544,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,26,1,0,1218,1560.000000,98,3,72291.000320,663.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,720,1440.000000,98,0,43356.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,600,1440.000000,99,0,38368.000320,639.700208,hintandextended,nbiot,60 +on9,0,0,24,1,0,300,1440.000000,99,0,20326.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,60,1500.000000,99,1,4284.000320,701.660208,hintandextended,nbiot,60 +on11,0,0,25,1,0,0,1500.000000,99,1,1512.600640,626.195832,hintandextended,nbiot,60 +on3,0,0,25,1,0,177,1500.000000,99,1,12194.000320,626.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,1045,1445.000320,99,0,63860.000320,604.000336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,371,1500.000000,99,2,22969.000320,643.550208,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1502.600960,99,0,-1.000000,835.043920,hintandextended,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,99,0,16620.000320,602.000416,hintandextended,nbiot,60 +on12,0,0,25,1,0,668,1500.000000,99,1,42352.000320,674.750416,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,436,1440.000000,100,0,26899.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,100,0,986.000320,650.230000,hintandextended,nbiot,60 +on11,0,0,24,1,0,116,1476.000320,100,0,5354.000320,616.400336,hintandextended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,100,0,53420.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,25,1,0,142,1520.000960,100,1,5394.000960,634.000592,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1519.001920,100,0,-1.000000,893.603888,hintandextended,nbiot,60 +on12,0,0,24,1,0,1320,1440.000000,100,0,82237.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,27,1,0,245,1620.000000,100,4,12960.000320,687.845208,hintandextended,nbiot,60 +on4,0,0,24,1,0,360,1440.000000,100,0,24279.000320,602.000416,hintandextended,nbiot,60 +on10,0,0,24,1,0,380,1440.000320,100,0,24236.000320,639.310336,hintandextended,nbiot,60 +on7,0,0,26,1,0,152,1560.000000,100,2,9704.000320,673.270000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,26,1,0,500,1560.000000,100,3,29877.000320,663.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1153,1440.000000,101,0,70967.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,540,1440.000000,101,0,33941.000320,690.010208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1485.600960,101,0,-1.000000,802.243088,hintandextended,nbiot,60 +on8,0,0,25,1,0,159,1500.000000,101,1,9831.000320,644.460416,hintandextended,nbiot,60 +on3,0,0,25,1,0,654,1500.000000,101,1,36378.000320,629.900416,hintandextended,nbiot,60 +on5,0,0,24,1,0,0,1440.000000,101,0,2566.000320,615.910416,hintandextended,nbiot,60 +on2,0,0,24,1,0,802,1442.000320,101,0,50337.000320,602.800336,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,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 +on7,0,0,25,1,0,951,1500.000000,101,1,57214.000320,626.000208,hintandextended,nbiot,60 +on12,0,0,25,1,0,121,1500.000000,101,1,9876.600320,626.000416,hintandextended,nbiot,60 +on1,0,0,24,1,0,1183,1463.000320,102,0,69964.000320,611.200336,hintandextended,nbiot,60 +on11,0,0,26,1,0,574,1560.000000,102,3,35676.000320,701.350000,hintandextended,nbiot,60 +on8,0,0,25,1,0,739,1500.000000,102,1,44480.600960,626.000416,hintandextended,nbiot,60 +on9,0,0,25,1,0,459,1500.000000,102,1,30587.000320,626.845416,hintandextended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,102,0,35727.000320,649.060416,hintandextended,nbiot,60 +on12,0,0,24,1,0,735,1440.000000,102,0,44439.000320,604.209792,hintandextended,nbiot,60 +on4,0,0,24,1,0,240,1440.000000,102,0,14697.000320,602.000208,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1530.601920,102,0,-1.000000,872.244304,hintandextended,nbiot,60 +on2,0,0,24,1,0,814,1454.000320,102,0,50110.000320,607.600336,hintandextended,nbiot,60 +on3,0,0,25,1,0,625,1500.000000,102,1,38522.000320,653.300208,hintandextended,nbiot,60 +on7,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 +on6,0,0,24,1,0,420,1440.000000,102,0,26388.000320,602.260000,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,659,1479.000320,103,0,39227.000320,617.600336,hintandextended,nbiot,60 +on11,0,0,24,1,0,87,1447.000320,103,0,3698.000320,604.800336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1080,1440.000000,103,0,67430.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,103,0,15510.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,145,1445.000320,103,0,10496.000320,604.000336,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1508.000640,103,0,-1.000000,785.201920,hintandextended,nbiot,60 +on9,0,0,24,1,0,572,1452.000320,103,0,33073.000320,606.800544,hintandextended,nbiot,60 +on8,0,0,24,1,0,1295,1455.000320,103,0,76611.000320,608.000336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,727,1440.000000,104,0,45398.000320,602.000416,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,1,0,35,1455.000320,104,0,927.000320,608.000336,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1478.601280,104,0,-1.000000,799.443632,hintandextended,nbiot,60 +on2,0,0,26,1,0,307,1560.000000,104,3,15584.000320,663.000000,hintandextended,nbiot,60 +on10,0,0,26,1,0,236,1560.000000,104,3,14374.000320,663.000208,hintandextended,nbiot,60 +on7,0,0,25,1,0,58,1538.600960,104,1,967.600960,698.706216,hintandextended,nbiot,60 +on1,0,0,24,1,0,1162,1442.000320,104,0,69754.000320,602.800336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,124,1500.000000,104,1,8625.000320,698.930208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1020,1440.000000,104,0,64219.000320,609.150208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,660,1440.000000,105,0,40684.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1286,1500.000000,105,1,78928.000320,639.130416,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1500.000960,105,0,-1.000000,808.002464,hintandextended,nbiot,60 +on8,0,0,25,1,0,625,1500.000000,105,1,39306.000320,626.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,1200,1440.000000,105,0,73085.000320,631.510208,hintandextended,nbiot,60 +on2,0,0,24,1,0,1025,1440.000000,105,0,61410.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,105,0,35490.000320,613.960000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,298,1500.000000,105,1,16822.000320,626.000416,hintandextended,nbiot,60 +on4,0,0,24,1,0,219,1459.000320,105,0,11622.000320,646.910336,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1325,1440.000000,106,0,82110.000320,602.000208,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1483.201280,106,0,-1.000000,827.283424,hintandextended,nbiot,60 +on4,0,0,24,1,0,960,1440.000000,106,0,58744.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,25,1,0,181,1500.000000,106,1,11801.600320,663.310416,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1220,1440.000320,106,0,75281.000320,602.000336,hintandextended,nbiot,60 +on9,0,0,24,1,0,181,1440.000000,106,0,11759.000320,612.660416,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,359,1500.000000,106,1,21061.000320,626.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,60,1440.000000,106,0,5472.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,25,1,0,1209,1500.000000,106,1,75321.600960,626.195624,hintandextended,nbiot,60 +on6,0,0,24,1,0,423,1440.000000,106,0,25432.000320,602.000416,hintandextended,nbiot,60 +on1,0,0,24,1,0,180,1440.000000,107,0,12936.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,107,0,1082.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,26,1,0,1195,1560.000000,107,3,70678.000320,663.000000,hintandextended,nbiot,60 +on4,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 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1504.000640,107,0,-1.000000,731.601504,hintandextended,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,107,0,62463.000320,648.410000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,1096,1500.000000,107,1,68342.000320,626.845208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,27,1,0,614,1620.000000,108,5,37289.000320,714.104584,hintandextended,nbiot,60 +on3,0,0,25,1,0,190,1500.000000,108,1,12487.000320,658.500208,hintandextended,nbiot,60 +on4,0,0,25,1,0,1080,1500.000000,108,1,66979.600640,664.545624,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,638,1500.000000,108,1,40522.000320,702.700416,hintandextended,nbiot,60 +on6,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 +on11,0,0,25,1,0,588,1500.000000,108,1,34857.000320,626.000416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,520,1500.000000,108,1,32049.000320,663.310208,hintandextended,nbiot,60 +on10,0,0,24,1,0,60,1440.000000,108,0,5165.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,25,1,0,63,1500.000000,108,2,10009.000320,707.250208,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1464.600640,108,0,-1.000000,793.843584,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,874,1454.000320,109,0,53804.000320,623.460336,hintandextended,nbiot,60 +on4,0,0,26,1,0,1076,1560.000000,109,3,64019.000320,701.350000,hintandextended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,109,0,34122.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,938,1500.000000,109,1,57333.000320,662.270208,hintandextended,nbiot,60 +on9,0,0,25,1,0,972,1500.000000,109,1,60607.000320,655.250208,hintandextended,nbiot,60 +on3,0,0,24,1,0,680,1440.000320,109,0,42800.000320,602.000336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1458.000320,109,0,-1.000000,765.202000,hintandextended,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,109,0,7672.000320,602.000416,hintandextended,nbiot,60 +on1,0,0,25,1,0,375,1500.000000,110,1,24303.600960,626.455832,hintandextended,nbiot,60 +on9,0,0,25,1,0,608,1500.000000,110,1,36746.000320,657.070624,hintandextended,nbiot,60 +on5,0,0,24,1,0,494,1440.000000,110,0,30040.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,25,1,0,459,1500.000000,110,1,27617.000320,639.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,21,1441.000320,110,0,2878.000320,602.400336,hintandextended,nbiot,60 +on3,0,0,24,1,0,381,1441.000320,110,0,24263.000320,602.400336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,1024,1500.000000,110,1,63866.000320,699.580208,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1460.600960,110,0,-1.000000,870.244752,hintandextended,nbiot,60 +on2,0,0,25,1,0,178,1500.000000,110,2,11675.000320,633.410208,hintandextended,nbiot,60 +on4,0,0,25,1,0,663,1500.000000,110,2,42545.000320,654.080000,hintandextended,nbiot,60 +on10,0,0,25,1,0,497,1500.000000,110,2,35499.000320,706.860000,hintandextended,nbiot,60 +on11,0,0,24,1,0,123,1440.000000,110,0,8128.000320,602.000416,hintandextended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,111,0,69320.000320,626.960000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1473.600640,111,0,-1.000000,771.442544,hintandextended,nbiot,60 +on4,0,0,24,1,0,721,1440.000000,111,0,44155.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,1299,1500.000000,111,1,79169.000320,626.000208,hintandextended,nbiot,60 +on5,0,0,25,1,0,900,1500.000000,111,1,54568.600640,626.195624,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,540,1500.000000,111,1,35972.600640,659.605624,hintandextended,nbiot,60 +on6,0,0,25,1,0,1174,1500.000000,111,1,73283.000320,650.180000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,638,1500.000000,111,1,38762.000320,639.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,1298,1500.000000,112,1,80916.000320,683.850208,hintandextended,nbiot,60 +on5,0,0,25,1,0,117,1500.000000,112,1,5749.000320,652.650624,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,451,1451.000320,112,0,26050.000320,606.400544,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,26,1,0,522,1580.600960,112,2,30791.600960,681.835800,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,391,1451.000320,112,0,22124.000320,606.400752,hintandextended,nbiot,60 +on2,0,0,24,1,0,840,1440.000000,112,0,50490.000320,602.000416,hintandextended,nbiot,60 +on10,0,0,25,1,0,1382,1500.000000,112,1,85216.000000,649.790000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1490.601280,112,0,-1.000000,830.244256,hintandextended,nbiot,60 +on6,0,0,24,1,0,530,1470.000320,112,0,30751.000320,614.000336,hintandextended,nbiot,60 +on7,0,0,24,1,0,0,1440.000000,112,0,1904.000320,639.310208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,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 +on9,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,762,1462.000320,113,0,44260.000320,626.660336,hintandextended,nbiot,60 +on2,0,0,24,1,0,123,1440.000000,113,0,10202.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,26,1,0,822,1581.600960,113,2,49773.600960,696.990800,hintandextended,nbiot,60 +on6,0,0,25,1,0,743,1503.600960,113,1,44300.600960,640.635592,hintandextended,nbiot,60 +on10,0,0,24,1,0,655,1475.000320,113,0,38801.000320,616.000336,hintandextended,nbiot,60 +on4,0,0,24,1,0,861,1441.000320,113,0,51700.000320,640.750336,hintandextended,nbiot,60 +on11,0,0,25,1,0,809,1500.000000,113,1,49732.000320,649.009792,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1482.201920,113,0,-1.000000,774.882848,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,945,1500.000000,114,1,57142.000320,626.000208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,1164,1444.000320,114,0,69678.000320,603.600336,hintandextended,nbiot,60 +on5,0,0,28,1,0,977,1680.000000,114,5,59390.000320,775.349792,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,852,1581.600960,114,2,49116.600960,665.660800,hintandextended,nbiot,60 +on3,0,0,24,1,0,749,1449.000320,114,0,44686.000320,640.830336,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,791,1500.000000,114,1,49075.000320,669.029792,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1461.600960,114,0,-1.000000,766.642880,hintandextended,nbiot,60 +on6,0,0,24,1,0,879,1459.000320,114,0,51519.000320,646.910336,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,540,1440.000000,115,0,32757.000320,615.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,679,1440.000000,115,0,40662.000320,602.650000,hintandextended,nbiot,60 +on6,0,0,25,1,0,220,1500.000000,115,1,11107.000320,626.000208,hintandextended,nbiot,60 +on3,0,0,24,1,0,164,1464.000320,115,0,7414.000320,649.300544,hintandextended,nbiot,60 +on11,0,0,24,1,0,606,1440.000000,115,0,39224.000320,611.100000,hintandextended,nbiot,60 +on1,0,0,24,1,0,89,1449.000320,115,0,3675.000320,605.600544,hintandextended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,115,0,59707.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,26,1,0,259,1560.000000,115,3,15236.000320,691.405000,hintandextended,nbiot,60 +on5,0,0,25,1,0,279,1500.000000,115,1,18644.000320,626.000416,hintandextended,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,115,0,44732.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,300,1440.000000,115,0,18686.000320,628.650832,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1478.000640,115,0,-1.000000,877.204000,hintandextended,nbiot,60 +on1,0,0,24,1,0,512,1452.000320,116,0,28946.000320,681.810544,hintandextended,nbiot,60 +on6,0,0,25,1,0,172,1500.000000,116,1,9630.000320,664.350416,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,810,1500.000000,116,1,48741.000320,645.500208,hintandextended,nbiot,60 +on8,0,0,24,1,0,734,1440.000000,116,0,44664.000320,676.100208,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1444.000320,116,0,-1.000000,785.602624,hintandextended,nbiot,60 +on7,0,0,24,1,0,240,1440.000000,116,0,14937.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,588,1500.000000,116,1,35864.000320,626.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,95,1455.000320,116,0,5867.000320,645.310336,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,579,1500.000000,116,2,38715.000320,678.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,163,1463.000320,117,0,9159.000320,655.270544,hintandextended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,117,0,69405.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,878,1500.000000,117,1,54057.000320,631.200208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,27,1,0,374,1620.000000,117,5,19237.000320,730.355000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,117,0,-1.000000,784.003536,hintandextended,nbiot,60 +on7,0,0,25,1,0,399,1500.000000,117,1,22256.000320,626.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,231,1500.000000,117,1,13156.000320,649.010624,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,751,1451.000320,117,0,44924.000320,606.400336,hintandextended,nbiot,60 +on5,0,0,25,1,0,299,1500.000000,117,1,16991.000320,626.000624,hintandextended,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,118,0,13451.000320,639.310416,hintandextended,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,118,0,32098.000320,639.310208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,698,1500.000000,118,1,42909.000320,634.060416,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1513.601600,118,0,-1.000000,839.443760,hintandextended,nbiot,60 +on8,0,0,24,1,0,900,1440.000000,118,0,57532.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,595,1475.000320,118,0,34459.000320,616.000752,hintandextended,nbiot,60 +on11,0,0,25,1,0,878,1500.000000,118,1,53225.000320,626.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,118,0,25983.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,25,1,0,1124,1500.000000,118,1,66889.000320,639.000000,hintandextended,nbiot,60 +on4,0,0,26,1,0,638,1580.600960,118,2,34499.600960,695.746008,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,386,1500.000000,119,1,22172.000320,697.370000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,27,1,0,456,1620.000000,119,4,25534.000320,712.999584,hintandextended,nbiot,60 +on3,0,0,25,1,0,374,1500.000000,119,1,22213.600960,642.900624,hintandextended,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,119,0,80293.000320,613.959792,hintandextended,nbiot,60 +on4,0,0,25,1,0,1358,1518.600960,119,1,80334.600960,633.440592,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1489.201920,119,0,-1.000000,829.684720,hintandextended,nbiot,60 +on8,0,0,25,1,0,770,1500.000000,119,1,45785.000320,664.350416,hintandextended,nbiot,60 +on2,0,0,26,1,0,356,1560.000000,119,3,20098.000320,717.795000,hintandextended,nbiot,60 +on6,0,0,25,1,0,278,1500.000000,119,1,16650.000320,654.145208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,196,1440.000000,119,0,11765.000320,604.210208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1460.600960,120,0,-1.000000,714.241840,hintandextended,nbiot,60 +on4,0,0,24,1,0,1301,1461.000320,120,0,76293.000320,610.400336,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,939,1459.000320,120,0,55677.000320,634.300336,hintandextended,nbiot,60 +on6,0,0,24,1,0,772,1472.000320,120,0,46016.000320,614.800336,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,106,1466.000320,120,0,6584.000320,612.400336,hintandextended,nbiot,60 +on7,0,0,25,1,0,727,1500.000000,120,1,46056.600960,626.195624,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,677,1440.000000,121,0,39746.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1140,1440.000000,121,0,68545.000320,602.000208,hintandextended,nbiot,60 +on0,1,2,24,0,0,0,1441.000320,121,0,-1.000000,628.400544,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,361,1440.000000,122,0,24986.000320,602.000416,hintandextended,nbiot,60 +on8,0,0,24,1,0,583,1463.000320,122,0,32768.000320,611.200336,hintandextended,nbiot,60 +on1,0,0,24,1,0,507,1447.000320,122,0,29284.000320,636.000544,hintandextended,nbiot,60 +on11,0,0,25,1,0,279,1500.000000,122,1,17607.000320,626.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,703,1463.000320,122,0,41462.000320,665.150336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1128,1468.000320,122,0,65714.000320,613.200336,hintandextended,nbiot,60 +on10,0,0,24,1,0,321,1441.000320,122,0,21195.000320,602.400336,hintandextended,nbiot,60 +on9,0,0,25,1,0,1435,1500.000000,122,1,85148.000000,629.250000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1471.000320,122,0,-1.000000,848.402832,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,736,1500.000000,122,1,43983.000320,626.000416,hintandextended,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,122,0,14286.000320,623.710208,hintandextended,nbiot,60 +on8,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 +on6,0,0,24,1,0,600,1440.000000,123,0,36351.000320,602.000416,hintandextended,nbiot,60 +on5,0,0,24,1,0,23,1443.000320,123,0,3295.000320,640.510336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,619,1500.000000,123,2,40624.000320,665.649792,hintandextended,nbiot,60 +on10,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 +on9,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 +on1,0,0,25,1,0,108,1500.000000,123,1,5668.000320,626.000624,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,123,0,-1.000000,680.001664,hintandextended,nbiot,60 +on10,0,0,24,1,0,504,1444.000320,124,0,32331.000320,603.600336,hintandextended,nbiot,60 +on8,0,0,24,1,0,1438,1478.000000,124,0,83541.000000,617.200000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1460.600960,124,0,-1.000000,792.242880,hintandextended,nbiot,60 +on6,0,0,24,1,0,367,1440.000000,124,0,23270.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,757,1457.000320,124,0,46767.000320,608.800336,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,26,1,0,491,1580.600960,124,3,32371.600960,715.505800,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,46,1466.000320,124,0,1517.000320,612.400544,hintandextended,nbiot,60 +on2,0,0,24,1,0,1098,1440.000000,124,0,67006.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,25,1,0,360,1500.000000,124,2,25702.000320,665.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,120,1440.000000,125,0,10645.000320,602.000416,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1465.000320,125,0,-1.000000,768.002832,hintandextended,nbiot,60 +on12,0,0,24,1,0,825,1465.000320,125,0,49163.000320,612.000752,hintandextended,nbiot,60 +on5,0,0,24,1,0,476,1476.000320,125,0,25416.000320,616.400336,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,191,1440.000000,125,0,10974.000320,602.000416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,125,0,22155.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,279,1459.000320,125,0,14922.000320,609.600752,hintandextended,nbiot,60 +on4,0,0,24,1,0,511,1451.000320,125,0,31188.000320,606.400336,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1452.600640,126,0,-1.000000,737.042544,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,1020,1500.000000,126,1,63617.600640,681.315416,hintandextended,nbiot,60 +on7,0,0,24,1,0,316,1440.000000,126,0,20271.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,25,1,0,1185,1500.000000,126,1,71948.000320,639.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,259,1440.000000,126,0,15057.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1080,1500.000000,126,2,68263.600640,629.445624,hintandextended,nbiot,60 +on4,0,0,24,1,0,907,1440.000000,126,0,54627.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,418,1478.000320,127,0,23035.000320,688.050544,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,1200,1440.000000,127,0,74082.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,1,0,1026,1440.000000,127,0,63144.000320,611.100000,hintandextended,nbiot,60 +on2,0,0,25,1,0,242,1500.000000,127,1,14938.600960,626.195624,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,282,1462.000320,127,0,14898.000320,610.800752,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,341,1461.000320,127,0,18722.000320,610.400752,hintandextended,nbiot,60 +on8,0,0,25,1,0,1080,1500.000000,127,1,68047.000320,626.000416,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1484.601280,127,0,-1.000000,801.843632,hintandextended,nbiot,60 +on1,0,0,24,1,0,1380,1440.000000,127,0,85878.000000,602.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,128,0,1570.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,25,1,0,720,1500.000000,128,1,44456.600640,638.805208,hintandextended,nbiot,60 +on4,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 +on5,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,90,1450.000320,128,0,5479.000320,606.000544,hintandextended,nbiot,60 +on10,0,0,24,1,0,911,1440.000000,128,0,55553.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,829,1469.000320,128,0,48206.000320,613.600336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1021,1440.000000,128,0,63838.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,840,1440.000000,128,0,51644.000320,613.050416,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1501.000640,128,0,-1.000000,782.402544,hintandextended,nbiot,60 +on8,0,0,25,1,0,240,1500.000000,129,1,15007.600640,635.165624,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1481.201600,129,0,-1.000000,826.484384,hintandextended,nbiot,60 +on9,0,0,26,1,0,438,1560.000000,129,3,27331.000320,663.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,822,1462.000320,129,0,48966.000320,610.800336,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,129,0,6157.000320,602.000416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,204,1444.000320,129,0,13971.000320,606.850544,hintandextended,nbiot,60 +on7,0,0,25,1,0,371,1500.000000,129,1,24585.000320,654.730208,hintandextended,nbiot,60 +on10,0,0,25,1,0,540,1500.000000,129,1,33298.600640,640.105624,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,637,1500.000000,129,1,39902.000320,665.650416,hintandextended,nbiot,60 +on1,0,0,24,1,0,17,1440.000000,129,0,275.000320,666.350416,hintandextended,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,130,0,1365.000320,602.000416,hintandextended,nbiot,60 +on6,0,0,25,1,0,344,1500.000000,130,1,22090.000320,639.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,660,1440.000000,130,0,41350.000320,602.000416,hintandextended,nbiot,60 +on8,0,0,25,1,0,399,1500.000000,130,1,26100.000320,670.460416,hintandextended,nbiot,60 +on10,0,0,24,1,0,145,1445.000320,130,0,7271.000320,604.000336,hintandextended,nbiot,60 +on11,0,0,25,1,0,303,1500.000000,130,1,18256.600960,643.875208,hintandextended,nbiot,60 +on2,0,0,25,1,0,518,1500.000000,130,1,31941.000320,626.000208,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1492.601600,130,0,-1.000000,857.044176,hintandextended,nbiot,60 +on5,0,0,24,1,0,243,1440.000000,130,0,15945.000320,602.000416,hintandextended,nbiot,60 +on12,0,0,24,1,0,322,1442.000320,130,0,18216.000320,602.800336,hintandextended,nbiot,60 +on7,0,0,24,1,0,720,1440.000000,130,0,44176.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,1,0,703,1463.000320,131,0,40201.000320,611.200544,hintandextended,nbiot,60 +on4,0,0,24,1,0,900,1440.000000,131,0,54263.000320,637.360208,hintandextended,nbiot,60 +on10,0,0,25,1,0,519,1500.000000,131,1,31975.000320,677.350000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1463.601600,131,0,-1.000000,819.443760,hintandextended,nbiot,60 +on11,0,0,25,1,0,993,1500.000000,131,1,59100.000320,640.950416,hintandextended,nbiot,60 +on8,0,0,25,1,0,421,1500.000000,131,1,25422.600960,659.605624,hintandextended,nbiot,60 +on1,0,0,24,1,0,290,1470.000320,131,0,15444.000320,614.000336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,131,0,32963.000320,606.550208,hintandextended,nbiot,60 +on12,0,0,24,1,0,650,1470.000320,131,0,39419.000320,614.000336,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,474,1474.000320,131,0,25382.000320,615.600544,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1456.600960,132,0,-1.000000,686.641840,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1200,1440.000000,132,0,74085.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,900,1500.000000,132,1,54593.600640,626.195624,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,729,1440.000000,132,0,46366.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,132,0,61851.000320,602.000416,hintandextended,nbiot,60 +on8,0,0,24,1,0,688,1448.000320,133,0,40300.000320,605.200336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,240,1440.000000,133,0,16571.000320,602.000624,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,835,1475.000320,133,0,49311.000320,616.000336,hintandextended,nbiot,60 +on4,0,0,24,1,0,840,1440.000000,133,0,52853.000320,602.000416,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1487.000640,133,0,-1.000000,802.802752,hintandextended,nbiot,60 +on6,0,0,24,1,0,1336,1440.000000,133,0,82332.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,180,1440.000000,133,0,12985.000320,602.000416,hintandextended,nbiot,60 +on1,0,0,24,1,0,173,1473.000320,133,0,7555.000320,615.200336,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1159,1440.000000,133,0,69520.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,25,1,0,422,1500.000000,134,2,29228.000320,707.250208,hintandextended,nbiot,60 +on5,0,0,25,1,0,0,1500.000000,134,1,1679.600640,626.195832,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1494.600960,134,0,-1.000000,779.843504,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,387,1500.000000,134,1,23648.000320,659.410208,hintandextended,nbiot,60 +on10,0,0,25,1,0,240,1500.000000,134,2,19848.000320,677.609584,hintandextended,nbiot,60 +on4,0,0,25,1,0,459,1500.000000,134,1,26735.000320,626.000208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1320,1440.000000,134,0,80973.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,25,1,0,240,1500.000000,134,1,15778.600640,663.505624,hintandextended,nbiot,60 +on1,0,0,25,1,0,1299,1500.000000,135,1,79853.000320,626.000208,hintandextended,nbiot,60 +on4,0,0,25,1,0,1178,1500.000000,135,1,71318.000320,626.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,57,1477.000320,135,0,461.000320,616.800336,hintandextended,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,135,0,67484.000320,623.710208,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1481.601600,135,0,-1.000000,800.643136,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,19,1500.000000,135,1,501.600960,626.195624,hintandextended,nbiot,60 +on3,0,0,25,1,0,213,1500.000000,135,2,16531.000320,643.550208,hintandextended,nbiot,60 +on2,0,0,24,1,0,1260,1440.000000,135,0,78745.000320,613.960000,hintandextended,nbiot,60 +on10,0,0,24,1,0,191,1440.000000,135,0,11095.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,60,1500.000000,136,1,4948.600640,626.195624,hintandextended,nbiot,60 +on11,0,0,26,1,0,416,1560.000000,136,2,25148.000320,676.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,136,0,847.000320,640.350416,hintandextended,nbiot,60 +on2,0,0,26,1,0,379,1581.600960,136,2,20973.600960,672.485384,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1478.601280,136,0,-1.000000,773.443632,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,338,1500.000000,136,1,20932.000320,638.805000,hintandextended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,136,0,17560.000320,623.710208,hintandextended,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,136,0,32133.000320,602.000416,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,3,24,0,0,0,1450.000320,137,0,-1.000000,658.000960,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,432,1440.000000,137,0,25342.000320,602.000416,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,355,1475.000320,137,0,19999.000320,616.000336,hintandextended,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,137,0,17700.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,540,1500.000000,138,1,32954.600640,639.455208,hintandextended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,138,0,28742.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1200,1440.000000,138,0,73343.000320,615.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1521.202240,138,0,-1.000000,790.483184,hintandextended,nbiot,60 +on7,0,0,24,1,0,804,1444.000320,138,0,47819.000320,603.600336,hintandextended,nbiot,60 +on2,0,0,24,1,0,188,1440.000000,138,0,11550.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,25,1,0,678,1562.600960,138,2,37634.600960,651.040800,hintandextended,nbiot,60 +on1,0,0,25,1,0,639,1500.000000,138,1,37593.000320,638.805000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,478,1478.000320,139,0,28748.000320,617.200336,hintandextended,nbiot,60 +on3,0,0,25,1,0,840,1500.000000,139,1,51245.600640,626.195624,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,1239,1500.000000,139,1,72826.000320,626.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1452.000320,139,0,-1.000000,788.802624,hintandextended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,139,0,62005.000320,642.560416,hintandextended,nbiot,60 +on7,0,0,24,1,0,99,1459.000320,139,0,7154.000320,609.600336,hintandextended,nbiot,60 +on4,0,0,24,1,0,780,1440.000000,139,0,46999.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,1277,1440.000000,139,0,77518.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,25,1,0,1182,1500.000000,139,1,70166.000320,637.960208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,108,1500.000000,140,2,9995.000320,658.500208,hintandextended,nbiot,60 +on7,0,0,24,1,0,1075,1475.000320,140,0,62995.000320,616.000336,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,60,1440.000000,140,0,3660.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,1398,1440.000000,140,0,85867.000000,602.000000,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,140,0,-1.000000,680.001040,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,141,0,6496.000320,608.110208,hintandextended,nbiot,60 +on9,0,0,25,1,0,281,1500.000000,141,1,16832.000320,626.000416,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,974,1442.000320,141,1,59646.000320,602.800544,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1478.000320,141,0,-1.000000,747.202208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,141,0,59704.000320,628.650208,hintandextended,nbiot,60 +on5,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 +on11,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,158,1500.000000,141,1,8429.000320,683.070416,hintandextended,nbiot,60 +on1,0,0,25,1,0,222,1500.000000,141,1,14153.000320,663.310416,hintandextended,nbiot,60 +on9,0,0,25,1,0,1298,1500.000000,142,1,77540.000320,626.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,1200,1440.000000,142,0,73567.000320,639.310208,hintandextended,nbiot,60 +on7,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,1,0,1172,1452.000320,142,0,70240.000320,606.800336,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1477.000640,142,0,-1.000000,798.801920,hintandextended,nbiot,60 +on12,0,0,24,1,0,1380,1440.000000,142,0,83859.000000,602.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,727,1440.000000,142,0,46543.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,840,1440.000000,142,0,50912.000320,602.000416,hintandextended,nbiot,60 +on5,0,0,24,1,0,409,1469.000320,142,0,24410.000320,613.600336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,142,0,38804.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,24,1,0,615,1440.000000,143,0,39048.000320,608.110416,hintandextended,nbiot,60 +on6,0,0,26,1,0,820,1560.000000,143,3,49390.000320,663.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,180,1440.000000,143,0,13937.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,525,1465.000320,143,0,32257.000320,612.000544,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,1140,1440.000000,143,0,70084.000320,602.000208,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1485.000640,143,0,-1.000000,828.003168,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,63,1440.000000,143,0,6060.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,143,0,40862.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,25,1,0,698,1500.000000,143,1,40819.000320,626.000208,hintandextended,nbiot,60 +on4,0,0,24,1,0,666,1484.000000,143,2,46350.000320,654.700000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,144,0,64661.000320,602.000208,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1512.001280,144,0,-1.000000,838.803424,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,360,1440.000000,144,0,23268.000320,652.310416,hintandextended,nbiot,60 +on6,0,0,24,1,0,231,1471.000320,144,0,13307.000320,614.400544,hintandextended,nbiot,60 +on7,0,0,24,1,0,114,1474.000320,144,0,4614.000320,615.600336,hintandextended,nbiot,60 +on2,0,0,24,1,0,840,1440.000000,144,0,53225.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,1,0,963,1440.000000,144,0,60885.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,25,1,0,449,1500.000000,144,1,27642.000320,626.000416,hintandextended,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,144,0,10336.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,144,0,868.000320,602.000416,hintandextended,nbiot,60 +on5,0,0,24,1,0,1200,1440.000000,145,0,74378.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,780,1440.000000,145,0,48736.000320,620.850416,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,982,1442.000320,145,0,57857.000320,640.110336,hintandextended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,145,0,25691.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,25,1,0,1071,1500.000000,145,1,63455.000320,626.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,687,1447.000320,145,0,42489.000320,604.800544,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,770,1470.000320,145,0,44099.000320,614.000336,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1511.000960,145,0,-1.000000,786.402256,hintandextended,nbiot,60 +on8,0,0,25,1,0,824,1500.000000,146,1,49376.000320,663.310208,hintandextended,nbiot,60 +on1,0,0,25,1,0,418,1500.000000,146,1,23146.000320,626.000416,hintandextended,nbiot,60 +on5,0,0,25,1,0,897,1500.000000,146,1,52644.000320,626.000208,hintandextended,nbiot,60 +on3,0,0,26,1,0,922,1580.600960,146,3,56667.600960,694.835800,hintandextended,nbiot,60 +on11,0,0,24,1,0,53,1473.000320,146,0,2928.000320,615.200544,hintandextended,nbiot,60 +on2,0,0,24,1,0,753,1453.000320,146,0,46485.000320,644.510336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,195,1440.000000,146,0,11092.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,146,0,8278.000320,602.000208,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1476.601280,146,0,-1.000000,850.643840,hintandextended,nbiot,60 +on4,0,0,24,1,0,932,1452.000320,146,0,56627.000320,606.800544,hintandextended,nbiot,60 +on6,0,0,24,1,0,300,1440.000000,146,0,21134.000320,639.310208,hintandextended,nbiot,60 +on11,0,0,24,1,0,240,1440.000000,147,0,15190.000320,602.260000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1365,1465.000320,147,0,79446.000320,612.000336,hintandextended,nbiot,60 +on6,0,0,25,1,0,120,1500.000000,147,1,8034.600640,626.195624,hintandextended,nbiot,60 +on2,0,0,25,1,0,401,1500.000000,147,1,24462.000320,626.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1515.000960,147,0,-1.000000,866.003296,hintandextended,nbiot,60 +on5,0,0,24,1,0,840,1440.000000,147,0,52073.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,720,1440.000000,147,0,44670.000320,615.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,774,1474.000320,147,0,44619.000320,615.600544,hintandextended,nbiot,60 +on10,0,0,24,1,0,990,1450.000320,147,0,58387.000320,606.000336,hintandextended,nbiot,60 +on12,0,0,25,1,0,242,1500.000000,147,1,19378.000320,700.620208,hintandextended,nbiot,60 +on7,0,0,24,1,0,226,1466.000320,147,0,14052.000320,612.400336,hintandextended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,148,0,18942.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,148,0,30943.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,148,0,-1.000000,706.001248,hintandextended,nbiot,60 +on3,0,0,24,1,0,1344,1444.000320,148,0,81387.000320,603.600336,hintandextended,nbiot,60 +on4,0,0,24,1,0,998,1458.000320,148,0,58688.000320,609.200544,hintandextended,nbiot,60 +on2,0,0,24,1,0,218,1458.000320,148,0,14074.000320,609.200336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,398,1500.000000,149,1,25320.000320,660.450624,hintandextended,nbiot,60 +on10,0,0,24,1,0,111,1471.000320,149,0,6552.000320,614.400336,hintandextended,nbiot,60 +on11,0,0,24,1,0,1140,1440.000000,149,0,68780.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,149,0,40965.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1273,1440.000000,149,0,77730.000320,605.900208,hintandextended,nbiot,60 +on7,0,0,25,1,0,1336,1500.000000,149,1,81602.000320,677.350000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,360,1500.000000,149,1,22008.600640,633.606040,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1529.601280,149,0,-1.000000,793.843424,hintandextended,nbiot,60 +on2,0,0,25,1,0,540,1500.000000,150,1,32906.600640,664.545624,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,150,0,157.000320,602.000416,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,220,1460.000320,150,0,11159.000320,610.000336,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,600,1440.000000,150,0,37623.000320,604.600208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,150,0,21193.000320,613.960000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,342,1500.000000,150,1,24806.000320,626.000416,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1493.601280,150,0,-1.000000,779.442800,hintandextended,nbiot,60 +on1,0,0,24,1,0,728,1440.000000,150,0,43667.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,167,1467.000320,151,0,8355.000320,650.110336,hintandextended,nbiot,60 +on5,0,0,24,1,0,1140,1440.000000,151,0,69113.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,151,0,63143.000320,602.000416,hintandextended,nbiot,60 +on10,0,0,24,1,0,840,1440.000000,151,0,51234.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1488.000960,151,0,-1.000000,751.202048,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,299,1500.000000,151,1,17435.000320,626.000416,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,227,1500.000000,151,1,14372.000320,663.310208,hintandextended,nbiot,60 +on1,0,0,24,1,0,372,1440.000000,152,0,22028.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,152,0,7107.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,25,1,0,566,1500.000000,152,1,34942.000320,676.700416,hintandextended,nbiot,60 +on5,0,0,24,1,0,19,1440.000000,152,0,3370.000320,615.910416,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1489.000640,152,0,-1.000000,777.602544,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,698,1500.000000,152,1,42135.000320,626.000416,hintandextended,nbiot,60 +on7,0,0,24,1,0,462,1462.000320,152,0,26864.000320,642.260544,hintandextended,nbiot,60 +on11,0,0,24,1,0,0,1440.000000,152,0,3425.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,144,1500.000000,153,1,12166.000320,677.219584,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1483.201920,153,0,-1.000000,879.285968,hintandextended,nbiot,60 +on11,0,0,26,1,0,245,1581.600960,153,2,12207.600960,658.640800,hintandextended,nbiot,60 +on6,0,0,24,1,0,136,1440.000000,153,0,8023.000320,622.410208,hintandextended,nbiot,60 +on4,0,0,27,1,0,179,1641.600960,153,4,8064.600960,783.260592,hintandextended,nbiot,60 +on10,0,0,25,1,0,46,1500.000000,153,2,6121.000320,635.100208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,15,1440.000000,153,0,449.000320,637.360208,hintandextended,nbiot,60 +on3,0,0,24,1,0,1239,1459.000320,153,0,74858.000320,609.600336,hintandextended,nbiot,60 +on7,0,0,25,1,0,955,1500.000000,153,1,55414.000320,626.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,287,1467.000320,153,0,16393.000320,612.800544,hintandextended,nbiot,60 +on2,0,0,26,1,0,296,1560.000000,153,2,19901.000320,674.050416,hintandextended,nbiot,60 +on9,0,0,24,1,0,1031,1440.000000,153,0,62321.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,1299,1459.000320,154,0,77319.000320,618.700336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1456.000320,154,0,-1.000000,790.403456,hintandextended,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,154,0,710.000320,602.000624,hintandextended,nbiot,60 +on5,0,0,24,1,0,660,1440.000000,154,0,43156.000320,640.350416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,1237,1457.000320,154,0,72708.000320,608.800336,hintandextended,nbiot,60 +on4,0,0,24,1,0,159,1459.000320,154,0,8946.000320,609.600336,hintandextended,nbiot,60 +on7,0,0,25,1,0,240,1500.000000,154,1,15283.600640,626.195624,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,840,1500.000000,154,2,55236.000320,677.609584,hintandextended,nbiot,60 +on2,0,0,25,1,0,840,1500.000000,154,1,53607.600640,626.195624,hintandextended,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,155,0,32770.000320,613.960000,hintandextended,nbiot,60 +on11,0,0,24,1,0,168,1468.000320,155,0,7934.000320,613.200544,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1469.000320,155,0,-1.000000,769.602624,hintandextended,nbiot,60 +on10,0,0,25,1,0,1108,1500.000000,155,2,66862.000320,632.500000,hintandextended,nbiot,60 +on1,0,0,24,1,0,224,1464.000320,155,0,12082.000320,611.600752,hintandextended,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,155,0,55990.000320,605.250208,hintandextended,nbiot,60 +on4,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 +on8,0,0,25,1,0,582,1500.000000,155,1,37280.000320,626.000208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1025,1440.000000,155,0,63742.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1492.601280,156,0,-1.000000,727.042384,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,46,1466.000320,156,0,2032.000320,612.400336,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,780,1500.000000,156,1,49669.600640,626.195832,hintandextended,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,156,0,7776.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,156,0,4306.000320,602.000416,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1080,1440.000000,156,0,65566.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1084,1440.000000,157,0,68284.000320,611.750416,hintandextended,nbiot,60 +on4,0,0,25,1,0,698,1500.000000,157,1,42779.000320,639.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,157,0,63226.000320,602.000416,hintandextended,nbiot,60 +on8,0,0,24,1,0,960,1440.000000,157,0,59680.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,600,1500.000000,157,1,36792.600640,651.155208,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1493.600960,157,0,-1.000000,779.443296,hintandextended,nbiot,60 +on12,0,0,24,1,0,56,1476.000320,157,0,1586.000320,616.400544,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,320,1440.000320,157,0,21538.000320,602.000752,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1140,1440.000000,158,0,71516.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,649,1469.000320,158,0,38858.000320,619.710336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,158,0,9327.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,908,1440.000000,158,0,55904.000320,602.000416,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1488.000640,158,0,-1.000000,725.201504,hintandextended,nbiot,60 +on2,0,0,25,1,0,698,1500.000000,158,1,42615.000320,626.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,240,1440.000000,159,0,15756.000320,613.310208,hintandextended,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,159,0,7553.000320,652.700416,hintandextended,nbiot,60 +on11,0,0,24,1,0,113,1473.000320,159,0,4365.000320,620.400752,hintandextended,nbiot,60 +on12,0,0,26,1,0,421,1560.000000,159,2,26395.000320,699.465208,hintandextended,nbiot,60 +on5,0,0,25,1,0,158,1500.000000,159,1,11515.000320,682.810208,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1491.001280,159,0,-1.000000,882.404880,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1289,1449.000320,159,0,77960.000320,605.600336,hintandextended,nbiot,60 +on2,0,0,24,1,0,357,1477.000320,159,0,20747.000320,655.150544,hintandextended,nbiot,60 +on4,0,0,26,1,0,298,1580.000960,159,2,20787.000960,731.580384,hintandextended,nbiot,60 +on10,0,0,25,1,0,218,1500.000000,159,1,15705.000320,663.310208,hintandextended,nbiot,60 +on6,0,0,28,1,0,534,1680.000000,159,5,31308.000320,762.349792,hintandextended,nbiot,60 +on8,0,0,25,1,0,414,1500.000000,159,1,24691.000320,638.350000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,160,0,5957.000320,602.000624,hintandextended,nbiot,60 +on8,0,0,25,1,0,660,1500.000000,160,1,41443.600640,664.545624,hintandextended,nbiot,60 +on5,0,0,25,1,0,587,1500.000000,160,1,35727.000320,639.000208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,420,1500.000000,160,1,26442.600640,653.105832,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1491.801920,160,0,-1.000000,804.725136,hintandextended,nbiot,60 +on2,0,0,24,1,0,35,1455.000320,160,0,2015.000320,608.000752,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,618,1440.000000,160,0,37485.000320,603.300000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,480,1500.000000,160,2,29105.600640,626.195624,hintandextended,nbiot,60 +on1,0,0,25,1,0,421,1500.000000,160,1,26487.600320,701.270000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,458,1500.000000,161,1,28504.000320,637.959792,hintandextended,nbiot,60 +on3,0,0,25,1,0,360,1500.000000,161,1,22217.600640,666.755416,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1320,1440.000000,161,0,80490.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,888,1468.000320,161,0,50986.000320,613.200336,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,443,1503.600960,161,1,28545.600960,627.440800,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1478.601600,161,0,-1.000000,747.442720,hintandextended,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,161,0,38687.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,720,1500.000000,162,1,45493.600640,626.195624,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1517.000640,162,0,-1.000000,892.805248,hintandextended,nbiot,60 +on11,0,0,24,1,0,300,1440.000000,162,0,19307.000320,620.200416,hintandextended,nbiot,60 +on8,0,0,24,1,0,556,1440.000000,162,0,34229.000320,604.600208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,1,1500.000000,162,2,4168.000320,683.460000,hintandextended,nbiot,60 +on10,0,0,25,1,0,287,1500.000000,162,1,15105.000320,626.000208,hintandextended,nbiot,60 +on6,0,0,25,1,0,158,1500.000000,162,1,7945.000320,626.000624,hintandextended,nbiot,60 +on5,0,0,24,1,0,8,1440.000000,162,0,3077.000320,639.310416,hintandextended,nbiot,60 +on3,0,0,24,1,0,808,1448.000320,162,0,46902.000320,605.200336,hintandextended,nbiot,60 +on1,0,0,24,1,0,1016,1476.000320,162,0,59993.000320,616.400544,hintandextended,nbiot,60 +on4,0,0,24,1,0,900,1440.000000,162,0,56003.000320,602.000208,hintandextended,nbiot,60 +on7,0,0,26,1,0,176,1560.000000,162,3,12809.000320,708.500416,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,163,0,6440.000320,602.000416,hintandextended,nbiot,60 +on10,0,0,24,1,0,520,1460.000320,163,0,31967.000320,673.050544,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,1238,1500.000000,163,1,75208.000320,626.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1041,1441.000320,163,0,64501.000320,610.460544,hintandextended,nbiot,60 +on9,0,0,24,1,0,334,1454.000320,163,0,19202.000320,641.010336,hintandextended,nbiot,60 +on12,0,0,25,1,0,398,1500.000000,163,1,24277.000320,640.950624,hintandextended,nbiot,60 +on7,0,0,25,1,0,360,1500.000000,163,2,25930.000320,703.350208,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1539.201600,163,0,-1.000000,875.684800,hintandextended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,163,0,85408.000000,602.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,480,1500.000000,163,1,32024.600640,626.195624,hintandextended,nbiot,60 +on11,0,0,25,1,0,1020,1500.000000,163,1,64549.600640,664.545624,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,900,1440.000000,164,0,55715.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,865,1445.000320,164,0,50956.000320,604.000544,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.600960,164,0,-1.000000,766.243088,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,290,1530.600960,164,1,16911.600960,660.146008,hintandextended,nbiot,60 +on9,0,0,24,1,0,280,1460.000320,164,0,16871.000320,610.000336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,720,1440.000000,164,0,45078.000320,602.000416,hintandextended,nbiot,60 +on6,0,0,25,1,0,376,1500.000000,164,1,23663.000320,631.200416,hintandextended,nbiot,60 +on8,0,0,24,1,0,60,1440.000000,164,0,5466.000320,602.000416,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,452,1452.000320,165,0,26223.000320,606.800336,hintandextended,nbiot,60 +on6,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 +on1,0,0,25,1,0,480,1500.000000,165,1,30339.600640,626.195624,hintandextended,nbiot,60 +on5,0,0,24,1,0,83,1443.000320,165,0,5882.000320,603.200544,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,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,1,0,1417,1457.000000,165,0,85828.000000,608.800000,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1477.600640,165,0,-1.000000,695.041504,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,166,0,36347.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,1,0,702,1462.000320,166,0,40284.000320,634.850128,hintandextended,nbiot,60 +on10,0,0,25,1,0,354,1500.000000,166,1,21095.000320,663.700416,hintandextended,nbiot,60 +on11,0,0,25,1,0,1023,1500.000000,166,1,63551.600960,654.600416,hintandextended,nbiot,60 +on5,0,0,24,1,0,209,1449.000320,166,0,11209.000320,605.600336,hintandextended,nbiot,60 +on12,0,0,24,1,0,791,1440.000000,166,0,49350.000320,602.000416,hintandextended,nbiot,60 +on3,0,0,25,1,0,231,1500.000000,166,1,16250.000320,676.310000,hintandextended,nbiot,60 +on1,0,0,24,1,0,960,1440.000000,166,0,61128.000320,602.000208,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1491.202240,166,0,-1.000000,882.484432,hintandextended,nbiot,60 +on9,0,0,25,1,0,1034,1500.000000,166,1,63510.000320,667.859792,hintandextended,nbiot,60 +on7,0,0,25,1,0,188,1500.000000,166,1,11249.600960,632.565000,hintandextended,nbiot,60 +on8,0,0,24,1,0,23,1443.000320,166,0,283.000320,603.200336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1270,1440.000000,167,0,76585.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,1,0,87,1447.000320,167,0,6849.000320,604.800336,hintandextended,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,167,0,9610.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,952,1472.000320,167,0,56953.000320,614.800336,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1454.000320,167,0,-1.000000,737.601376,hintandextended,nbiot,60 +on1,0,0,24,1,0,607,1440.000000,167,0,39352.000320,602.000208,hintandextended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,167,0,70569.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1510.601280,168,0,-1.000000,760.243216,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,218,1500.000000,168,1,13075.000320,626.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,660,1440.000000,168,0,41238.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,25,1,0,1020,1500.000000,168,1,61486.600640,664.545832,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,169,1469.000320,168,0,8502.000320,613.600544,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,88,1448.000320,168,0,6452.000320,643.550544,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,60,1440.000000,168,0,6510.000320,631.510624,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,117,1477.000320,169,0,6802.000320,616.800336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1080,1440.000000,169,0,66061.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,284,1464.000320,169,0,17552.000320,611.600544,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1368,1468.000320,169,0,81678.000320,613.200336,hintandextended,nbiot,60 +on6,0,0,24,1,0,161,1461.000320,169,0,10224.000320,610.400336,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1450.000320,169,0,-1.000000,736.002000,hintandextended,nbiot,60 +on9,0,0,24,1,0,379,1440.000000,169,0,25173.000320,602.000624,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,1098,1560.000000,170,3,66633.000320,713.310000,hintandextended,nbiot,60 +on10,0,0,24,1,0,960,1440.000000,170,0,60471.000320,623.710208,hintandextended,nbiot,60 +on7,0,0,25,1,0,1156,1500.000000,170,1,71631.000320,643.810208,hintandextended,nbiot,60 +on8,0,0,25,1,0,1059,1500.000000,170,1,63350.000320,626.845208,hintandextended,nbiot,60 +on4,0,0,24,1,0,100,1460.000320,170,0,5221.000320,610.000544,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1474.600960,170,0,-1.000000,823.843088,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,1238,1500.000000,170,1,75306.000320,644.850208,hintandextended,nbiot,60 +on1,0,0,25,1,0,600,1500.000000,170,1,36767.600640,626.195624,hintandextended,nbiot,60 +on3,0,0,24,1,0,1307,1467.000320,170,0,76184.000320,612.800336,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,120,1440.000000,170,0,8552.000320,612.400208,hintandextended,nbiot,60 +on9,0,0,24,1,0,720,1440.000000,171,0,43962.000320,613.960000,hintandextended,nbiot,60 +on10,0,0,25,1,0,420,1500.000000,171,1,28353.600640,634.255624,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,763,1500.000000,171,1,47217.000320,626.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,1414,1454.000000,171,0,84722.000000,607.600000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1532.202240,171,0,-1.000000,846.883600,hintandextended,nbiot,60 +on6,0,0,24,1,0,643,1463.000320,171,0,38447.000320,611.200336,hintandextended,nbiot,60 +on2,0,0,25,1,0,190,1500.000000,171,1,11182.600960,626.195624,hintandextended,nbiot,60 +on7,0,0,24,1,0,210,1450.000320,171,0,11142.000320,620.950544,hintandextended,nbiot,60 +on4,0,0,24,1,0,1140,1440.000000,171,0,69795.000320,615.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,518,1500.000000,171,1,30477.000320,639.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,634,1454.000320,172,0,37764.000320,607.600336,hintandextended,nbiot,60 +on8,0,0,24,1,0,1005,1465.000320,172,0,58012.000320,612.000336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,1320,1500.000000,172,1,79591.600640,629.445416,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1451.600640,172,0,-1.000000,736.641712,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1140,1440.000000,172,0,69833.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,87,1447.000320,172,0,7051.000320,604.800336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,201,1441.000320,172,0,11404.000320,602.400336,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1482.601600,173,0,-1.000000,801.043344,hintandextended,nbiot,60 +on9,0,0,25,1,0,278,1500.000000,173,1,17071.000320,639.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,698,1500.000000,173,1,46080.000320,664.350208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,930,1450.000320,173,0,54118.000320,606.000544,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,480,1440.000000,173,0,29220.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,147,1447.000320,173,0,8239.000320,621.700544,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,220,1460.000320,173,0,13328.000320,641.460336,hintandextended,nbiot,60 +on4,0,0,25,1,0,189,1500.000000,173,1,13368.600960,626.195624,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,173,0,34229.000320,602.000416,hintandextended,nbiot,60 +on3,0,0,24,1,0,960,1440.000000,174,0,60991.000320,613.960000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,720,1440.000000,174,0,46563.000320,615.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,1002,1500.000000,174,1,63775.000320,626.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,240,1440.000000,174,0,14663.000320,602.000416,hintandextended,nbiot,60 +on7,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,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,327,1447.000320,174,0,18372.000320,604.800336,hintandextended,nbiot,60 +on1,0,0,25,1,0,1320,1500.000000,174,1,82732.600640,626.195416,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1487.000640,174,0,-1.000000,776.802336,hintandextended,nbiot,60 +on2,0,0,24,1,0,714,1474.000320,174,0,39919.000320,615.600544,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,175,0,3755.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,796,1500.000000,175,1,50144.000320,626.000208,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1476.000640,175,0,-1.000000,772.403376,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,0,1500.000000,175,1,2684.600640,635.296040,hintandextended,nbiot,60 +on9,0,0,25,1,0,660,1500.000000,175,1,42213.000320,645.760416,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,175,0,18823.000320,621.760624,hintandextended,nbiot,60 +on8,0,0,25,1,0,787,1500.000000,175,2,51624.000320,698.800000,hintandextended,nbiot,60 +on7,0,0,25,1,0,398,1500.000000,175,1,24589.000320,626.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,949,1469.000320,176,0,57470.000320,613.600336,hintandextended,nbiot,60 +on12,0,0,25,1,0,1320,1500.000000,176,1,82457.600640,626.195416,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1480.201280,176,0,-1.000000,748.083008,hintandextended,nbiot,60 +on4,0,0,24,1,0,468,1468.000320,176,0,25290.000320,613.200336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,660,1500.000000,176,1,39917.600640,626.195624,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,200,1500.000000,176,2,13938.000320,650.700000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,133,1440.000000,176,0,7633.000320,602.000416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,685,1445.000320,177,0,41871.000320,604.000336,hintandextended,nbiot,60 +on2,0,0,24,1,0,191,1440.000000,177,0,12436.000320,613.960208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,278,1500.000000,177,1,16798.000320,626.000208,hintandextended,nbiot,60 +on3,0,0,25,1,0,264,1500.000000,177,2,18698.000320,649.400000,hintandextended,nbiot,60 +on10,0,0,24,1,0,830,1470.000320,177,0,49576.000320,614.000336,hintandextended,nbiot,60 +on6,0,0,24,1,0,401,1461.000320,177,0,21712.000320,610.400336,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,177,0,-1.000000,732.001456,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1473.000960,178,0,-1.000000,797.202672,hintandextended,nbiot,60 +on6,0,0,25,1,0,458,1500.000000,178,1,28361.000320,629.250208,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,720,1440.000000,178,0,44613.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,192,1500.000000,178,2,14307.000320,642.900000,hintandextended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,178,0,38673.000320,615.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,367,1500.000000,178,2,23542.000320,675.660208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,319,1500.000000,178,1,20845.000320,626.000208,hintandextended,nbiot,60 +on3,0,0,24,1,0,124,1440.000000,178,0,9836.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,240,1440.000000,178,0,16192.000320,613.960000,hintandextended,nbiot,60 +on8,0,0,24,1,0,28,1448.000320,179,0,458.000320,605.200544,hintandextended,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,179,0,35382.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,179,0,9110.000320,602.000416,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1502.600960,179,0,-1.000000,757.042464,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,883,1463.000320,179,0,52885.000320,611.200336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1245,1465.000320,179,0,72235.000320,612.000336,hintandextended,nbiot,60 +on9,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 +on6,0,0,25,1,0,240,1500.000000,179,1,17755.600640,626.195624,hintandextended,nbiot,60 +on5,0,0,24,1,0,102,1462.000320,180,0,4265.000320,660.460960,hintandextended,nbiot,60 +on10,0,0,25,1,0,0,1500.000000,180,1,3159.600640,670.006040,hintandextended,nbiot,60 +on4,0,0,25,1,0,360,1500.000000,180,2,24965.600640,676.505208,hintandextended,nbiot,60 +on7,0,0,25,1,0,278,1500.000000,180,1,17841.000320,674.100000,hintandextended,nbiot,60 +on12,0,0,25,1,0,1312,1500.000000,180,1,79103.000320,626.000208,hintandextended,nbiot,60 +on6,0,0,25,1,0,300,1500.000000,180,1,20118.600640,676.115624,hintandextended,nbiot,60 +on2,0,0,26,1,0,566,1581.600960,180,2,31872.600960,716.490800,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,475,1500.000000,180,1,28459.000320,639.000208,hintandextended,nbiot,60 +on1,0,0,25,1,0,1140,1500.000000,180,2,68613.600640,676.115208,hintandextended,nbiot,60 +on11,0,0,24,1,0,931,1451.000320,180,0,54691.000320,606.400336,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1539.003520,180,0,-1.000000,901.607440,hintandextended,nbiot,60 +on8,0,0,25,1,0,518,1500.000000,180,1,31831.000320,679.169792,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1477.600960,181,0,-1.000000,851.043920,hintandextended,nbiot,60 +on2,0,0,25,1,0,0,1500.000000,181,1,691.600640,646.345416,hintandextended,nbiot,60 +on1,0,0,25,1,0,77,1508.600960,181,2,5280.600960,629.636008,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,597,1477.000320,181,0,32811.000320,616.800544,hintandextended,nbiot,60 +on5,0,0,24,1,0,676,1440.000000,181,0,43012.000320,602.000416,hintandextended,nbiot,60 +on3,0,0,24,1,0,641,1461.000320,181,0,37982.000320,610.400336,hintandextended,nbiot,60 +on6,0,0,25,1,0,1358,1500.000000,181,1,82296.000320,626.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,391,1451.000320,181,0,22553.000320,644.750544,hintandextended,nbiot,60 +on4,0,0,24,1,0,519,1459.000320,181,0,31152.000320,609.600336,hintandextended,nbiot,60 +on7,0,0,24,1,0,60,1440.000000,181,0,5240.000320,615.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1264,1440.000000,181,0,75839.000320,623.710208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1020,1440.000000,182,0,63206.000320,602.000208,hintandextended,nbiot,60 +on10,0,0,24,1,0,360,1440.000000,182,0,23295.000320,644.250208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1528.601600,182,0,-1.000000,845.443760,hintandextended,nbiot,60 +on6,0,0,25,1,0,411,1500.000000,182,1,26284.000320,626.000416,hintandextended,nbiot,60 +on4,0,0,25,1,0,180,1500.000000,182,1,12059.600640,630.355624,hintandextended,nbiot,60 +on3,0,0,24,1,0,540,1440.000000,182,0,34542.000320,615.000208,hintandextended,nbiot,60 +on12,0,0,26,1,0,483,1560.000000,182,3,29205.000320,663.845000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1145,1440.000000,182,0,68835.000320,640.350208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,879,1459.000320,182,0,51381.000320,646.000336,hintandextended,nbiot,60 +on9,0,0,24,1,0,309,1440.000000,182,1,19511.400320,602.000208,hintandextended,nbiot,60 +on4,0,0,25,1,0,590,1500.000000,183,1,35378.000320,626.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1489.000640,183,0,-1.000000,725.601920,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1140,1440.000000,183,0,71352.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,24,1,0,186,1440.000000,183,0,13776.000320,602.000208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,420,1500.000000,183,1,26080.600640,663.505832,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,600,1440.000000,183,0,39103.000320,615.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,888,1528.600960,184,1,53980.600960,682.096008,hintandextended,nbiot,60 +on2,0,0,25,1,0,954,1500.000000,184,1,55292.000320,639.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,768,1468.000320,184,0,45323.000320,638.810336,hintandextended,nbiot,60 +on12,0,0,24,1,0,221,1461.000320,184,0,12086.000320,610.400336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,704,1464.000320,184,0,43034.000320,611.600544,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,819,1500.000000,184,1,48968.000320,629.250208,hintandextended,nbiot,60 +on1,0,0,24,1,0,873,1453.000320,184,0,53940.000320,607.200336,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.600960,184,0,-1.000000,766.242672,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,185,0,11659.000320,602.000416,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,261,1441.000320,185,0,17620.000320,602.400336,hintandextended,nbiot,60 +on10,0,0,24,1,0,60,1440.000000,185,0,6992.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,825,1465.000320,185,0,47164.000320,612.000336,hintandextended,nbiot,60 +on12,0,0,24,1,0,1382,1440.000000,185,0,85320.000000,602.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1477.000640,185,0,-1.000000,772.801712,hintandextended,nbiot,60 +on1,0,0,24,1,0,569,1449.000320,185,0,33858.000320,632.250336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,185,0,29007.000320,615.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,60,1440.000000,186,0,5332.000320,602.000416,hintandextended,nbiot,60 +on0,1,12,24,0,0,0,1514.602240,186,0,-1.000000,917.844848,hintandextended,nbiot,60 +on4,0,0,24,1,0,854,1440.000000,186,0,53831.000320,612.010208,hintandextended,nbiot,60 +on6,0,0,25,1,0,938,1500.000000,186,1,57129.000320,639.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,186,0,46636.000320,640.350208,hintandextended,nbiot,60 +on9,0,0,24,1,0,360,1440.000000,186,0,24090.000320,640.350208,hintandextended,nbiot,60 +on11,0,0,24,1,0,330,1450.000320,186,0,20427.000320,606.000544,hintandextended,nbiot,60 +on2,0,0,24,1,0,519,1459.000320,186,0,29487.000320,647.950336,hintandextended,nbiot,60 +on5,0,0,26,1,0,446,1560.000000,186,2,24036.000320,663.000000,hintandextended,nbiot,60 +on7,0,0,26,1,0,322,1580.000960,186,3,20467.000960,694.400800,hintandextended,nbiot,60 +on3,0,0,24,1,0,243,1440.000000,186,0,16294.000320,639.310208,hintandextended,nbiot,60 +on1,0,0,24,1,0,20,1440.000320,186,0,1098.000320,602.000336,hintandextended,nbiot,60 +on10,0,0,25,1,0,120,1500.000000,186,1,8157.600640,626.195624,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,13,1440.000000,187,0,1180.000320,602.000208,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,187,0,-1.000000,784.002496,hintandextended,nbiot,60 +on11,0,0,24,1,0,782,1440.000000,187,0,49269.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,1,0,885,1465.000320,187,0,53113.000320,612.000336,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1322,1440.000000,187,0,80853.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,24,1,0,951,1471.000320,187,0,56291.000320,652.750336,hintandextended,nbiot,60 +on7,0,0,24,1,0,575,1455.000320,187,0,34850.000320,608.000544,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,1299,1500.000000,187,1,77833.000320,626.000208,hintandextended,nbiot,60 +on8,0,0,24,1,0,259,1440.000000,187,0,17699.000320,617.860832,hintandextended,nbiot,60 +on7,0,0,24,1,0,1260,1440.000000,188,0,78180.000320,615.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,256,1500.000000,188,1,16535.000320,639.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,138,1560.000000,188,3,8248.000320,685.100208,hintandextended,nbiot,60 +on12,0,0,25,1,0,143,1500.000000,188,2,11835.000320,679.560208,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1467.000640,188,0,-1.000000,872.804000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1380,1440.000000,188,0,84087.000000,602.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,188,0,25412.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1048,1448.000320,188,0,61731.000320,605.200336,hintandextended,nbiot,60 +on5,0,0,24,1,0,1080,1440.000000,188,0,67057.000320,615.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,73,1500.000000,188,1,6428.000320,651.870208,hintandextended,nbiot,60 +on8,0,0,24,1,0,21,1441.000320,188,0,1358.000320,638.670960,hintandextended,nbiot,60 +on10,0,0,25,1,0,478,1500.000000,188,2,30181.000320,664.999792,hintandextended,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,189,0,31778.000320,602.000208,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1489.201600,189,0,-1.000000,751.683136,hintandextended,nbiot,60 +on7,0,0,24,1,0,748,1448.000320,189,0,45869.000320,605.200336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,271,1451.000320,189,0,15276.000320,606.400544,hintandextended,nbiot,60 +on3,0,0,25,1,0,720,1500.000000,189,1,45917.600640,626.195832,hintandextended,nbiot,60 +on11,0,0,25,1,0,264,1504.600960,189,1,15316.600960,628.036008,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,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 +on10,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1147,1440.000000,189,0,69365.000320,632.550208,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1488.000640,190,0,-1.000000,725.201920,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,660,1440.000000,190,0,42400.000320,602.000416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,398,1481.000000,190,1,27923.000320,618.400208,hintandextended,nbiot,60 +on7,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 +on9,0,0,24,1,0,240,1440.000000,190,0,16189.000320,602.000208,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,300,1500.000000,190,1,18693.600640,634.255624,hintandextended,nbiot,60 +on2,0,0,24,1,0,220,1460.000320,190,0,11641.000320,610.000336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1487.000640,191,0,-1.000000,724.801920,hintandextended,nbiot,60 +on3,0,0,24,1,0,364,1440.000000,191,0,23625.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1260,1440.000000,191,0,76726.000320,602.000208,hintandextended,nbiot,60 +on6,0,0,25,1,0,180,1500.000000,191,1,11700.600640,626.195624,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,191,0,29850.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,780,1440.000000,191,0,47564.000320,602.000416,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,73,1440.000000,192,0,3773.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,1,0,840,1478.000000,192,1,52516.600640,617.395624,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,3,24,0,0,0,1464.600640,192,0,-1.000000,663.841296,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,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,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,316,1440.000000,192,0,19066.000320,602.000208,hintandextended,nbiot,60 +on1,0,0,25,1,0,403,1500.000000,193,2,28070.000320,661.750000,hintandextended,nbiot,60 +on2,0,0,25,1,0,180,1500.000000,193,1,13046.600640,626.195624,hintandextended,nbiot,60 +on8,0,0,25,1,0,916,1500.000000,193,1,55817.000320,626.000208,hintandextended,nbiot,60 +on7,0,0,25,1,0,398,1500.000000,193,1,22622.000320,629.250208,hintandextended,nbiot,60 +on3,0,0,24,1,0,17,1440.000000,193,0,1851.000320,602.000208,hintandextended,nbiot,60 +on11,0,0,25,1,0,720,1500.000000,193,1,46270.600640,671.695624,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,601,1440.000000,193,0,37186.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,780,1500.000000,193,1,48563.000320,670.070416,hintandextended,nbiot,60 +on10,0,0,24,1,0,309,1440.000000,193,0,19216.000320,608.110208,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1464.000320,193,0,-1.000000,819.603248,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,532,1500.000000,194,1,31811.000320,626.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,474,1474.000320,194,0,27259.000320,652.910336,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1492.000640,194,0,-1.000000,726.801920,hintandextended,nbiot,60 +on8,0,0,24,1,0,27,1447.000320,194,0,740.000320,604.800544,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,194,0,31853.000320,602.000624,hintandextended,nbiot,60 +on11,0,0,24,1,0,60,1440.000000,194,0,6339.000320,615.000000,hintandextended,nbiot,60 +on8,0,0,26,1,0,416,1560.000000,195,3,27616.000320,663.000208,hintandextended,nbiot,60 +on1,0,0,25,1,0,481,1500.000000,195,1,29763.600960,626.195624,hintandextended,nbiot,60 +on11,0,0,25,1,0,337,1500.000000,195,1,22153.000320,640.560208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,536,1476.000320,195,0,29723.000320,616.400336,hintandextended,nbiot,60 +on5,0,0,24,1,0,49,1469.000320,195,0,1669.000320,645.450752,hintandextended,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,195,0,20092.000320,612.920000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1528.202560,195,0,-1.000000,819.284768,hintandextended,nbiot,60 +on3,0,0,24,1,0,420,1440.000000,195,0,27670.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,15,1500.000000,195,1,1709.600960,626.195832,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,398,1500.000000,196,1,27457.000320,641.210000,hintandextended,nbiot,60 +on4,0,0,24,1,0,660,1440.000000,196,0,43119.000320,630.600208,hintandextended,nbiot,60 +on3,0,0,26,1,0,438,1582.000320,196,3,23474.000320,673.099920,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1549.602560,196,0,-1.000000,905.844352,hintandextended,nbiot,60 +on12,0,0,24,1,0,1140,1440.000000,196,0,71131.000320,602.000208,hintandextended,nbiot,60 +on8,0,0,24,1,0,191,1440.000000,196,0,12481.000320,602.000208,hintandextended,nbiot,60 +on9,0,0,24,1,0,1227,1447.000320,196,0,73067.000320,604.800336,hintandextended,nbiot,60 +on2,0,0,25,1,0,403,1500.000000,196,1,23432.000320,675.855208,hintandextended,nbiot,60 +on7,0,0,26,1,0,502,1581.600960,196,2,27498.600960,658.640800,hintandextended,nbiot,60 +on10,0,0,24,1,0,269,1449.000320,196,0,14756.000320,605.600336,hintandextended,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,196,0,19184.000320,639.700208,hintandextended,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,196,0,2126.000320,602.000416,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1490.202240,197,0,-1.000000,778.083600,hintandextended,nbiot,60 +on6,0,0,24,1,0,449,1449.000320,197,0,26522.000320,605.600336,hintandextended,nbiot,60 +on9,0,0,24,1,0,1082,1440.000000,197,0,68005.000320,613.700000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,259,1500.000000,197,1,17730.600960,626.195832,hintandextended,nbiot,60 +on1,0,0,26,1,0,1234,1580.600960,197,2,70754.600960,658.436008,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,298,1478.000320,197,0,17690.000320,617.200336,hintandextended,nbiot,60 +on2,0,0,24,1,0,660,1440.000000,197,0,41947.000320,649.710416,hintandextended,nbiot,60 +on7,0,0,24,1,0,1183,1463.000320,197,0,70714.000320,611.200336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,477,1477.000320,198,0,28608.000320,616.800544,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,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,300,1440.000000,198,0,19251.000320,602.000208,hintandextended,nbiot,60 +on12,0,0,25,1,0,1118,1500.000000,198,1,70587.000320,665.259584,hintandextended,nbiot,60 +on11,0,0,24,1,0,1424,1464.000000,198,0,85550.000000,611.600000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1098,1440.000000,198,0,68096.000320,602.259792,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1491.202240,198,0,-1.000000,804.483184,hintandextended,nbiot,60 +on4,0,0,24,1,0,1071,1471.000320,198,0,63240.000320,651.710336,hintandextended,nbiot,60 +on5,0,0,26,1,0,1219,1581.600960,198,2,70628.600960,658.640800,hintandextended,nbiot,60 +on7,0,0,26,1,0,1167,1581.600960,198,2,68137.600960,675.800384,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1478.601280,199,0,-1.000000,799.444880,hintandextended,nbiot,60 +on9,0,0,25,1,0,960,1500.000000,199,1,59944.600640,644.395624,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,99,1519.600960,199,1,3865.600960,634.036424,hintandextended,nbiot,60 +on5,0,0,24,1,0,114,1474.000320,199,0,3825.000320,615.600544,hintandextended,nbiot,60 +on8,0,0,25,1,0,360,1500.000000,199,1,19494.000320,626.000208,hintandextended,nbiot,60 +on3,0,0,24,1,0,509,1449.000320,199,0,31529.000320,605.600752,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,240,1440.000000,199,0,15636.000320,602.000624,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,634,1454.000320,199,0,37628.000320,637.760336,hintandextended,nbiot,60 +on4,0,0,24,1,0,123,1440.000000,199,0,10304.000320,613.050000,hintandextended,nbiot,60 +on2,0,0,25,1,0,701,1500.000000,200,1,41394.000320,663.310208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,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,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1456.000320,200,0,-1.000000,712.401792,hintandextended,nbiot,60 +on7,0,0,24,1,0,1260,1440.000000,200,0,76466.000320,602.000208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,772,1500.000000,200,1,46033.000320,626.000416,hintandextended,nbiot,60 +on5,0,0,24,1,0,300,1440.000000,200,0,18280.000320,602.000416,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,220,1460.000320,200,0,13879.000320,647.310544,hintandextended,nbiot,60 +on6,0,0,24,0,0,4210,4320.000000,1,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,1,0,1403,4320.000000,1,0,36663.000000,1852.320000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4136,4320.000000,1,0,-1.000000,1785.600000,baseline,lora,180 +on11,0,0,24,0,0,4116,4320.000000,1,0,-1.000000,1783.360000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,1,0,-1.000000,2050.560000,baseline,lora,180 +on7,0,0,24,1,0,1262,4320.000000,1,0,25707.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4296,4320.000000,1,0,-1.000000,1732.000000,baseline,lora,180 +on1,0,0,24,0,0,4068,4320.000000,1,0,-1.000000,1768.640000,baseline,lora,180 +on10,0,0,24,1,0,367,4320.000000,1,0,8378.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4047,4320.000000,1,0,-1.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4262,4320.000000,1,0,-1.000000,1764.960000,baseline,lora,180 +on6,0,0,24,0,0,4245,4320.000000,2,0,-1.000000,1754.400000,baseline,lora,180 +on7,0,0,24,1,0,313,4320.000000,2,0,7608.000000,1763.680000,baseline,lora,180 +on2,0,0,24,0,0,4231,4320.000000,2,0,-1.000000,1761.760000,baseline,lora,180 +on12,0,0,24,0,0,3833,4320.000000,2,0,-1.000000,1810.720000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4302,4320.000000,2,0,-1.000000,1731.040000,baseline,lora,180 +on1,0,0,24,0,0,4278,4320.000000,2,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4164,4320.000000,2,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4135,4320.000000,2,0,-1.000000,1766.720000,baseline,lora,180 +on4,0,0,24,0,0,4059,4320.000000,2,0,-1.000000,1781.440000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,2,0,-1.000000,2004.640000,baseline,lora,180 +on10,0,0,24,1,0,3060,4320.000000,2,0,62275.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4305,4320.000000,2,0,-1.000000,1742.240000,baseline,lora,180 +on3,0,0,24,0,0,3965,4320.000000,3,0,-1.000000,1809.120000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,3,0,-1.000000,2042.720000,baseline,lora,180 +on4,0,0,24,0,0,4066,4320.000000,3,0,-1.000000,1769.280000,baseline,lora,180 +on6,0,0,24,0,0,4218,4320.000000,3,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4204,4320.000000,3,0,-1.000000,1746.720000,baseline,lora,180 +on7,0,0,24,0,0,4200,4320.000000,3,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4244,4320.000000,3,0,-1.000000,1740.480000,baseline,lora,180 +on10,0,0,24,0,0,4093,4320.000000,3,0,-1.000000,1765.280000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4038,4320.000000,3,0,-1.000000,1780.160000,baseline,lora,180 +on8,0,0,24,0,0,4080,4320.000000,3,0,-1.000000,1808.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4149,4320.000000,3,0,-1.000000,1761.920000,baseline,lora,180 +on12,0,0,24,0,0,3883,4320.000000,4,0,-1.000000,1798.560000,baseline,lora,180 +on10,0,0,24,0,0,4191,4320.000000,4,0,-1.000000,1775.360000,baseline,lora,180 +on9,0,0,24,0,0,4192,4320.000000,4,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4199,4320.000000,4,0,-1.000000,1755.040000,baseline,lora,180 +on7,0,0,24,0,0,4162,4320.000000,4,0,-1.000000,1753.440000,baseline,lora,180 +on1,0,0,24,0,0,4164,4320.000000,4,0,-1.000000,1770.880000,baseline,lora,180 +on5,0,0,24,0,0,4211,4320.000000,4,0,-1.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4166,4320.000000,4,0,-1.000000,1795.520000,baseline,lora,180 +on6,0,0,24,0,0,3970,4320.000000,4,0,-1.000000,1789.600000,baseline,lora,180 +on4,0,0,24,0,0,4056,4320.000000,4,0,-1.000000,1788.480000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,4,0,-1.000000,2088.800000,baseline,lora,180 +on8,0,0,24,1,0,12,4320.000000,4,0,1108.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4257,4320.000000,4,0,-1.000000,1738.880000,baseline,lora,180 +on8,0,0,24,0,0,3982,4320.000000,5,0,-1.000000,1782.560000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,5,0,-1.000000,2009.440000,baseline,lora,180 +on5,0,0,24,0,0,3933,4320.000000,5,0,-1.000000,1837.760000,baseline,lora,180 +on2,0,0,24,0,0,4042,4320.000000,5,0,-1.000000,1776.640000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,5,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4246,4320.000000,5,0,-1.000000,1740.000000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,5,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,1,0,199,4320.000000,5,0,5376.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4189,4320.000000,5,0,-1.000000,1749.120000,baseline,lora,180 +on6,0,0,24,0,0,4273,4320.000000,5,0,-1.000000,1750.560000,baseline,lora,180 +on12,0,0,24,0,0,4250,4320.000000,5,0,-1.000000,1751.040000,baseline,lora,180 +on10,0,0,24,0,0,4315,4320.000000,5,0,-1.000000,1728.960000,baseline,lora,180 +on4,0,0,24,0,0,4070,4320.000000,5,0,-1.000000,1778.720000,baseline,lora,180 +on8,0,0,24,0,0,4249,4320.000000,6,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4238,4320.000000,6,0,-1.000000,1741.280000,baseline,lora,180 +on5,0,0,24,0,0,4252,4320.000000,6,0,-1.000000,1739.040000,baseline,lora,180 +on6,0,0,24,1,0,1620,4320.000000,6,0,33243.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4255,4320.000000,6,0,-1.000000,1759.840000,baseline,lora,180 +on3,0,0,24,0,0,3708,4320.000000,6,0,-1.000000,1826.720000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,6,0,-1.000000,2074.880000,baseline,lora,180 +on2,0,0,24,1,0,3407,4320.000000,6,0,69237.000000,1782.400000,baseline,lora,180 +on11,0,0,24,0,0,4130,4320.000000,6,0,-1.000000,1763.200000,baseline,lora,180 +on4,0,0,24,0,0,4113,4320.000000,6,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,3963,4320.000000,6,0,-1.000000,1804.320000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,1,0,193,4320.000000,6,0,4019.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4230,4320.000000,7,0,-1.000000,1761.920000,baseline,lora,180 +on10,0,0,24,0,0,4049,4320.000000,7,0,-1.000000,1788.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4162,4320.000000,7,0,-1.000000,1753.440000,baseline,lora,180 +on4,0,0,24,1,0,1560,4320.000000,7,0,35761.000000,1763.360000,baseline,lora,180 +on12,0,0,24,1,0,16,4320.000000,7,0,450.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,3959,4320.000000,7,0,-1.000000,1791.200000,baseline,lora,180 +on8,0,0,24,0,0,3971,4320.000000,7,0,-1.000000,1816.480000,baseline,lora,180 +on7,0,0,24,0,0,3961,4320.000000,7,0,-1.000000,1811.040000,baseline,lora,180 +on11,0,0,24,0,0,4246,4320.000000,7,0,-1.000000,1762.080000,baseline,lora,180 +on1,0,0,24,0,0,4148,4320.000000,7,0,-1.000000,1788.160000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,7,0,-1.000000,2086.080000,baseline,lora,180 +on7,0,0,24,1,0,1829,4320.000000,8,0,42738.000000,1811.200000,baseline,lora,180 +on2,0,0,24,1,0,547,4320.000000,8,0,13380.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4229,4320.000000,8,0,-1.000000,1742.880000,baseline,lora,180 +on12,0,0,24,0,0,4211,4320.000000,8,0,-1.000000,1787.520000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,8,0,-1.000000,2009.600000,baseline,lora,180 +on6,0,0,24,0,0,4267,4320.000000,8,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4019,4320.000000,8,0,-1.000000,1779.680000,baseline,lora,180 +on5,0,0,24,0,0,4208,4320.000000,8,0,-1.000000,1746.080000,baseline,lora,180 +on4,0,0,24,1,0,3270,4320.000000,8,0,71837.000000,1777.760000,baseline,lora,180 +on1,0,0,24,0,0,4293,4320.000000,8,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4271,4320.000000,8,0,-1.000000,1764.800000,baseline,lora,180 +on9,0,0,24,1,0,3,4320.000000,8,0,1816.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4271,4320.000000,8,0,-1.000000,1736.000000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4149,4320.000000,9,0,-1.000000,1804.800000,baseline,lora,180 +on1,0,0,24,0,0,4152,4320.000000,9,0,-1.000000,1755.520000,baseline,lora,180 +on5,0,0,24,0,0,3935,4320.000000,9,0,-1.000000,1801.760000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4202,4320.000000,9,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4298,4320.000000,9,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4032,4320.000000,9,0,-1.000000,1821.920000,baseline,lora,180 +on11,0,0,24,0,0,4130,4320.000000,9,0,-1.000000,1786.720000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,9,0,-1.000000,1980.160000,baseline,lora,180 +on9,0,0,24,1,0,4086,4320.000000,9,0,85655.000000,1782.400000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,3987,4320.000000,10,0,-1.000000,1818.240000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4141,4320.000000,10,0,-1.000000,1763.360000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4199,4320.000000,10,0,-1.000000,1747.680000,baseline,lora,180 +on1,0,0,24,0,0,4104,4320.000000,10,0,-1.000000,1782.720000,baseline,lora,180 +on11,0,0,24,0,0,4279,4320.000000,10,0,-1.000000,1734.720000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,1,0,180,4320.000000,10,0,5433.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4142,4320.000000,10,0,-1.000000,1795.520000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,10,0,-1.000000,1982.240000,baseline,lora,180 +on6,0,0,24,1,0,729,4320.000000,10,0,14855.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4139,4320.000000,10,0,-1.000000,1808.480000,baseline,lora,180 +on9,0,0,24,0,0,3920,4320.000000,11,0,-1.000000,1828.640000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4232,4320.000000,11,0,-1.000000,1742.400000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,11,0,-1.000000,1997.280000,baseline,lora,180 +on1,0,0,24,0,0,4200,4320.000000,11,0,-1.000000,1790.880000,baseline,lora,180 +on6,0,0,24,0,0,4051,4320.000000,11,0,-1.000000,1788.320000,baseline,lora,180 +on2,0,0,24,0,0,4035,4320.000000,11,0,-1.000000,1777.600000,baseline,lora,180 +on7,0,0,24,0,0,4208,4320.000000,11,0,-1.000000,1746.080000,baseline,lora,180 +on10,0,0,24,0,0,4155,4320.000000,11,0,-1.000000,1773.280000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4097,4320.000000,11,0,-1.000000,1785.600000,baseline,lora,180 +on11,0,0,24,0,0,4175,4320.000000,12,0,-1.000000,1763.680000,baseline,lora,180 +on6,0,0,24,0,0,4261,4320.000000,12,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4224,4320.000000,12,0,-1.000000,1753.120000,baseline,lora,180 +on1,0,0,24,0,0,4286,4320.000000,12,0,-1.000000,1753.120000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,12,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4174,4320.000000,12,0,-1.000000,1751.520000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,12,0,-1.000000,2043.360000,baseline,lora,180 +on7,0,0,24,0,0,4012,4320.000000,12,0,-1.000000,1789.120000,baseline,lora,180 +on2,0,0,24,0,0,4242,4320.000000,12,0,-1.000000,1740.640000,baseline,lora,180 +on10,0,0,24,1,0,3544,4320.000000,12,0,72237.000000,1762.720000,baseline,lora,180 +on8,0,0,24,1,0,3168,4320.000000,12,0,70020.000000,1836.960000,baseline,lora,180 +on12,0,0,24,0,0,4058,4320.000000,12,0,-1.000000,1770.240000,baseline,lora,180 +on3,0,0,24,0,0,4128,4320.000000,12,0,-1.000000,1779.840000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,13,0,-1.000000,1970.240000,baseline,lora,180 +on2,0,0,24,0,0,4166,4320.000000,13,0,-1.000000,1756.480000,baseline,lora,180 +on1,0,0,24,0,0,4059,4320.000000,13,0,-1.000000,1771.840000,baseline,lora,180 +on8,0,0,24,1,0,1700,4320.000000,13,0,39287.000000,1797.760000,baseline,lora,180 +on5,0,0,24,0,0,4216,4320.000000,13,0,-1.000000,1744.800000,baseline,lora,180 +on9,0,0,24,0,0,4119,4320.000000,13,0,-1.000000,1765.280000,baseline,lora,180 +on3,0,0,24,0,0,4167,4320.000000,13,0,-1.000000,1752.800000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,1,0,3211,4320.000000,13,0,65400.000000,1782.400000,baseline,lora,180 +on7,0,0,24,0,0,4290,4320.000000,13,0,-1.000000,1732.960000,baseline,lora,180 +on11,0,0,24,0,0,4177,4320.000000,13,0,-1.000000,1772.640000,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,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4114,4320.000000,14,0,-1.000000,1776.800000,baseline,lora,180 +on7,0,0,24,0,0,4143,4320.000000,14,0,-1.000000,1774.880000,baseline,lora,180 +on4,0,0,24,0,0,4088,4320.000000,14,0,-1.000000,1779.840000,baseline,lora,180 +on12,0,0,24,0,0,4212,4320.000000,14,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4189,4320.000000,14,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4078,4320.000000,14,0,-1.000000,1771.840000,baseline,lora,180 +on8,0,0,24,0,0,4173,4320.000000,14,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,1,0,2463,4320.000000,14,0,54545.000000,1811.200000,baseline,lora,180 +on10,0,0,24,1,0,76,4320.000000,14,0,4284.000000,1770.400000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,14,0,-1.000000,2058.240000,baseline,lora,180 +on9,0,0,24,0,0,4317,4320.000000,14,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4182,4320.000000,14,0,-1.000000,1796.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,15,0,-1.000000,2073.280000,baseline,lora,180 +on11,0,0,24,0,0,4102,4320.000000,15,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4278,4320.000000,15,0,-1.000000,1734.880000,baseline,lora,180 +on1,0,0,24,0,0,3970,4320.000000,15,0,-1.000000,1805.280000,baseline,lora,180 +on8,0,0,24,0,0,4252,4320.000000,15,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4169,4320.000000,15,0,-1.000000,1752.480000,baseline,lora,180 +on5,0,0,24,1,0,3438,4320.000000,15,0,73175.000000,1787.520000,baseline,lora,180 +on10,0,0,24,0,0,4283,4320.000000,15,0,-1.000000,1764.800000,baseline,lora,180 +on6,0,0,24,0,0,4071,4320.000000,15,0,-1.000000,1778.400000,baseline,lora,180 +on2,0,0,24,0,0,4041,4320.000000,15,0,-1.000000,1786.400000,baseline,lora,180 +on12,0,0,24,1,0,3431,4320.000000,15,0,69105.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4109,4320.000000,15,0,-1.000000,1783.200000,baseline,lora,180 +on7,0,0,24,0,0,4279,4320.000000,15,0,-1.000000,1742.080000,baseline,lora,180 +on11,0,0,24,0,0,4236,4320.000000,16,0,-1.000000,1792.640000,baseline,lora,180 +on5,0,0,24,1,0,1704,4320.000000,16,0,36271.000000,1782.400000,baseline,lora,180 +on7,0,0,24,1,0,2151,4320.000000,16,0,44208.000000,1785.120000,baseline,lora,180 +on1,0,0,24,0,0,4068,4320.000000,16,0,-1.000000,1779.040000,baseline,lora,180 +on2,0,0,24,0,0,4231,4320.000000,16,0,-1.000000,1742.560000,baseline,lora,180 +on4,0,0,24,0,0,4096,4320.000000,16,0,-1.000000,1781.440000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,16,0,-1.000000,2025.120000,baseline,lora,180 +on9,0,0,24,1,0,3254,4320.000000,16,0,66410.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4244,4320.000000,16,0,-1.000000,1740.320000,baseline,lora,180 +on12,0,0,24,1,0,1080,4320.000000,16,0,21849.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4166,4320.000000,16,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4143,4320.000000,16,0,-1.000000,1756.640000,baseline,lora,180 +on3,0,0,24,0,0,4301,4320.000000,16,0,-1.000000,1752.480000,baseline,lora,180 +on2,0,0,24,0,0,4158,4320.000000,17,0,-1.000000,1754.240000,baseline,lora,180 +on8,0,0,24,0,0,4002,4320.000000,17,0,-1.000000,1779.360000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,17,0,-1.000000,2088.480000,baseline,lora,180 +on5,0,0,24,0,0,4020,4320.000000,17,0,-1.000000,1783.200000,baseline,lora,180 +on4,0,0,24,0,0,3948,4320.000000,17,0,-1.000000,1818.240000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4196,4320.000000,17,0,-1.000000,1748.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4200,4320.000000,17,0,-1.000000,1747.520000,baseline,lora,180 +on10,0,0,24,0,0,4179,4320.000000,17,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,1,0,903,4320.000000,17,0,21479.000000,1753.600000,baseline,lora,180 +on9,0,0,24,1,0,2477,4320.000000,17,0,55228.000000,1803.200000,baseline,lora,180 +on1,0,0,24,0,0,4168,4320.000000,17,0,-1.000000,1766.080000,baseline,lora,180 +on5,0,0,24,0,0,4108,4320.000000,18,0,-1.000000,1776.960000,baseline,lora,180 +on12,0,0,24,0,0,4155,4320.000000,18,0,-1.000000,1763.040000,baseline,lora,180 +on7,0,0,24,0,0,4299,4320.000000,18,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,18,0,-1.000000,1989.920000,baseline,lora,180 +on1,0,0,24,1,0,4140,4320.000000,18,0,84346.000000,1753.600000,baseline,lora,180 +on11,0,0,24,1,0,3697,4320.000000,18,0,78533.000000,1782.400000,baseline,lora,180 +on4,0,0,24,1,0,2418,4320.000000,18,0,50649.000000,1770.240000,baseline,lora,180 +on8,0,0,24,0,0,4132,4320.000000,18,0,-1.000000,1758.400000,baseline,lora,180 +on2,0,0,24,0,0,4206,4320.000000,18,0,-1.000000,1746.400000,baseline,lora,180 +on6,0,0,24,0,0,4237,4320.000000,18,0,-1.000000,1741.600000,baseline,lora,180 +on3,0,0,24,0,0,4160,4320.000000,18,0,-1.000000,1761.440000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,18,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,18,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4249,4320.000000,19,0,-1.000000,1739.520000,baseline,lora,180 +on2,0,0,24,0,0,4026,4320.000000,19,0,-1.000000,1790.720000,baseline,lora,180 +on1,0,0,24,0,0,3983,4320.000000,19,0,-1.000000,1819.200000,baseline,lora,180 +on10,0,0,24,0,0,4158,4320.000000,19,0,-1.000000,1754.400000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,19,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4307,4320.000000,19,0,-1.000000,1730.240000,baseline,lora,180 +on9,0,0,24,0,0,4286,4320.000000,19,0,-1.000000,1733.600000,baseline,lora,180 +on3,0,0,24,0,0,4058,4320.000000,19,0,-1.000000,1809.440000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,19,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4256,4320.000000,19,0,-1.000000,1738.400000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,19,0,-1.000000,2018.720000,baseline,lora,180 +on4,0,0,24,0,0,3887,4320.000000,19,0,-1.000000,1832.320000,baseline,lora,180 +on8,0,0,24,0,0,4197,4320.000000,19,0,-1.000000,1747.840000,baseline,lora,180 +on1,0,0,24,0,0,4130,4320.000000,20,0,-1.000000,1777.440000,baseline,lora,180 +on8,0,0,24,0,0,4291,4320.000000,20,0,-1.000000,1751.200000,baseline,lora,180 +on11,0,0,24,1,0,541,4320.000000,20,0,12994.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4211,4320.000000,20,0,-1.000000,1772.800000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,3969,4320.000000,20,0,-1.000000,1812.480000,baseline,lora,180 +on9,0,0,24,0,0,3654,4320.000000,20,0,-1.000000,1856.480000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,20,0,-1.000000,2061.440000,baseline,lora,180 +on4,0,0,24,0,0,4202,4320.000000,20,0,-1.000000,1772.320000,baseline,lora,180 +on2,0,0,24,1,0,1260,4320.000000,20,0,26148.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4039,4320.000000,20,0,-1.000000,1794.720000,baseline,lora,180 +on12,0,0,24,0,0,4153,4320.000000,21,0,-1.000000,1755.040000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,21,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4176,4320.000000,21,0,-1.000000,1751.200000,baseline,lora,180 +on8,0,0,24,1,0,541,4320.000000,21,0,12321.000000,1753.600000,baseline,lora,180 +on7,0,0,24,1,0,360,4320.000000,21,0,8646.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4036,4320.000000,21,0,-1.000000,1796.800000,baseline,lora,180 +on10,0,0,24,0,0,4246,4320.000000,21,0,-1.000000,1763.520000,baseline,lora,180 +on1,0,0,24,0,0,4164,4320.000000,21,0,-1.000000,1764.160000,baseline,lora,180 +on11,0,0,24,0,0,4175,4320.000000,21,0,-1.000000,1769.440000,baseline,lora,180 +on2,0,0,24,1,0,900,4320.000000,21,0,21181.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4242,4320.000000,21,0,-1.000000,1741.760000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,21,0,-1.000000,2009.600000,baseline,lora,180 +on3,0,0,24,0,0,4105,4320.000000,21,0,-1.000000,1789.120000,baseline,lora,180 +on5,0,0,24,0,0,4071,4320.000000,22,0,-1.000000,1782.880000,baseline,lora,180 +on9,0,0,24,0,0,4215,4320.000000,22,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,22,0,-1.000000,1995.040000,baseline,lora,180 +on10,0,0,24,0,0,3989,4320.000000,22,0,-1.000000,1805.600000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,1440,4320.000000,22,0,31393.000000,1753.600000,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,1,0,1,4320.000000,22,0,962.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4166,4320.000000,22,0,-1.000000,1774.880000,baseline,lora,180 +on4,0,0,24,0,0,3973,4320.000000,22,0,-1.000000,1832.160000,baseline,lora,180 +on3,0,0,24,0,0,4172,4320.000000,22,0,-1.000000,1779.840000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,23,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4108,4320.000000,23,0,-1.000000,1779.360000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,23,0,-1.000000,1728.160000,baseline,lora,180 +on11,0,0,24,0,0,3904,4320.000000,23,0,-1.000000,1809.600000,baseline,lora,180 +on9,0,0,24,0,0,4193,4320.000000,23,0,-1.000000,1748.800000,baseline,lora,180 +on1,0,0,24,0,0,3870,4320.000000,23,0,-1.000000,1812.480000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,23,0,-1.000000,2056.480000,baseline,lora,180 +on8,0,0,24,0,0,4301,4320.000000,23,0,-1.000000,1736.160000,baseline,lora,180 +on10,0,0,24,0,0,4069,4320.000000,23,0,-1.000000,1786.240000,baseline,lora,180 +on12,0,0,24,0,0,4244,4320.000000,23,0,-1.000000,1740.320000,baseline,lora,180 +on4,0,0,24,0,0,4163,4320.000000,23,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4212,4320.000000,23,0,-1.000000,1745.440000,baseline,lora,180 +on5,0,0,24,0,0,4107,4320.000000,23,0,-1.000000,1804.000000,baseline,lora,180 +on5,0,0,24,0,0,4115,4320.000000,24,0,-1.000000,1761.280000,baseline,lora,180 +on2,0,0,24,0,0,4129,4320.000000,24,0,-1.000000,1793.280000,baseline,lora,180 +on8,0,0,24,1,0,545,4320.000000,24,0,11961.000000,1753.600000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,24,0,-1.000000,2108.160000,baseline,lora,180 +on7,0,0,24,1,0,180,4320.000000,24,0,5936.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4157,4320.000000,24,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4105,4320.000000,24,0,-1.000000,1762.720000,baseline,lora,180 +on3,0,0,24,1,0,900,4320.000000,24,0,23152.000000,1793.120000,baseline,lora,180 +on4,0,0,24,0,0,4194,4320.000000,24,0,-1.000000,1802.240000,baseline,lora,180 +on10,0,0,24,1,0,3437,4320.000000,24,0,70387.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4020,4320.000000,24,0,-1.000000,1787.200000,baseline,lora,180 +on1,0,0,24,0,0,4146,4320.000000,24,0,-1.000000,1801.760000,baseline,lora,180 +on12,0,0,24,1,0,3247,4320.000000,24,0,66757.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4067,4320.000000,25,0,-1.000000,1815.680000,baseline,lora,180 +on11,0,0,24,0,0,4291,4320.000000,25,0,-1.000000,1770.880000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,25,0,-1.000000,1958.400000,baseline,lora,180 +on2,0,0,24,0,0,4178,4320.000000,25,0,-1.000000,1762.400000,baseline,lora,180 +on3,0,0,24,0,0,4213,4320.000000,25,0,-1.000000,1785.600000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4157,4320.000000,25,0,-1.000000,1774.720000,baseline,lora,180 +on7,0,0,24,0,0,4161,4320.000000,25,0,-1.000000,1753.760000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,1,0,369,4320.000000,25,0,8787.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4070,4320.000000,25,0,-1.000000,1778.720000,baseline,lora,180 +on4,0,0,24,1,0,720,4320.000000,25,0,16910.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4043,4320.000000,26,0,-1.000000,1778.880000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,26,0,-1.000000,2058.560000,baseline,lora,180 +on8,0,0,24,0,0,3935,4320.000000,26,0,-1.000000,1806.560000,baseline,lora,180 +on3,0,0,24,0,0,4263,4320.000000,26,0,-1.000000,1746.560000,baseline,lora,180 +on2,0,0,24,0,0,4249,4320.000000,26,0,-1.000000,1739.680000,baseline,lora,180 +on12,0,0,24,0,0,4235,4320.000000,26,0,-1.000000,1741.760000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,1,0,1807,4320.000000,26,0,41771.000000,1788.000000,baseline,lora,180 +on6,0,0,24,0,0,4035,4320.000000,26,0,-1.000000,1774.400000,baseline,lora,180 +on5,0,0,24,0,0,4211,4320.000000,26,0,-1.000000,1745.600000,baseline,lora,180 +on11,0,0,24,0,0,4185,4320.000000,26,0,-1.000000,1772.160000,baseline,lora,180 +on7,0,0,24,0,0,4181,4320.000000,26,0,-1.000000,1783.840000,baseline,lora,180 +on10,0,0,24,0,0,4172,4320.000000,26,0,-1.000000,1800.640000,baseline,lora,180 +on8,0,0,24,1,0,2108,4320.000000,27,0,46344.000000,1782.400000,baseline,lora,180 +on1,0,0,24,0,0,3928,4320.000000,27,0,-1.000000,1800.800000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,27,0,-1.000000,2043.520000,baseline,lora,180 +on10,0,0,24,1,0,181,4320.000000,27,0,4077.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4261,4320.000000,27,0,-1.000000,1737.600000,baseline,lora,180 +on4,0,0,24,0,0,4186,4320.000000,27,0,-1.000000,1749.600000,baseline,lora,180 +on9,0,0,24,0,0,4219,4320.000000,27,0,-1.000000,1801.280000,baseline,lora,180 +on11,0,0,24,0,0,4118,4320.000000,27,0,-1.000000,1780.320000,baseline,lora,180 +on3,0,0,24,1,0,3008,4320.000000,27,0,63165.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4241,4320.000000,27,0,-1.000000,1758.560000,baseline,lora,180 +on7,0,0,24,0,0,4162,4320.000000,27,0,-1.000000,1753.440000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,27,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4082,4320.000000,27,0,-1.000000,1774.080000,baseline,lora,180 +on6,0,0,24,0,0,4002,4320.000000,28,0,-1.000000,1828.640000,baseline,lora,180 +on1,0,0,24,0,0,4304,4320.000000,28,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,1,0,3183,4320.000000,28,0,68217.000000,1777.120000,baseline,lora,180 +on7,0,0,24,0,0,4104,4320.000000,28,0,-1.000000,1766.400000,baseline,lora,180 +on10,0,0,24,0,0,4085,4320.000000,28,0,-1.000000,1776.480000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,28,0,-1.000000,2043.520000,baseline,lora,180 +on3,0,0,24,0,0,4120,4320.000000,28,0,-1.000000,1771.520000,baseline,lora,180 +on2,0,0,24,0,0,4140,4320.000000,28,0,-1.000000,1776.320000,baseline,lora,180 +on4,0,0,24,0,0,4165,4320.000000,28,0,-1.000000,1758.720000,baseline,lora,180 +on5,0,0,24,0,0,4222,4320.000000,28,0,-1.000000,1743.840000,baseline,lora,180 +on8,0,0,24,0,0,4313,4320.000000,28,0,-1.000000,1753.920000,baseline,lora,180 +on9,0,0,24,0,0,4171,4320.000000,28,0,-1.000000,1772.800000,baseline,lora,180 +on11,0,0,24,1,0,2891,4320.000000,28,0,60348.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4196,4320.000000,29,0,-1.000000,1752.320000,baseline,lora,180 +on12,0,0,24,0,0,4205,4320.000000,29,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4206,4320.000000,29,0,-1.000000,1746.400000,baseline,lora,180 +on3,0,0,24,0,0,4312,4320.000000,29,0,-1.000000,1754.720000,baseline,lora,180 +on9,0,0,24,0,0,4170,4320.000000,29,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4284,4320.000000,29,0,-1.000000,1733.920000,baseline,lora,180 +on7,0,0,24,0,0,4001,4320.000000,29,0,-1.000000,1820.960000,baseline,lora,180 +on2,0,0,24,0,0,4275,4320.000000,29,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,1,0,720,4320.000000,29,0,14671.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4063,4320.000000,29,0,-1.000000,1796.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,29,0,-1.000000,1989.760000,baseline,lora,180 +on6,0,0,24,1,0,4011,4320.000000,29,0,86131.000000,1782.400000,baseline,lora,180 +on6,0,0,24,1,0,1980,4320.000000,30,0,42699.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4087,4320.000000,30,0,-1.000000,1795.840000,baseline,lora,180 +on4,0,0,24,1,0,540,4320.000000,30,0,11150.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4103,4320.000000,30,0,-1.000000,1768.640000,baseline,lora,180 +on1,0,0,24,1,0,3003,4320.000000,30,0,61960.000000,1762.880000,baseline,lora,180 +on8,0,0,24,0,0,4141,4320.000000,30,0,-1.000000,1785.600000,baseline,lora,180 +on5,0,0,24,1,0,1178,4320.000000,30,0,26252.000000,1782.400000,baseline,lora,180 +on3,0,0,24,0,0,3850,4320.000000,30,0,-1.000000,1825.280000,baseline,lora,180 +on10,0,0,24,1,0,3421,4320.000000,30,0,69265.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4236,4320.000000,30,0,-1.000000,1741.600000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,30,0,-1.000000,2104.640000,baseline,lora,180 +on11,0,0,24,0,0,4171,4320.000000,30,0,-1.000000,1785.600000,baseline,lora,180 +on2,0,0,24,0,0,4259,4320.000000,30,0,-1.000000,1738.080000,baseline,lora,180 +on12,0,0,24,1,0,1980,4320.000000,31,0,39778.000000,1753.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,31,0,-1.000000,1989.760000,baseline,lora,180 +on6,0,0,24,0,0,4166,4320.000000,31,0,-1.000000,1785.600000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4165,4320.000000,31,0,-1.000000,1779.360000,baseline,lora,180 +on4,0,0,24,1,0,1086,4320.000000,31,0,24393.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4240,4320.000000,31,0,-1.000000,1749.280000,baseline,lora,180 +on7,0,0,24,0,0,3929,4320.000000,31,0,-1.000000,1791.200000,baseline,lora,180 +on8,0,0,24,0,0,4096,4320.000000,31,0,-1.000000,1805.760000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4222,4320.000000,31,0,-1.000000,1743.840000,baseline,lora,180 +on2,0,0,24,0,0,4269,4320.000000,31,0,-1.000000,1736.320000,baseline,lora,180 +on9,0,0,24,0,0,4173,4320.000000,31,0,-1.000000,1771.520000,baseline,lora,180 +on1,0,0,24,0,0,4121,4320.000000,32,0,-1.000000,1760.160000,baseline,lora,180 +on11,0,0,24,0,0,4003,4320.000000,32,0,-1.000000,1825.120000,baseline,lora,180 +on10,0,0,24,0,0,4290,4320.000000,32,0,-1.000000,1732.960000,baseline,lora,180 +on12,0,0,24,1,0,2744,4320.000000,32,0,60190.000000,1782.400000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,32,0,-1.000000,2118.880000,baseline,lora,180 +on4,0,0,24,1,0,4036,4320.000000,32,0,83859.000000,1776.480000,baseline,lora,180 +on9,0,0,24,0,0,4089,4320.000000,32,0,-1.000000,1777.760000,baseline,lora,180 +on5,0,0,24,0,0,4291,4320.000000,32,0,-1.000000,1732.800000,baseline,lora,180 +on7,0,0,24,1,0,1338,4320.000000,32,0,29832.000000,1772.800000,baseline,lora,180 +on6,0,0,24,0,0,3995,4320.000000,32,0,-1.000000,1804.960000,baseline,lora,180 +on3,0,0,24,0,0,4308,4320.000000,32,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,32,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,1,0,2968,4320.000000,32,0,65794.000000,1803.520000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4315,4320.000000,33,0,-1.000000,1741.760000,baseline,lora,180 +on7,0,0,24,0,0,4137,4320.000000,33,0,-1.000000,1781.280000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,33,0,-1.000000,2078.400000,baseline,lora,180 +on10,0,0,24,0,0,4151,4320.000000,33,0,-1.000000,1781.440000,baseline,lora,180 +on1,0,0,24,1,0,2671,4320.000000,33,0,60966.000000,1787.360000,baseline,lora,180 +on5,0,0,24,0,0,4244,4320.000000,33,0,-1.000000,1752.160000,baseline,lora,180 +on2,0,0,24,1,0,3187,4320.000000,33,0,69519.000000,1791.200000,baseline,lora,180 +on8,0,0,24,0,0,4126,4320.000000,33,0,-1.000000,1778.080000,baseline,lora,180 +on3,0,0,24,0,0,4122,4320.000000,33,0,-1.000000,1781.600000,baseline,lora,180 +on12,0,0,24,1,0,2911,4320.000000,33,0,62021.000000,1782.400000,baseline,lora,180 +on9,0,0,24,0,0,4046,4320.000000,33,0,-1.000000,1814.400000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4207,4320.000000,34,0,-1.000000,1780.480000,baseline,lora,180 +on11,0,0,24,0,0,4220,4320.000000,34,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4276,4320.000000,34,0,-1.000000,1735.360000,baseline,lora,180 +on8,0,0,24,0,0,4173,4320.000000,34,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,1,0,3780,4320.000000,34,0,76225.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4186,4320.000000,34,0,-1.000000,1749.920000,baseline,lora,180 +on2,0,0,24,1,0,727,4320.000000,34,0,15598.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4159,4320.000000,34,0,-1.000000,1778.560000,baseline,lora,180 +on10,0,0,24,0,0,4177,4320.000000,34,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4075,4320.000000,34,0,-1.000000,1796.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,34,0,-1.000000,1971.840000,baseline,lora,180 +on12,0,0,24,0,0,4222,4320.000000,34,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,1,0,180,4320.000000,35,0,6337.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4268,4320.000000,35,0,-1.000000,1736.480000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,35,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4198,4320.000000,35,0,-1.000000,1796.640000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,35,0,-1.000000,1971.040000,baseline,lora,180 +on3,0,0,24,1,0,2956,4320.000000,35,0,62199.000000,1784.960000,baseline,lora,180 +on12,0,0,24,0,0,4240,4320.000000,35,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4047,4320.000000,35,0,-1.000000,1831.040000,baseline,lora,180 +on10,0,0,24,1,0,3,4320.000000,35,0,3184.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4184,4320.000000,35,0,-1.000000,1765.760000,baseline,lora,180 +on7,0,0,24,1,0,1980,4320.000000,35,0,41330.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4233,4320.000000,35,0,-1.000000,1742.240000,baseline,lora,180 +on2,0,0,24,0,0,4313,4320.000000,35,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4150,4320.000000,36,0,-1.000000,1822.720000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4122,4320.000000,36,0,-1.000000,1796.320000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,36,0,-1.000000,2036.960000,baseline,lora,180 +on12,0,0,24,1,0,1084,4320.000000,36,0,23026.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4131,4320.000000,36,0,-1.000000,1759.680000,baseline,lora,180 +on5,0,0,24,0,0,4159,4320.000000,36,0,-1.000000,1754.080000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4085,4320.000000,36,0,-1.000000,1770.080000,baseline,lora,180 +on2,0,0,24,0,0,4126,4320.000000,36,0,-1.000000,1772.000000,baseline,lora,180 +on1,0,0,24,0,0,4194,4320.000000,36,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4037,4320.000000,36,0,-1.000000,1796.800000,baseline,lora,180 +on10,0,0,24,1,0,1237,4320.000000,36,0,27060.000000,1758.880000,baseline,lora,180 +on11,0,0,24,0,0,3955,4320.000000,37,0,-1.000000,1805.600000,baseline,lora,180 +on12,0,0,24,0,0,4248,4320.000000,37,0,-1.000000,1739.840000,baseline,lora,180 +on6,0,0,24,0,0,4217,4320.000000,37,0,-1.000000,1778.240000,baseline,lora,180 +on10,0,0,24,1,0,540,4320.000000,37,0,13279.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,3999,4320.000000,37,0,-1.000000,1779.840000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,37,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,37,0,-1.000000,2124.480000,baseline,lora,180 +on5,0,0,24,0,0,3744,4320.000000,37,0,-1.000000,1922.080000,baseline,lora,180 +on7,0,0,24,0,0,4109,4320.000000,37,0,-1.000000,1781.600000,baseline,lora,180 +on8,0,0,24,1,0,1639,4320.000000,37,0,34151.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4246,4320.000000,37,0,-1.000000,1757.760000,baseline,lora,180 +on9,0,0,24,0,0,3960,4320.000000,37,0,-1.000000,1801.920000,baseline,lora,180 +on4,0,0,24,0,0,4272,4320.000000,37,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4315,4320.000000,38,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4075,4320.000000,38,0,-1.000000,1772.640000,baseline,lora,180 +on11,0,0,24,0,0,4249,4320.000000,38,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4265,4320.000000,38,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4101,4320.000000,38,0,-1.000000,1763.520000,baseline,lora,180 +on3,0,0,24,0,0,4024,4320.000000,38,0,-1.000000,1787.360000,baseline,lora,180 +on5,0,0,24,0,0,4135,4320.000000,38,0,-1.000000,1782.240000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4213,4320.000000,38,0,-1.000000,1745.440000,baseline,lora,180 +on7,0,0,24,0,0,4191,4320.000000,38,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4230,4320.000000,38,0,-1.000000,1742.560000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,38,0,-1.000000,1955.040000,baseline,lora,180 +on6,0,0,24,0,0,4316,4320.000000,39,0,-1.000000,1728.800000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,3960,4320.000000,39,0,-1.000000,1823.040000,baseline,lora,180 +on8,0,0,24,1,0,2688,4320.000000,39,0,56316.000000,1768.000000,baseline,lora,180 +on3,0,0,24,1,0,3065,4320.000000,39,0,64176.000000,1753.600000,baseline,lora,180 +on1,0,0,24,1,0,3964,4320.000000,39,0,80051.000000,1753.600000,baseline,lora,180 +on5,0,0,24,1,0,725,4320.000000,39,0,17074.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4278,4320.000000,39,0,-1.000000,1761.920000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,39,0,-1.000000,1984.000000,baseline,lora,180 +on12,0,0,24,1,0,3300,4320.000000,39,0,68816.000000,1782.400000,baseline,lora,180 +on11,0,0,24,0,0,4093,4320.000000,39,0,-1.000000,1792.320000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4219,4320.000000,40,0,-1.000000,1744.320000,baseline,lora,180 +on7,0,0,24,0,0,4295,4320.000000,40,0,-1.000000,1732.160000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,40,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4150,4320.000000,40,0,-1.000000,1755.520000,baseline,lora,180 +on4,0,0,24,0,0,4201,4320.000000,40,0,-1.000000,1747.200000,baseline,lora,180 +on12,0,0,24,0,0,4189,4320.000000,40,0,-1.000000,1749.440000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,40,0,-1.000000,1960.000000,baseline,lora,180 +on6,0,0,24,0,0,4198,4320.000000,40,0,-1.000000,1763.680000,baseline,lora,180 +on11,0,0,24,0,0,3979,4320.000000,40,0,-1.000000,1861.600000,baseline,lora,180 +on10,0,0,24,0,0,4219,4320.000000,40,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4196,4320.000000,40,0,-1.000000,1748.160000,baseline,lora,180 +on3,0,0,24,0,0,4238,4320.000000,40,0,-1.000000,1741.280000,baseline,lora,180 +on8,0,0,24,0,0,4206,4320.000000,40,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4180,4320.000000,41,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4205,4320.000000,41,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4068,4320.000000,41,0,-1.000000,1784.480000,baseline,lora,180 +on9,0,0,24,0,0,3982,4320.000000,41,0,-1.000000,1852.000000,baseline,lora,180 +on11,0,0,24,0,0,4195,4320.000000,41,0,-1.000000,1761.920000,baseline,lora,180 +on4,0,0,24,0,0,3991,4320.000000,41,0,-1.000000,1786.080000,baseline,lora,180 +on12,0,0,24,0,0,4275,4320.000000,41,0,-1.000000,1735.360000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,41,0,-1.000000,2064.480000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,1,0,2637,4320.000000,41,0,59802.000000,1811.200000,baseline,lora,180 +on7,0,0,24,0,0,4176,4320.000000,41,0,-1.000000,1785.600000,baseline,lora,180 +on6,0,0,24,1,0,3595,4320.000000,41,0,73222.000000,1756.480000,baseline,lora,180 +on10,0,0,24,0,0,4208,4320.000000,42,0,-1.000000,1747.840000,baseline,lora,180 +on4,0,0,24,1,0,2157,4320.000000,42,0,48862.000000,1806.880000,baseline,lora,180 +on9,0,0,24,0,0,4173,4320.000000,42,0,-1.000000,1751.840000,baseline,lora,180 +on8,0,0,24,0,0,3969,4320.000000,42,0,-1.000000,1843.200000,baseline,lora,180 +on2,0,0,24,0,0,4211,4320.000000,42,0,-1.000000,1745.760000,baseline,lora,180 +on12,0,0,24,0,0,4165,4320.000000,42,0,-1.000000,1753.120000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,3909,4320.000000,42,0,-1.000000,1794.400000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,42,0,-1.000000,2112.640000,baseline,lora,180 +on3,0,0,24,0,0,4107,4320.000000,42,0,-1.000000,1776.000000,baseline,lora,180 +on6,0,0,24,0,0,4142,4320.000000,42,0,-1.000000,1764.000000,baseline,lora,180 +on7,0,0,24,0,0,4173,4320.000000,42,0,-1.000000,1751.680000,baseline,lora,180 +on1,0,0,24,0,0,4107,4320.000000,42,0,-1.000000,1783.840000,baseline,lora,180 +on6,0,0,24,0,0,4096,4320.000000,43,0,-1.000000,1831.840000,baseline,lora,180 +on7,0,0,24,0,0,4310,4320.000000,43,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4298,4320.000000,43,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4282,4320.000000,43,0,-1.000000,1734.240000,baseline,lora,180 +on1,0,0,24,0,0,4184,4320.000000,43,0,-1.000000,1772.160000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,43,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4037,4320.000000,43,0,-1.000000,1804.000000,baseline,lora,180 +on11,0,0,24,0,0,4296,4320.000000,43,0,-1.000000,1732.160000,baseline,lora,180 +on4,0,0,24,0,0,4143,4320.000000,43,0,-1.000000,1763.200000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,43,0,-1.000000,1940.000000,baseline,lora,180 +on8,0,0,24,0,0,4044,4320.000000,43,0,-1.000000,1780.320000,baseline,lora,180 +on12,0,0,24,0,0,4230,4320.000000,43,0,-1.000000,1763.360000,baseline,lora,180 +on2,0,0,24,0,0,4296,4320.000000,43,0,-1.000000,1732.000000,baseline,lora,180 +on9,0,0,24,0,0,4161,4320.000000,44,0,-1.000000,1753.600000,baseline,lora,180 +on2,0,0,24,1,0,3381,4320.000000,44,0,68747.000000,1811.200000,baseline,lora,180 +on1,0,0,24,1,0,1260,4320.000000,44,0,25440.000000,1753.600000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,44,0,-1.000000,2032.800000,baseline,lora,180 +on8,0,0,24,0,0,4258,4320.000000,44,0,-1.000000,1738.880000,baseline,lora,180 +on4,0,0,24,0,0,4183,4320.000000,44,0,-1.000000,1764.320000,baseline,lora,180 +on6,0,0,24,0,0,4245,4320.000000,44,0,-1.000000,1765.920000,baseline,lora,180 +on11,0,0,24,1,0,1632,4320.000000,44,0,33050.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,3884,4320.000000,44,0,-1.000000,1827.360000,baseline,lora,180 +on7,0,0,24,0,0,4075,4320.000000,44,0,-1.000000,1790.240000,baseline,lora,180 +on12,0,0,24,0,0,4142,4320.000000,44,0,-1.000000,1775.360000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4256,4320.000000,44,0,-1.000000,1738.400000,baseline,lora,180 +on4,0,0,24,0,0,4192,4320.000000,45,0,-1.000000,1748.800000,baseline,lora,180 +on5,0,0,24,0,0,4249,4320.000000,45,0,-1.000000,1763.840000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,3917,4320.000000,45,0,-1.000000,1809.920000,baseline,lora,180 +on12,0,0,24,0,0,4063,4320.000000,45,0,-1.000000,1781.600000,baseline,lora,180 +on9,0,0,24,0,0,4014,4320.000000,45,0,-1.000000,1781.920000,baseline,lora,180 +on8,0,0,24,0,0,4301,4320.000000,45,0,-1.000000,1749.120000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4269,4320.000000,45,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,1,0,732,4320.000000,45,0,15881.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4212,4320.000000,45,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,45,0,-1.000000,1971.200000,baseline,lora,180 +on6,0,0,24,0,0,4240,4320.000000,46,0,-1.000000,1740.960000,baseline,lora,180 +on11,0,0,24,0,0,4095,4320.000000,46,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,4031,4320.000000,46,0,-1.000000,1779.840000,baseline,lora,180 +on2,0,0,24,0,0,4206,4320.000000,46,0,-1.000000,1746.400000,baseline,lora,180 +on12,0,0,24,0,0,4157,4320.000000,46,0,-1.000000,1754.400000,baseline,lora,180 +on8,0,0,24,1,0,980,4320.000000,46,0,27141.000000,1811.200000,baseline,lora,180 +on1,0,0,24,1,0,3510,4320.000000,46,0,74583.000000,1782.400000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4172,4320.000000,46,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,1,0,1968,4320.000000,46,0,42271.000000,1778.720000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,46,0,-1.000000,2055.520000,baseline,lora,180 +on7,0,0,24,0,0,4184,4320.000000,46,0,-1.000000,1749.920000,baseline,lora,180 +on11,0,0,24,0,0,4247,4320.000000,47,0,-1.000000,1739.840000,baseline,lora,180 +on2,0,0,24,0,0,4047,4320.000000,47,0,-1.000000,1772.320000,baseline,lora,180 +on7,0,0,24,0,0,4235,4320.000000,47,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4021,4320.000000,47,0,-1.000000,1802.560000,baseline,lora,180 +on3,0,0,24,1,0,2074,4320.000000,47,0,45550.000000,1782.400000,baseline,lora,180 +on5,0,0,24,1,0,186,4320.000000,47,0,7083.000000,1753.600000,baseline,lora,180 +on12,0,0,24,1,0,812,4320.000000,47,0,20014.000000,1768.480000,baseline,lora,180 +on1,0,0,24,0,0,3983,4320.000000,47,0,-1.000000,1792.160000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,47,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4099,4320.000000,47,0,-1.000000,1778.080000,baseline,lora,180 +on8,0,0,24,1,0,1800,4320.000000,47,0,39434.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4246,4320.000000,47,0,-1.000000,1740.000000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,47,0,-1.000000,2080.320000,baseline,lora,180 +on11,0,0,24,0,0,4242,4320.000000,48,0,-1.000000,1740.640000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,48,0,-1.000000,1966.880000,baseline,lora,180 +on10,0,0,24,0,0,4052,4320.000000,48,0,-1.000000,1778.240000,baseline,lora,180 +on5,0,0,24,1,0,3613,4320.000000,48,0,73052.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4256,4320.000000,48,0,-1.000000,1783.360000,baseline,lora,180 +on2,0,0,24,0,0,4276,4320.000000,48,0,-1.000000,1752.160000,baseline,lora,180 +on3,0,0,24,1,0,3060,4320.000000,48,0,61989.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4298,4320.000000,48,0,-1.000000,1757.280000,baseline,lora,180 +on12,0,0,24,0,0,4190,4320.000000,48,0,-1.000000,1748.960000,baseline,lora,180 +on1,0,0,24,1,0,185,4320.000000,48,0,4543.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4285,4320.000000,48,0,-1.000000,1733.760000,baseline,lora,180 +on4,0,0,24,0,0,4239,4320.000000,48,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4046,4320.000000,48,0,-1.000000,1802.720000,baseline,lora,180 +on7,0,0,24,0,0,4066,4320.000000,49,0,-1.000000,1818.560000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4038,4320.000000,49,0,-1.000000,1773.440000,baseline,lora,180 +on6,0,0,24,1,0,361,4320.000000,49,0,7588.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,3905,4320.000000,49,0,-1.000000,1801.120000,baseline,lora,180 +on9,0,0,24,0,0,4307,4320.000000,49,0,-1.000000,1745.280000,baseline,lora,180 +on4,0,0,24,0,0,4100,4320.000000,49,0,-1.000000,1782.720000,baseline,lora,180 +on11,0,0,24,0,0,4166,4320.000000,49,0,-1.000000,1755.840000,baseline,lora,180 +on2,0,0,24,0,0,4240,4320.000000,49,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4242,4320.000000,49,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4092,4320.000000,49,0,-1.000000,1787.200000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,49,0,-1.000000,2051.040000,baseline,lora,180 +on1,0,0,24,0,0,4208,4320.000000,49,0,-1.000000,1746.080000,baseline,lora,180 +on7,0,0,24,0,0,4163,4320.000000,50,0,-1.000000,1753.280000,baseline,lora,180 +on3,0,0,24,0,0,4291,4320.000000,50,0,-1.000000,1732.800000,baseline,lora,180 +on9,0,0,24,0,0,4311,4320.000000,50,0,-1.000000,1729.600000,baseline,lora,180 +on12,0,0,24,0,0,4159,4320.000000,50,0,-1.000000,1754.080000,baseline,lora,180 +on6,0,0,24,1,0,2927,4320.000000,50,0,67962.000000,1840.000000,baseline,lora,180 +on5,0,0,24,0,0,4245,4320.000000,50,0,-1.000000,1740.320000,baseline,lora,180 +on8,0,0,24,1,0,2520,4320.000000,50,0,52683.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,3987,4320.000000,50,0,-1.000000,1814.400000,baseline,lora,180 +on10,0,0,24,1,0,3882,4320.000000,50,0,82226.000000,1811.200000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,50,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4275,4320.000000,50,0,-1.000000,1740.160000,baseline,lora,180 +on2,0,0,24,0,0,4173,4320.000000,50,0,-1.000000,1755.040000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,50,0,-1.000000,2026.240000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,51,0,-1.000000,2037.120000,baseline,lora,180 +on10,0,0,24,0,0,4113,4320.000000,51,0,-1.000000,1761.440000,baseline,lora,180 +on7,0,0,24,0,0,4188,4320.000000,51,0,-1.000000,1800.160000,baseline,lora,180 +on9,0,0,24,0,0,4140,4320.000000,51,0,-1.000000,1772.640000,baseline,lora,180 +on4,0,0,24,0,0,4085,4320.000000,51,0,-1.000000,1785.280000,baseline,lora,180 +on5,0,0,24,1,0,1809,4320.000000,51,0,36523.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,51,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4220,4320.000000,51,0,-1.000000,1744.160000,baseline,lora,180 +on8,0,0,24,0,0,4144,4320.000000,51,0,-1.000000,1779.360000,baseline,lora,180 +on12,0,0,24,1,0,1394,4320.000000,51,0,32800.000000,1798.080000,baseline,lora,180 +on6,0,0,24,0,0,4195,4320.000000,51,0,-1.000000,1749.600000,baseline,lora,180 +on3,0,0,24,0,0,4176,4320.000000,51,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4259,4320.000000,51,0,-1.000000,1751.520000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4131,4320.000000,52,0,-1.000000,1774.080000,baseline,lora,180 +on6,0,0,24,0,0,4031,4320.000000,52,0,-1.000000,1787.520000,baseline,lora,180 +on5,0,0,24,0,0,4049,4320.000000,52,0,-1.000000,1808.800000,baseline,lora,180 +on12,0,0,24,0,0,4122,4320.000000,52,0,-1.000000,1767.520000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4161,4320.000000,52,0,-1.000000,1768.480000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4226,4320.000000,52,0,-1.000000,1760.000000,baseline,lora,180 +on9,0,0,24,0,0,4013,4320.000000,52,0,-1.000000,1777.600000,baseline,lora,180 +on4,0,0,24,0,0,4250,4320.000000,52,0,-1.000000,1746.560000,baseline,lora,180 +on8,0,0,24,1,0,3990,4320.000000,52,0,86141.000000,1777.920000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,52,0,-1.000000,2033.120000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4178,4320.000000,53,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,3900,4320.000000,53,0,-1.000000,1807.680000,baseline,lora,180 +on9,0,0,24,0,0,4290,4320.000000,53,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,1,0,1982,4320.000000,53,0,40874.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4237,4320.000000,53,0,-1.000000,1784.320000,baseline,lora,180 +on12,0,0,24,0,0,4288,4320.000000,53,0,-1.000000,1736.480000,baseline,lora,180 +on6,0,0,24,0,0,4288,4320.000000,53,0,-1.000000,1733.280000,baseline,lora,180 +on5,0,0,24,0,0,4265,4320.000000,53,0,-1.000000,1757.280000,baseline,lora,180 +on4,0,0,24,0,0,4296,4320.000000,53,0,-1.000000,1732.000000,baseline,lora,180 +on7,0,0,24,1,0,550,4320.000000,53,0,12292.000000,1753.600000,baseline,lora,180 +on2,0,0,24,1,0,1294,4320.000000,53,0,31275.000000,1777.120000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,53,0,-1.000000,1961.280000,baseline,lora,180 +on4,0,0,24,0,0,4157,4320.000000,54,0,-1.000000,1794.080000,baseline,lora,180 +on5,0,0,24,0,0,4206,4320.000000,54,0,-1.000000,1746.400000,baseline,lora,180 +on12,0,0,24,0,0,4194,4320.000000,54,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4179,4320.000000,54,0,-1.000000,1775.200000,baseline,lora,180 +on3,0,0,24,0,0,4185,4320.000000,54,0,-1.000000,1749.920000,baseline,lora,180 +on2,0,0,24,1,0,2488,4320.000000,54,0,58922.000000,1851.840000,baseline,lora,180 +on11,0,0,24,0,0,4102,4320.000000,54,0,-1.000000,1773.440000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4116,4320.000000,54,0,-1.000000,1787.680000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,54,0,-1.000000,2010.720000,baseline,lora,180 +on10,0,0,24,0,0,4227,4320.000000,54,0,-1.000000,1743.200000,baseline,lora,180 +on2,0,0,24,0,0,4181,4320.000000,55,0,-1.000000,1764.320000,baseline,lora,180 +on7,0,0,24,0,0,4166,4320.000000,55,0,-1.000000,1752.800000,baseline,lora,180 +on11,0,0,24,0,0,4179,4320.000000,55,0,-1.000000,1752.640000,baseline,lora,180 +on8,0,0,24,0,0,4198,4320.000000,55,0,-1.000000,1787.040000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,3950,4320.000000,55,0,-1.000000,1843.360000,baseline,lora,180 +on9,0,0,24,0,0,4226,4320.000000,55,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,1,0,1781,4320.000000,55,0,38668.000000,1782.400000,baseline,lora,180 +on12,0,0,24,0,0,3998,4320.000000,55,0,-1.000000,1810.880000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,3811,4320.000000,55,0,-1.000000,1848.480000,baseline,lora,180 +on4,0,0,24,1,0,1440,4320.000000,55,0,29591.000000,1753.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,55,0,-1.000000,2082.240000,baseline,lora,180 +on5,0,0,24,0,0,4259,4320.000000,56,0,-1.000000,1737.920000,baseline,lora,180 +on2,0,0,24,0,0,4242,4320.000000,56,0,-1.000000,1740.640000,baseline,lora,180 +on11,0,0,24,0,0,4271,4320.000000,56,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,3982,4320.000000,56,0,-1.000000,1782.560000,baseline,lora,180 +on10,0,0,24,0,0,4209,4320.000000,56,0,-1.000000,1783.520000,baseline,lora,180 +on8,0,0,24,1,0,904,4320.000000,56,0,19099.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,3993,4320.000000,56,0,-1.000000,1820.160000,baseline,lora,180 +on12,0,0,24,0,0,4210,4320.000000,56,0,-1.000000,1773.760000,baseline,lora,180 +on7,0,0,24,0,0,4136,4320.000000,56,0,-1.000000,1761.600000,baseline,lora,180 +on9,0,0,24,0,0,4275,4320.000000,56,0,-1.000000,1735.360000,baseline,lora,180 +on4,0,0,24,0,0,4021,4320.000000,56,0,-1.000000,1823.360000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,56,0,-1.000000,2013.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,57,0,-1.000000,1944.000000,baseline,lora,180 +on2,0,0,24,1,0,1459,4320.000000,57,0,30722.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4215,4320.000000,57,0,-1.000000,1745.120000,baseline,lora,180 +on10,0,0,24,0,0,4189,4320.000000,57,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4291,4320.000000,57,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4172,4320.000000,57,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,3950,4320.000000,57,0,-1.000000,1852.640000,baseline,lora,180 +on7,0,0,24,0,0,4298,4320.000000,57,0,-1.000000,1731.680000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4248,4320.000000,57,0,-1.000000,1739.680000,baseline,lora,180 +on11,0,0,24,0,0,4137,4320.000000,57,0,-1.000000,1762.880000,baseline,lora,180 +on12,0,0,24,0,0,4207,4320.000000,57,0,-1.000000,1771.680000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4176,4320.000000,58,0,-1.000000,1751.200000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,3858,4320.000000,58,0,-1.000000,1806.720000,baseline,lora,180 +on3,0,0,24,1,0,3220,4320.000000,58,0,71130.000000,1792.960000,baseline,lora,180 +on5,0,0,24,0,0,4107,4320.000000,58,0,-1.000000,1762.560000,baseline,lora,180 +on10,0,0,24,0,0,4201,4320.000000,58,0,-1.000000,1808.800000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,58,0,-1.000000,2109.760000,baseline,lora,180 +on7,0,0,24,0,0,4104,4320.000000,58,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4039,4320.000000,58,0,-1.000000,1778.400000,baseline,lora,180 +on1,0,0,24,0,0,4155,4320.000000,58,0,-1.000000,1785.600000,baseline,lora,180 +on6,0,0,24,0,0,4276,4320.000000,58,0,-1.000000,1735.360000,baseline,lora,180 +on11,0,0,24,1,0,2339,4320.000000,58,0,52629.000000,1785.600000,baseline,lora,180 +on6,0,0,24,0,0,4145,4320.000000,59,0,-1.000000,1763.040000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,59,0,-1.000000,1972.000000,baseline,lora,180 +on3,0,0,24,0,0,4220,4320.000000,59,0,-1.000000,1744.320000,baseline,lora,180 +on1,0,0,24,1,0,360,4320.000000,59,0,10503.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4114,4320.000000,59,0,-1.000000,1761.440000,baseline,lora,180 +on4,0,0,24,0,0,4226,4320.000000,59,0,-1.000000,1749.440000,baseline,lora,180 +on11,0,0,24,0,0,4158,4320.000000,59,0,-1.000000,1762.720000,baseline,lora,180 +on10,0,0,24,0,0,4272,4320.000000,59,0,-1.000000,1735.840000,baseline,lora,180 +on7,0,0,24,0,0,4122,4320.000000,59,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4292,4320.000000,59,0,-1.000000,1732.640000,baseline,lora,180 +on5,0,0,24,1,0,917,4320.000000,59,0,20010.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4303,4320.000000,59,0,-1.000000,1734.080000,baseline,lora,180 +on2,0,0,24,1,0,540,4320.000000,59,0,13131.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4109,4320.000000,60,0,-1.000000,1762.720000,baseline,lora,180 +on8,0,0,24,0,0,4110,4320.000000,60,0,-1.000000,1761.920000,baseline,lora,180 +on10,0,0,24,0,0,4156,4320.000000,60,0,-1.000000,1790.080000,baseline,lora,180 +on12,0,0,24,1,0,3077,4320.000000,60,0,62534.000000,1753.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,60,0,-1.000000,2036.000000,baseline,lora,180 +on3,0,0,24,0,0,4034,4320.000000,60,0,-1.000000,1774.240000,baseline,lora,180 +on9,0,0,24,0,0,4223,4320.000000,60,0,-1.000000,1743.840000,baseline,lora,180 +on2,0,0,24,0,0,4307,4320.000000,60,0,-1.000000,1730.240000,baseline,lora,180 +on1,0,0,24,0,0,4299,4320.000000,60,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,3958,4320.000000,60,0,-1.000000,1822.080000,baseline,lora,180 +on6,0,0,24,0,0,4199,4320.000000,60,0,-1.000000,1747.520000,baseline,lora,180 +on7,0,0,24,1,0,1192,4320.000000,60,0,28311.000000,1764.640000,baseline,lora,180 +on5,0,0,24,0,0,4289,4320.000000,60,0,-1.000000,1733.280000,baseline,lora,180 +on9,0,0,24,0,0,4185,4320.000000,61,0,-1.000000,1768.320000,baseline,lora,180 +on2,0,0,24,1,0,3240,4320.000000,61,0,66205.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,3928,4320.000000,61,0,-1.000000,1814.400000,baseline,lora,180 +on1,0,0,24,0,0,4244,4320.000000,61,0,-1.000000,1740.320000,baseline,lora,180 +on10,0,0,24,1,0,912,4320.000000,61,0,18371.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4205,4320.000000,61,0,-1.000000,1746.560000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,61,0,-1.000000,2006.240000,baseline,lora,180 +on12,0,0,24,0,0,4289,4320.000000,61,0,-1.000000,1757.600000,baseline,lora,180 +on7,0,0,24,1,0,1921,4320.000000,61,0,42539.000000,1782.400000,baseline,lora,180 +on6,0,0,24,0,0,4257,4320.000000,61,0,-1.000000,1765.120000,baseline,lora,180 +on11,0,0,24,0,0,4128,4320.000000,61,0,-1.000000,1759.040000,baseline,lora,180 +on5,0,0,24,0,0,4300,4320.000000,61,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4166,4320.000000,61,0,-1.000000,1752.800000,baseline,lora,180 +on6,0,0,24,0,0,4050,4320.000000,62,0,-1.000000,1771.520000,baseline,lora,180 +on7,0,0,24,0,0,4206,4320.000000,62,0,-1.000000,1753.440000,baseline,lora,180 +on3,0,0,24,1,0,729,4320.000000,62,0,14946.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4273,4320.000000,62,0,-1.000000,1735.680000,baseline,lora,180 +on10,0,0,24,0,0,4189,4320.000000,62,0,-1.000000,1785.600000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,62,0,-1.000000,2019.680000,baseline,lora,180 +on4,0,0,24,1,0,3435,4320.000000,62,0,70867.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4236,4320.000000,62,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4159,4320.000000,62,0,-1.000000,1767.200000,baseline,lora,180 +on12,0,0,24,1,0,2172,4320.000000,62,0,49655.000000,1797.600000,baseline,lora,180 +on11,0,0,24,0,0,4200,4320.000000,62,0,-1.000000,1757.920000,baseline,lora,180 +on5,0,0,24,1,0,9,4320.000000,62,0,3062.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4246,4320.000000,62,0,-1.000000,1740.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4301,4320.000000,63,0,-1.000000,1744.320000,baseline,lora,180 +on1,0,0,24,0,0,3876,4320.000000,63,0,-1.000000,1820.640000,baseline,lora,180 +on3,0,0,24,0,0,4056,4320.000000,63,0,-1.000000,1779.040000,baseline,lora,180 +on2,0,0,24,1,0,3600,4320.000000,63,0,72960.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,1,0,2982,4320.000000,63,0,62854.000000,1782.400000,baseline,lora,180 +on11,0,0,24,0,0,3901,4320.000000,63,0,-1.000000,1813.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,63,0,-1.000000,2031.200000,baseline,lora,180 +on9,0,0,24,0,0,4109,4320.000000,63,0,-1.000000,1779.680000,baseline,lora,180 +on7,0,0,24,0,0,4200,4320.000000,63,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4232,4320.000000,64,0,-1.000000,1772.480000,baseline,lora,180 +on8,0,0,24,0,0,4205,4320.000000,64,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4118,4320.000000,64,0,-1.000000,1775.200000,baseline,lora,180 +on10,0,0,24,1,0,1472,4320.000000,64,0,33252.000000,1777.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,64,0,-1.000000,1991.840000,baseline,lora,180 +on11,0,0,24,0,0,4191,4320.000000,64,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,543,4320.000000,64,0,12600.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4155,4320.000000,64,0,-1.000000,1754.720000,baseline,lora,180 +on5,0,0,24,0,0,4280,4320.000000,64,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,4107,4320.000000,64,0,-1.000000,1781.760000,baseline,lora,180 +on2,0,0,24,0,0,4122,4320.000000,64,0,-1.000000,1795.680000,baseline,lora,180 +on4,0,0,24,0,0,4308,4320.000000,64,0,-1.000000,1730.080000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4097,4320.000000,65,0,-1.000000,1791.200000,baseline,lora,180 +on6,0,0,24,0,0,4208,4320.000000,65,0,-1.000000,1746.240000,baseline,lora,180 +on1,0,0,24,1,0,1808,4320.000000,65,0,36785.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4256,4320.000000,65,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4301,4320.000000,65,0,-1.000000,1753.440000,baseline,lora,180 +on9,0,0,24,0,0,4134,4320.000000,65,0,-1.000000,1786.560000,baseline,lora,180 +on4,0,0,24,0,0,4286,4320.000000,65,0,-1.000000,1733.600000,baseline,lora,180 +on7,0,0,24,1,0,3607,4320.000000,65,0,73193.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4039,4320.000000,65,0,-1.000000,1780.160000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,65,0,-1.000000,1944.480000,baseline,lora,180 +on2,0,0,24,0,0,4279,4320.000000,65,0,-1.000000,1734.720000,baseline,lora,180 +on11,0,0,24,0,0,4264,4320.000000,65,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,65,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4260,4320.000000,66,0,-1.000000,1742.880000,baseline,lora,180 +on1,0,0,24,0,0,4185,4320.000000,66,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4254,4320.000000,66,0,-1.000000,1766.720000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,66,0,-1.000000,1905.920000,baseline,lora,180 +on2,0,0,24,0,0,4317,4320.000000,66,0,-1.000000,1728.640000,baseline,lora,180 +on6,0,0,24,1,0,1808,4320.000000,66,0,39241.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,1,0,180,4320.000000,66,0,4524.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4169,4320.000000,66,0,-1.000000,1752.320000,baseline,lora,180 +on9,0,0,24,0,0,4307,4320.000000,66,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,0,0,4288,4320.000000,66,0,-1.000000,1760.480000,baseline,lora,180 +on7,0,0,24,1,0,2544,4320.000000,66,0,55706.000000,1795.840000,baseline,lora,180 +on5,0,0,24,0,0,3932,4320.000000,67,0,-1.000000,1798.080000,baseline,lora,180 +on3,0,0,24,0,0,3944,4320.000000,67,0,-1.000000,1826.560000,baseline,lora,180 +on7,0,0,24,0,0,4248,4320.000000,67,0,-1.000000,1745.920000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4126,4320.000000,67,0,-1.000000,1767.680000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,67,0,-1.000000,2125.120000,baseline,lora,180 +on8,0,0,24,0,0,3807,4320.000000,67,0,-1.000000,1819.520000,baseline,lora,180 +on6,0,0,24,0,0,4066,4320.000000,67,0,-1.000000,1785.440000,baseline,lora,180 +on4,0,0,24,0,0,4053,4320.000000,67,0,-1.000000,1788.000000,baseline,lora,180 +on10,0,0,24,0,0,4274,4320.000000,67,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4254,4320.000000,67,0,-1.000000,1738.880000,baseline,lora,180 +on12,0,0,24,0,0,4260,4320.000000,67,0,-1.000000,1746.240000,baseline,lora,180 +on2,0,0,24,0,0,4102,4320.000000,67,0,-1.000000,1769.920000,baseline,lora,180 +on11,0,0,24,1,0,1988,4320.000000,68,0,46368.000000,1797.600000,baseline,lora,180 +on5,0,0,24,0,0,4282,4320.000000,68,0,-1.000000,1734.240000,baseline,lora,180 +on4,0,0,24,1,0,1260,4320.000000,68,0,26450.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4065,4320.000000,68,0,-1.000000,1774.880000,baseline,lora,180 +on8,0,0,24,1,0,2294,4320.000000,68,0,47313.000000,1761.120000,baseline,lora,180 +on12,0,0,24,0,0,4156,4320.000000,68,0,-1.000000,1770.080000,baseline,lora,180 +on10,0,0,24,0,0,4293,4320.000000,68,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4229,4320.000000,68,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,68,0,-1.000000,2061.760000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,68,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4283,4320.000000,68,0,-1.000000,1766.080000,baseline,lora,180 +on6,0,0,24,0,0,3884,4320.000000,68,0,-1.000000,1873.920000,baseline,lora,180 +on7,0,0,24,0,0,4009,4320.000000,68,0,-1.000000,1778.240000,baseline,lora,180 +on11,0,0,24,0,0,4237,4320.000000,69,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,3997,4320.000000,69,0,-1.000000,1814.400000,baseline,lora,180 +on10,0,0,24,0,0,4157,4320.000000,69,0,-1.000000,1774.880000,baseline,lora,180 +on8,0,0,24,0,0,4302,4320.000000,69,0,-1.000000,1731.040000,baseline,lora,180 +on9,0,0,24,0,0,3997,4320.000000,69,0,-1.000000,1803.680000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,69,0,-1.000000,2012.160000,baseline,lora,180 +on4,0,0,24,1,0,1807,4320.000000,69,0,36180.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,3998,4320.000000,69,0,-1.000000,1785.920000,baseline,lora,180 +on5,0,0,24,0,0,4098,4320.000000,69,0,-1.000000,1799.680000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4178,4320.000000,69,0,-1.000000,1767.200000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,3883,4320.000000,70,0,-1.000000,1838.080000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,70,0,-1.000000,2060.160000,baseline,lora,180 +on9,0,0,24,0,0,4228,4320.000000,70,0,-1.000000,1764.800000,baseline,lora,180 +on8,0,0,24,0,0,4263,4320.000000,70,0,-1.000000,1737.280000,baseline,lora,180 +on3,0,0,24,0,0,4116,4320.000000,70,0,-1.000000,1771.840000,baseline,lora,180 +on5,0,0,24,0,0,4087,4320.000000,70,0,-1.000000,1765.600000,baseline,lora,180 +on11,0,0,24,1,0,2031,4320.000000,70,0,46047.000000,1798.400000,baseline,lora,180 +on7,0,0,24,0,0,4229,4320.000000,70,0,-1.000000,1742.880000,baseline,lora,180 +on12,0,0,24,0,0,4255,4320.000000,70,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4179,4320.000000,70,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4297,4320.000000,70,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4308,4320.000000,70,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,1,0,2840,4320.000000,70,0,63141.000000,1819.040000,baseline,lora,180 +on5,0,0,24,0,0,4301,4320.000000,71,0,-1.000000,1750.080000,baseline,lora,180 +on8,0,0,24,0,0,4253,4320.000000,71,0,-1.000000,1757.440000,baseline,lora,180 +on7,0,0,24,0,0,4010,4320.000000,71,0,-1.000000,1788.960000,baseline,lora,180 +on10,0,0,24,0,0,4271,4320.000000,71,0,-1.000000,1785.600000,baseline,lora,180 +on11,0,0,24,0,0,4004,4320.000000,71,0,-1.000000,1803.680000,baseline,lora,180 +on2,0,0,24,0,0,3968,4320.000000,71,0,-1.000000,1812.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4277,4320.000000,71,0,-1.000000,1763.520000,baseline,lora,180 +on1,0,0,24,1,0,911,4320.000000,71,0,18698.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4173,4320.000000,71,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4148,4320.000000,71,0,-1.000000,1764.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,71,0,-1.000000,1992.960000,baseline,lora,180 +on2,0,0,24,1,0,2637,4320.000000,72,0,54737.000000,1782.400000,baseline,lora,180 +on11,0,0,24,0,0,4060,4320.000000,72,0,-1.000000,1782.080000,baseline,lora,180 +on9,0,0,24,1,0,1440,4320.000000,72,0,29455.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4122,4320.000000,72,0,-1.000000,1785.600000,baseline,lora,180 +on6,0,0,24,0,0,3875,4320.000000,72,0,-1.000000,1824.320000,baseline,lora,180 +on10,0,0,24,0,0,4304,4320.000000,72,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4183,4320.000000,72,0,-1.000000,1750.400000,baseline,lora,180 +on3,0,0,24,0,0,4237,4320.000000,72,0,-1.000000,1759.200000,baseline,lora,180 +on8,0,0,24,1,0,1096,4320.000000,72,0,23144.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4262,4320.000000,72,0,-1.000000,1737.600000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,72,0,-1.000000,2055.840000,baseline,lora,180 +on4,0,0,24,1,0,2340,4320.000000,72,0,47450.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4192,4320.000000,72,0,-1.000000,1767.200000,baseline,lora,180 +on8,0,0,24,0,0,4246,4320.000000,73,0,-1.000000,1740.000000,baseline,lora,180 +on6,0,0,24,0,0,3927,4320.000000,73,0,-1.000000,1811.680000,baseline,lora,180 +on9,0,0,24,0,0,4301,4320.000000,73,0,-1.000000,1732.960000,baseline,lora,180 +on10,0,0,24,0,0,4133,4320.000000,73,0,-1.000000,1758.240000,baseline,lora,180 +on1,0,0,24,1,0,2342,4320.000000,73,0,47638.000000,1753.600000,baseline,lora,180 +on2,0,0,24,1,0,2879,4320.000000,73,0,58706.000000,1782.400000,baseline,lora,180 +on7,0,0,24,0,0,3758,4320.000000,73,0,-1.000000,1827.200000,baseline,lora,180 +on11,0,0,24,0,0,4104,4320.000000,73,0,-1.000000,1773.760000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,73,0,-1.000000,2081.920000,baseline,lora,180 +on3,0,0,24,0,0,4214,4320.000000,73,0,-1.000000,1763.840000,baseline,lora,180 +on5,0,0,24,0,0,4272,4320.000000,73,0,-1.000000,1736.000000,baseline,lora,180 +on12,0,0,24,0,0,4083,4320.000000,73,0,-1.000000,1776.480000,baseline,lora,180 +on4,0,0,24,0,0,4303,4320.000000,73,0,-1.000000,1730.880000,baseline,lora,180 +on10,0,0,24,0,0,4065,4320.000000,74,0,-1.000000,1782.880000,baseline,lora,180 +on11,0,0,24,0,0,4169,4320.000000,74,0,-1.000000,1759.360000,baseline,lora,180 +on2,0,0,24,0,0,4217,4320.000000,74,0,-1.000000,1756.480000,baseline,lora,180 +on1,0,0,24,0,0,4310,4320.000000,74,0,-1.000000,1729.760000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,74,0,-1.000000,2056.640000,baseline,lora,180 +on8,0,0,24,1,0,2132,4320.000000,74,0,44290.000000,1800.960000,baseline,lora,180 +on4,0,0,24,0,0,4221,4320.000000,74,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4124,4320.000000,74,0,-1.000000,1759.680000,baseline,lora,180 +on3,0,0,24,0,0,3927,4320.000000,74,0,-1.000000,1801.440000,baseline,lora,180 +on12,0,0,24,0,0,4038,4320.000000,74,0,-1.000000,1776.640000,baseline,lora,180 +on5,0,0,24,1,0,2520,4320.000000,74,0,52210.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4166,4320.000000,74,0,-1.000000,1778.080000,baseline,lora,180 +on6,0,0,24,0,0,4298,4320.000000,74,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,75,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4144,4320.000000,75,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,4191,4320.000000,75,0,-1.000000,1748.800000,baseline,lora,180 +on9,0,0,24,0,0,4187,4320.000000,75,0,-1.000000,1776.160000,baseline,lora,180 +on5,0,0,24,1,0,1267,4320.000000,75,0,25546.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,75,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,1,0,1379,4320.000000,75,0,29217.000000,1811.200000,baseline,lora,180 +on11,0,0,24,0,0,4044,4320.000000,75,0,-1.000000,1818.400000,baseline,lora,180 +on10,0,0,24,0,0,4012,4320.000000,75,0,-1.000000,1777.760000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,75,0,-1.000000,2028.000000,baseline,lora,180 +on4,0,0,24,0,0,4254,4320.000000,75,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4158,4320.000000,75,0,-1.000000,1800.480000,baseline,lora,180 +on12,0,0,24,0,0,4110,4320.000000,75,0,-1.000000,1788.160000,baseline,lora,180 +on2,0,0,24,0,0,4254,4320.000000,76,0,-1.000000,1738.720000,baseline,lora,180 +on1,0,0,24,1,0,720,4320.000000,76,0,17606.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4027,4320.000000,76,0,-1.000000,1787.680000,baseline,lora,180 +on10,0,0,24,0,0,4232,4320.000000,76,0,-1.000000,1742.240000,baseline,lora,180 +on12,0,0,24,1,0,3508,4320.000000,76,0,72877.000000,1770.400000,baseline,lora,180 +on3,0,0,24,0,0,4125,4320.000000,76,0,-1.000000,1784.160000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,76,0,-1.000000,2088.000000,baseline,lora,180 +on8,0,0,24,0,0,4226,4320.000000,76,0,-1.000000,1750.240000,baseline,lora,180 +on7,0,0,24,0,0,4137,4320.000000,76,0,-1.000000,1797.440000,baseline,lora,180 +on5,0,0,24,0,0,4272,4320.000000,76,0,-1.000000,1735.840000,baseline,lora,180 +on6,0,0,24,1,0,180,4320.000000,76,0,6450.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4007,4320.000000,76,0,-1.000000,1782.240000,baseline,lora,180 +on11,0,0,24,0,0,3955,4320.000000,76,0,-1.000000,1816.320000,baseline,lora,180 +on11,0,0,24,0,0,4065,4320.000000,77,0,-1.000000,1772.960000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,77,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,77,0,-1.000000,2041.600000,baseline,lora,180 +on10,0,0,24,0,0,4099,4320.000000,77,0,-1.000000,1784.800000,baseline,lora,180 +on12,0,0,24,0,0,4227,4320.000000,77,0,-1.000000,1754.080000,baseline,lora,180 +on9,0,0,24,0,0,4253,4320.000000,77,0,-1.000000,1738.880000,baseline,lora,180 +on4,0,0,24,0,0,4170,4320.000000,77,0,-1.000000,1777.120000,baseline,lora,180 +on5,0,0,24,0,0,4001,4320.000000,77,0,-1.000000,1785.760000,baseline,lora,180 +on8,0,0,24,1,0,2582,4320.000000,77,0,57240.000000,1782.400000,baseline,lora,180 +on6,0,0,24,1,0,736,4320.000000,77,0,16396.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,77,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4223,4320.000000,77,0,-1.000000,1754.720000,baseline,lora,180 +on3,0,0,24,0,0,4021,4320.000000,77,0,-1.000000,1803.200000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,78,0,-1.000000,2123.360000,baseline,lora,180 +on7,0,0,24,0,0,4072,4320.000000,78,0,-1.000000,1790.080000,baseline,lora,180 +on12,0,0,24,0,0,3978,4320.000000,78,0,-1.000000,1845.600000,baseline,lora,180 +on6,0,0,24,1,0,540,4320.000000,78,0,11046.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4058,4320.000000,78,0,-1.000000,1781.920000,baseline,lora,180 +on10,0,0,24,0,0,3856,4320.000000,78,0,-1.000000,1813.920000,baseline,lora,180 +on1,0,0,24,0,0,4181,4320.000000,78,0,-1.000000,1750.400000,baseline,lora,180 +on2,0,0,24,1,0,1586,4320.000000,78,0,33965.000000,1759.200000,baseline,lora,180 +on3,0,0,24,1,0,2340,4320.000000,78,0,50204.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4109,4320.000000,78,0,-1.000000,1785.600000,baseline,lora,180 +on5,0,0,24,0,0,4064,4320.000000,78,0,-1.000000,1769.280000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4307,4320.000000,78,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4303,4320.000000,79,0,-1.000000,1730.880000,baseline,lora,180 +on10,0,0,24,0,0,4250,4320.000000,79,0,-1.000000,1756.640000,baseline,lora,180 +on1,0,0,24,0,0,4181,4320.000000,79,0,-1.000000,1750.560000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,79,0,-1.000000,2096.160000,baseline,lora,180 +on3,0,0,24,0,0,4143,4320.000000,79,0,-1.000000,1768.000000,baseline,lora,180 +on9,0,0,24,1,0,3328,4320.000000,79,0,69827.000000,1771.360000,baseline,lora,180 +on2,0,0,24,0,0,4026,4320.000000,79,0,-1.000000,1808.320000,baseline,lora,180 +on5,0,0,24,0,0,4177,4320.000000,79,0,-1.000000,1781.920000,baseline,lora,180 +on8,0,0,24,0,0,4096,4320.000000,79,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4087,4320.000000,79,0,-1.000000,1795.680000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,79,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4086,4320.000000,79,0,-1.000000,1765.760000,baseline,lora,180 +on11,0,0,24,1,0,3647,4320.000000,79,0,79898.000000,1818.240000,baseline,lora,180 +on11,0,0,24,0,0,3724,4320.000000,80,0,-1.000000,1832.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,80,0,-1.000000,2087.680000,baseline,lora,180 +on12,0,0,24,0,0,4111,4320.000000,80,0,-1.000000,1776.480000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,80,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,1,0,1381,4320.000000,80,0,30967.000000,1782.400000,baseline,lora,180 +on8,0,0,24,0,0,3878,4320.000000,80,0,-1.000000,1865.440000,baseline,lora,180 +on7,0,0,24,0,0,4242,4320.000000,80,0,-1.000000,1740.640000,baseline,lora,180 +on3,0,0,24,0,0,4278,4320.000000,80,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4118,4320.000000,80,0,-1.000000,1763.200000,baseline,lora,180 +on6,0,0,24,0,0,4260,4320.000000,80,0,-1.000000,1737.760000,baseline,lora,180 +on10,0,0,24,0,0,4229,4320.000000,80,0,-1.000000,1784.160000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,80,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,1,0,2407,4320.000000,80,0,51442.000000,1773.280000,baseline,lora,180 +on3,0,0,24,0,0,4136,4320.000000,81,0,-1.000000,1764.320000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,3954,4320.000000,81,0,-1.000000,1807.200000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4095,4320.000000,81,0,-1.000000,1782.400000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,81,0,-1.000000,2007.840000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4147,4320.000000,81,0,-1.000000,1778.080000,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,4191,4320.000000,81,0,-1.000000,1748.800000,baseline,lora,180 +on10,0,0,24,0,0,3747,4320.000000,81,0,-1.000000,1825.440000,baseline,lora,180 +on11,0,0,24,0,0,4239,4320.000000,81,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4115,4320.000000,82,0,-1.000000,1769.760000,baseline,lora,180 +on4,0,0,24,0,0,4091,4320.000000,82,0,-1.000000,1773.280000,baseline,lora,180 +on11,0,0,24,0,0,4246,4320.000000,82,0,-1.000000,1740.000000,baseline,lora,180 +on8,0,0,24,0,0,4299,4320.000000,82,0,-1.000000,1731.520000,baseline,lora,180 +on2,0,0,24,0,0,4231,4320.000000,82,0,-1.000000,1742.400000,baseline,lora,180 +on12,0,0,24,0,0,4307,4320.000000,82,0,-1.000000,1730.400000,baseline,lora,180 +on6,0,0,24,0,0,3902,4320.000000,82,0,-1.000000,1810.720000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,82,0,-1.000000,2031.680000,baseline,lora,180 +on1,0,0,24,0,0,4066,4320.000000,82,0,-1.000000,1782.880000,baseline,lora,180 +on5,0,0,24,1,0,1832,4320.000000,82,0,42668.000000,1783.040000,baseline,lora,180 +on7,0,0,24,0,0,4205,4320.000000,82,0,-1.000000,1746.560000,baseline,lora,180 +on10,0,0,24,0,0,4280,4320.000000,82,0,-1.000000,1734.720000,baseline,lora,180 +on3,0,0,24,0,0,4222,4320.000000,82,0,-1.000000,1743.840000,baseline,lora,180 +on6,0,0,24,0,0,4204,4320.000000,83,0,-1.000000,1773.440000,baseline,lora,180 +on3,0,0,24,0,0,4301,4320.000000,83,0,-1.000000,1737.280000,baseline,lora,180 +on1,0,0,24,0,0,4227,4320.000000,83,0,-1.000000,1743.200000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,83,0,-1.000000,2023.040000,baseline,lora,180 +on9,0,0,24,0,0,4077,4320.000000,83,0,-1.000000,1798.400000,baseline,lora,180 +on12,0,0,24,0,0,4267,4320.000000,83,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4314,4320.000000,83,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,3797,4320.000000,83,0,-1.000000,1817.120000,baseline,lora,180 +on10,0,0,24,0,0,4274,4320.000000,83,0,-1.000000,1735.520000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,83,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,1,0,995,4320.000000,83,0,22123.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4092,4320.000000,83,0,-1.000000,1764.960000,baseline,lora,180 +on4,0,0,24,0,0,4081,4320.000000,83,0,-1.000000,1766.560000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4124,4320.000000,84,0,-1.000000,1760.480000,baseline,lora,180 +on6,0,0,24,0,0,3948,4320.000000,84,0,-1.000000,1812.160000,baseline,lora,180 +on5,0,0,24,0,0,4260,4320.000000,84,0,-1.000000,1737.760000,baseline,lora,180 +on12,0,0,24,0,0,4212,4320.000000,84,0,-1.000000,1752.000000,baseline,lora,180 +on11,0,0,24,0,0,4277,4320.000000,84,0,-1.000000,1775.040000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4001,4320.000000,84,0,-1.000000,1787.520000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,84,0,-1.000000,2058.880000,baseline,lora,180 +on8,0,0,24,0,0,3875,4320.000000,84,0,-1.000000,1832.320000,baseline,lora,180 +on7,0,0,24,0,0,4014,4320.000000,84,0,-1.000000,1810.080000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,1,0,1767,4320.000000,84,0,38551.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4144,4320.000000,85,0,-1.000000,1763.680000,baseline,lora,180 +on11,0,0,24,0,0,3958,4320.000000,85,0,-1.000000,1831.200000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,85,0,-1.000000,2014.880000,baseline,lora,180 +on4,0,0,24,0,0,4287,4320.000000,85,0,-1.000000,1759.200000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,2341,4320.000000,85,0,48426.000000,1753.600000,baseline,lora,180 +on10,0,0,24,1,0,370,4320.000000,85,0,7760.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,1,0,3704,4320.000000,85,0,75784.000000,1786.880000,baseline,lora,180 +on8,0,0,24,0,0,4183,4320.000000,85,0,-1.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4157,4320.000000,85,0,-1.000000,1814.400000,baseline,lora,180 +on9,0,0,24,0,0,4114,4320.000000,85,0,-1.000000,1779.360000,baseline,lora,180 +on3,0,0,24,0,0,4179,4320.000000,85,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4296,4320.000000,86,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4197,4320.000000,86,0,-1.000000,1769.600000,baseline,lora,180 +on11,0,0,24,0,0,4158,4320.000000,86,0,-1.000000,1754.240000,baseline,lora,180 +on8,0,0,24,0,0,4319,4320.000000,86,0,-1.000000,1752.000000,baseline,lora,180 +on10,0,0,24,0,0,4222,4320.000000,86,0,-1.000000,1762.720000,baseline,lora,180 +on12,0,0,24,0,0,4225,4320.000000,86,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4249,4320.000000,86,0,-1.000000,1739.680000,baseline,lora,180 +on4,0,0,24,0,0,4274,4320.000000,86,0,-1.000000,1735.680000,baseline,lora,180 +on7,0,0,24,0,0,4218,4320.000000,86,0,-1.000000,1744.640000,baseline,lora,180 +on6,0,0,24,0,0,4108,4320.000000,86,0,-1.000000,1776.000000,baseline,lora,180 +on1,0,0,24,1,0,2887,4320.000000,86,0,61651.000000,1783.840000,baseline,lora,180 +on9,0,0,24,0,0,4048,4320.000000,86,0,-1.000000,1795.680000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,86,0,-1.000000,1980.160000,baseline,lora,180 +on12,0,0,24,0,0,4175,4320.000000,87,0,-1.000000,1751.360000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,87,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4226,4320.000000,87,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,87,0,-1.000000,2008.160000,baseline,lora,180 +on7,0,0,24,0,0,3835,4320.000000,87,0,-1.000000,1814.720000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,87,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4260,4320.000000,87,0,-1.000000,1737.760000,baseline,lora,180 +on8,0,0,24,1,0,2520,4320.000000,87,0,53694.000000,1753.600000,baseline,lora,180 +on9,0,0,24,1,0,3894,4320.000000,87,0,79900.000000,1767.360000,baseline,lora,180 +on10,0,0,24,0,0,4301,4320.000000,87,0,-1.000000,1751.200000,baseline,lora,180 +on11,0,0,24,0,0,4209,4320.000000,87,0,-1.000000,1785.600000,baseline,lora,180 +on6,0,0,24,0,0,4062,4320.000000,87,0,-1.000000,1776.640000,baseline,lora,180 +on5,0,0,24,1,0,3795,4320.000000,87,0,75936.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,1,0,1837,4320.000000,88,0,40522.000000,1782.400000,baseline,lora,180 +on1,0,0,24,0,0,4171,4320.000000,88,0,-1.000000,1782.400000,baseline,lora,180 +on7,0,0,24,0,0,4181,4320.000000,88,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4062,4320.000000,88,0,-1.000000,1783.840000,baseline,lora,180 +on6,0,0,24,0,0,4065,4320.000000,88,0,-1.000000,1778.880000,baseline,lora,180 +on2,0,0,24,0,0,4027,4320.000000,88,0,-1.000000,1779.840000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,88,0,-1.000000,2110.240000,baseline,lora,180 +on8,0,0,24,1,0,3906,4320.000000,88,0,85030.000000,1802.720000,baseline,lora,180 +on4,0,0,24,0,0,4170,4320.000000,88,0,-1.000000,1754.560000,baseline,lora,180 +on12,0,0,24,0,0,4238,4320.000000,88,0,-1.000000,1791.200000,baseline,lora,180 +on3,0,0,24,1,0,2362,4320.000000,88,0,51178.000000,1794.880000,baseline,lora,180 +on11,0,0,24,0,0,4292,4320.000000,88,0,-1.000000,1732.640000,baseline,lora,180 +on4,0,0,24,0,0,4295,4320.000000,89,0,-1.000000,1732.320000,baseline,lora,180 +on2,0,0,24,0,0,3921,4320.000000,89,0,-1.000000,1811.840000,baseline,lora,180 +on10,0,0,24,0,0,4228,4320.000000,89,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4217,4320.000000,89,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,3817,4320.000000,89,0,80243.000000,1778.400000,baseline,lora,180 +on12,0,0,24,0,0,4190,4320.000000,89,0,-1.000000,1748.960000,baseline,lora,180 +on3,0,0,24,1,0,180,4320.000000,89,0,6338.000000,1753.600000,baseline,lora,180 +on11,0,0,24,1,0,0,4320.000000,89,0,3127.000000,1753.600000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,89,0,-1.000000,2013.280000,baseline,lora,180 +on9,0,0,24,0,0,4213,4320.000000,89,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4253,4320.000000,89,0,-1.000000,1739.040000,baseline,lora,180 +on1,0,0,24,0,0,4207,4320.000000,89,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4224,4320.000000,89,0,-1.000000,1768.640000,baseline,lora,180 +on2,0,0,24,1,0,3137,4320.000000,90,0,65544.000000,1772.160000,baseline,lora,180 +on3,0,0,24,1,0,3761,4320.000000,90,0,77145.000000,1771.840000,baseline,lora,180 +on7,0,0,24,1,0,364,4320.000000,90,0,10635.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4201,4320.000000,90,0,-1.000000,1749.280000,baseline,lora,180 +on5,0,0,24,1,0,1297,4320.000000,90,0,30753.000000,1792.800000,baseline,lora,180 +on11,0,0,24,0,0,4156,4320.000000,90,0,-1.000000,1754.720000,baseline,lora,180 +on12,0,0,24,0,0,4054,4320.000000,90,0,-1.000000,1779.840000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,90,0,-1.000000,2066.560000,baseline,lora,180 +on6,0,0,24,0,0,4176,4320.000000,90,0,-1.000000,1775.520000,baseline,lora,180 +on10,0,0,24,0,0,4191,4320.000000,90,0,-1.000000,1768.800000,baseline,lora,180 +on9,0,0,24,0,0,4301,4320.000000,90,0,-1.000000,1740.000000,baseline,lora,180 +on8,0,0,24,0,0,4148,4320.000000,90,0,-1.000000,1766.240000,baseline,lora,180 +on4,0,0,24,0,0,4169,4320.000000,90,0,-1.000000,1785.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,91,0,-1.000000,2042.240000,baseline,lora,180 +on7,0,0,24,0,0,4160,4320.000000,91,0,-1.000000,1769.440000,baseline,lora,180 +on11,0,0,24,0,0,4196,4320.000000,91,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,1,0,2586,4320.000000,91,0,55454.000000,1782.400000,baseline,lora,180 +on2,0,0,24,0,0,4319,4320.000000,91,0,-1.000000,1745.280000,baseline,lora,180 +on4,0,0,24,0,0,4208,4320.000000,91,0,-1.000000,1746.080000,baseline,lora,180 +on6,0,0,24,0,0,4314,4320.000000,91,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,3963,4320.000000,91,0,-1.000000,1802.560000,baseline,lora,180 +on8,0,0,24,0,0,4047,4320.000000,91,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4039,4320.000000,91,0,-1.000000,1773.280000,baseline,lora,180 +on5,0,0,24,0,0,4099,4320.000000,91,0,-1.000000,1763.840000,baseline,lora,180 +on10,0,0,24,0,0,4186,4320.000000,91,0,-1.000000,1769.120000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,91,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,92,0,-1.000000,2051.200000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4100,4320.000000,92,0,-1.000000,1816.800000,baseline,lora,180 +on8,0,0,24,0,0,4070,4320.000000,92,0,-1.000000,1809.120000,baseline,lora,180 +on7,0,0,24,0,0,4109,4320.000000,92,0,-1.000000,1762.240000,baseline,lora,180 +on10,0,0,24,1,0,1708,4320.000000,92,0,37211.000000,1769.600000,baseline,lora,180 +on1,0,0,24,1,0,3507,4320.000000,92,0,76555.000000,1797.760000,baseline,lora,180 +on5,0,0,24,0,0,4215,4320.000000,92,0,-1.000000,1744.960000,baseline,lora,180 +on9,0,0,24,1,0,3108,4320.000000,92,0,66379.000000,1775.040000,baseline,lora,180 +on2,0,0,24,0,0,4216,4320.000000,92,0,-1.000000,1762.880000,baseline,lora,180 +on3,0,0,24,0,0,4301,4320.000000,92,0,-1.000000,1733.280000,baseline,lora,180 +on4,0,0,24,0,0,4214,4320.000000,92,0,-1.000000,1745.120000,baseline,lora,180 +on10,0,0,24,0,0,4216,4320.000000,93,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4280,4320.000000,93,0,-1.000000,1734.560000,baseline,lora,180 +on1,0,0,24,0,0,4124,4320.000000,93,0,-1.000000,1770.240000,baseline,lora,180 +on4,0,0,24,1,0,3694,4320.000000,93,0,78577.000000,1782.400000,baseline,lora,180 +on6,0,0,24,0,0,4312,4320.000000,93,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4161,4320.000000,93,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4035,4320.000000,93,0,-1.000000,1796.640000,baseline,lora,180 +on11,0,0,24,1,0,3746,4320.000000,93,0,80072.000000,1788.800000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,93,0,-1.000000,2057.760000,baseline,lora,180 +on9,0,0,24,0,0,4067,4320.000000,93,0,-1.000000,1811.680000,baseline,lora,180 +on12,0,0,24,0,0,4202,4320.000000,93,0,-1.000000,1757.440000,baseline,lora,180 +on2,0,0,24,0,0,4155,4320.000000,93,0,-1.000000,1755.680000,baseline,lora,180 +on5,0,0,24,0,0,4235,4320.000000,93,0,-1.000000,1768.640000,baseline,lora,180 +on5,0,0,24,1,0,1201,4320.000000,94,0,28034.000000,1766.240000,baseline,lora,180 +on1,0,0,24,0,0,4168,4320.000000,94,0,-1.000000,1764.000000,baseline,lora,180 +on6,0,0,24,0,0,4170,4320.000000,94,0,-1.000000,1772.480000,baseline,lora,180 +on11,0,0,24,0,0,4060,4320.000000,94,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4319,4320.000000,94,0,-1.000000,1728.320000,baseline,lora,180 +on12,0,0,24,0,0,4264,4320.000000,94,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4240,4320.000000,94,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,1,0,1997,4320.000000,94,0,40400.000000,1753.760000,baseline,lora,180 +on7,0,0,24,1,0,4159,4320.000000,94,0,84895.000000,1753.600000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,94,0,-1.000000,1966.560000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4227,4320.000000,94,0,-1.000000,1743.200000,baseline,lora,180 +on10,0,0,24,0,0,4194,4320.000000,94,0,-1.000000,1761.920000,baseline,lora,180 +on7,0,0,24,0,0,3953,4320.000000,95,0,-1.000000,1798.240000,baseline,lora,180 +on9,0,0,24,0,0,3923,4320.000000,95,0,-1.000000,1809.920000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,95,0,-1.000000,2047.680000,baseline,lora,180 +on2,0,0,24,0,0,4303,4320.000000,95,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4300,4320.000000,95,0,-1.000000,1731.360000,baseline,lora,180 +on4,0,0,24,1,0,3594,4320.000000,95,0,76588.000000,1826.720000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4069,4320.000000,95,0,-1.000000,1782.080000,baseline,lora,180 +on12,0,0,24,0,0,3999,4320.000000,95,0,-1.000000,1799.520000,baseline,lora,180 +on10,0,0,24,0,0,4261,4320.000000,95,0,-1.000000,1737.600000,baseline,lora,180 +on3,0,0,24,0,0,4181,4320.000000,95,0,-1.000000,1750.400000,baseline,lora,180 +on8,0,0,24,0,0,4260,4320.000000,95,0,-1.000000,1745.920000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,1,0,2880,4320.000000,96,0,57949.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4235,4320.000000,96,0,-1.000000,1741.760000,baseline,lora,180 +on4,0,0,24,0,0,4235,4320.000000,96,0,-1.000000,1768.960000,baseline,lora,180 +on7,0,0,24,0,0,4062,4320.000000,96,0,-1.000000,1791.360000,baseline,lora,180 +on10,0,0,24,0,0,4270,4320.000000,96,0,-1.000000,1736.480000,baseline,lora,180 +on12,0,0,24,0,0,4021,4320.000000,96,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4175,4320.000000,96,0,-1.000000,1771.040000,baseline,lora,180 +on3,0,0,24,0,0,4177,4320.000000,96,0,-1.000000,1767.520000,baseline,lora,180 +on5,0,0,24,0,0,4158,4320.000000,96,0,-1.000000,1774.880000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,96,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,96,0,-1.000000,1992.480000,baseline,lora,180 +on2,0,0,24,0,0,4172,4320.000000,96,0,-1.000000,1789.760000,baseline,lora,180 +on11,0,0,24,0,0,4225,4320.000000,96,0,-1.000000,1743.520000,baseline,lora,180 +on2,0,0,24,0,0,4142,4320.000000,97,0,-1.000000,1763.680000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,1,0,360,4320.000000,97,0,8775.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4050,4320.000000,97,0,-1.000000,1805.760000,baseline,lora,180 +on10,0,0,24,1,0,3432,4320.000000,97,0,70029.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4040,4320.000000,97,0,-1.000000,1797.760000,baseline,lora,180 +on1,0,0,24,0,0,4099,4320.000000,97,0,-1.000000,1796.960000,baseline,lora,180 +on11,0,0,24,0,0,4169,4320.000000,97,0,-1.000000,1787.200000,baseline,lora,180 +on8,0,0,24,0,0,4189,4320.000000,97,0,-1.000000,1773.920000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,97,0,-1.000000,2046.720000,baseline,lora,180 +on9,0,0,24,1,0,3566,4320.000000,97,0,73635.000000,1759.200000,baseline,lora,180 +on12,0,0,24,0,0,4093,4320.000000,97,0,-1.000000,1764.640000,baseline,lora,180 +on12,0,0,24,0,0,4002,4320.000000,98,0,-1.000000,1779.360000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,98,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4161,4320.000000,98,0,-1.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4088,4320.000000,98,0,-1.000000,1774.880000,baseline,lora,180 +on6,0,0,24,0,0,4190,4320.000000,98,0,-1.000000,1788.480000,baseline,lora,180 +on7,0,0,24,1,0,2922,4320.000000,98,0,61986.000000,1793.920000,baseline,lora,180 +on3,0,0,24,0,0,4097,4320.000000,98,0,-1.000000,1764.160000,baseline,lora,180 +on1,0,0,24,0,0,4169,4320.000000,98,0,-1.000000,1769.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,98,0,-1.000000,2077.280000,baseline,lora,180 +on11,0,0,24,0,0,4177,4320.000000,98,0,-1.000000,1751.040000,baseline,lora,180 +on8,0,0,24,0,0,3872,4320.000000,98,0,-1.000000,1833.760000,baseline,lora,180 +on2,0,0,24,0,0,4270,4320.000000,98,0,-1.000000,1736.160000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,98,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4216,4320.000000,99,0,-1.000000,1744.800000,baseline,lora,180 +on4,0,0,24,0,0,4190,4320.000000,99,0,-1.000000,1758.400000,baseline,lora,180 +on6,0,0,24,0,0,4178,4320.000000,99,0,-1.000000,1782.560000,baseline,lora,180 +on8,0,0,24,1,0,911,4320.000000,99,0,20343.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4267,4320.000000,99,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4184,4320.000000,99,0,-1.000000,1750.080000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,99,0,-1.000000,1992.800000,baseline,lora,180 +on7,0,0,24,1,0,4140,4320.000000,99,0,85309.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4089,4320.000000,99,0,-1.000000,1799.520000,baseline,lora,180 +on11,0,0,24,0,0,4047,4320.000000,99,0,-1.000000,1780.640000,baseline,lora,180 +on1,0,0,24,0,0,4218,4320.000000,99,0,-1.000000,1747.520000,baseline,lora,180 +on12,0,0,24,0,0,4172,4320.000000,99,0,-1.000000,1751.840000,baseline,lora,180 +on2,0,0,24,1,0,3052,4320.000000,100,0,66427.000000,1793.120000,baseline,lora,180 +on1,0,0,24,0,0,4250,4320.000000,100,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4054,4320.000000,100,0,-1.000000,1788.960000,baseline,lora,180 +on7,0,0,24,0,0,4171,4320.000000,100,0,-1.000000,1752.160000,baseline,lora,180 +on4,0,0,24,0,0,4301,4320.000000,100,0,-1.000000,1751.840000,baseline,lora,180 +on6,0,0,24,1,0,861,4320.000000,100,0,18452.000000,1782.400000,baseline,lora,180 +on3,0,0,24,1,0,3538,4320.000000,100,0,79172.000000,1793.760000,baseline,lora,180 +on11,0,0,24,0,0,4094,4320.000000,100,0,-1.000000,1815.840000,baseline,lora,180 +on9,0,0,24,0,0,4163,4320.000000,100,0,-1.000000,1796.160000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,100,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4044,4320.000000,100,0,-1.000000,1776.640000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,100,0,-1.000000,2090.720000,baseline,lora,180 +on8,0,0,24,0,0,4201,4320.000000,100,0,-1.000000,1747.840000,baseline,lora,180 +on4,0,0,24,0,0,4239,4320.000000,101,0,-1.000000,1741.280000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,101,0,-1.000000,1972.000000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,1,0,3259,4320.000000,101,0,67368.000000,1753.760000,baseline,lora,180 +on12,0,0,24,0,0,3881,4320.000000,101,0,-1.000000,1837.440000,baseline,lora,180 +on7,0,0,24,0,0,4239,4320.000000,101,0,-1.000000,1741.280000,baseline,lora,180 +on11,0,0,24,0,0,4068,4320.000000,101,0,-1.000000,1768.640000,baseline,lora,180 +on9,0,0,24,0,0,4244,4320.000000,101,0,-1.000000,1759.200000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,1,0,1866,4320.000000,101,0,39968.000000,1772.480000,baseline,lora,180 +on10,0,0,24,0,0,4265,4320.000000,101,0,-1.000000,1759.840000,baseline,lora,180 +on5,0,0,24,0,0,4234,4320.000000,101,0,-1.000000,1741.920000,baseline,lora,180 +on3,0,0,24,0,0,4217,4320.000000,102,0,-1.000000,1771.520000,baseline,lora,180 +on1,0,0,24,0,0,4250,4320.000000,102,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4171,4320.000000,102,0,-1.000000,1762.880000,baseline,lora,180 +on9,0,0,24,0,0,4124,4320.000000,102,0,-1.000000,1784.960000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,102,0,-1.000000,2030.080000,baseline,lora,180 +on10,0,0,24,0,0,4142,4320.000000,102,0,-1.000000,1779.680000,baseline,lora,180 +on8,0,0,24,0,0,4177,4320.000000,102,0,-1.000000,1751.040000,baseline,lora,180 +on11,0,0,24,0,0,4264,4320.000000,102,0,-1.000000,1737.280000,baseline,lora,180 +on7,0,0,24,0,0,3962,4320.000000,102,0,-1.000000,1798.400000,baseline,lora,180 +on12,0,0,24,0,0,3856,4320.000000,102,0,-1.000000,1824.960000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4172,4320.000000,102,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4254,4320.000000,103,0,-1.000000,1778.080000,baseline,lora,180 +on7,0,0,24,0,0,4253,4320.000000,103,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,1,0,3826,4320.000000,103,0,80984.000000,1777.440000,baseline,lora,180 +on3,0,0,24,0,0,4214,4320.000000,103,0,-1.000000,1745.120000,baseline,lora,180 +on12,0,0,24,0,0,4231,4320.000000,103,0,-1.000000,1742.400000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,103,0,-1.000000,1964.960000,baseline,lora,180 +on4,0,0,24,0,0,4259,4320.000000,103,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4095,4320.000000,103,0,-1.000000,1810.560000,baseline,lora,180 +on9,0,0,24,1,0,0,4320.000000,103,0,1101.000000,1753.600000,baseline,lora,180 +on11,0,0,24,1,0,1392,4320.000000,103,0,30627.000000,1785.280000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,1,0,3423,4320.000000,103,0,68722.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4072,4320.000000,104,0,-1.000000,1769.440000,baseline,lora,180 +on2,0,0,24,0,0,3851,4320.000000,104,0,-1.000000,1835.520000,baseline,lora,180 +on9,0,0,24,0,0,4282,4320.000000,104,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,197,4320.000000,104,0,3881.000000,1753.600000,baseline,lora,180 +on5,0,0,24,1,0,3080,4320.000000,104,0,67713.000000,1790.560000,baseline,lora,180 +on7,0,0,24,1,0,3672,4320.000000,104,0,75801.000000,1771.040000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,104,0,-1.000000,2116.160000,baseline,lora,180 +on4,0,0,24,0,0,4203,4320.000000,104,0,-1.000000,1765.920000,baseline,lora,180 +on10,0,0,24,0,0,4219,4320.000000,104,0,-1.000000,1744.320000,baseline,lora,180 +on11,0,0,24,0,0,4276,4320.000000,104,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4019,4320.000000,104,0,-1.000000,1796.320000,baseline,lora,180 +on1,0,0,24,0,0,3991,4320.000000,104,0,-1.000000,1793.760000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,1,0,1681,4320.000000,105,0,37902.000000,1782.400000,baseline,lora,180 +on2,0,0,24,0,0,4124,4320.000000,105,0,-1.000000,1780.000000,baseline,lora,180 +on9,0,0,24,0,0,4065,4320.000000,105,0,-1.000000,1769.120000,baseline,lora,180 +on1,0,0,24,0,0,4082,4320.000000,105,0,-1.000000,1782.560000,baseline,lora,180 +on3,0,0,24,0,0,4127,4320.000000,105,0,-1.000000,1777.760000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,105,0,-1.000000,1994.720000,baseline,lora,180 +on5,0,0,24,0,0,4297,4320.000000,105,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4148,4320.000000,105,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,1,0,2959,4320.000000,105,0,63251.000000,1771.520000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4301,4320.000000,105,0,-1.000000,1744.000000,baseline,lora,180 +on12,0,0,24,0,0,4316,4320.000000,105,0,-1.000000,1743.200000,baseline,lora,180 +on4,0,0,24,0,0,4034,4320.000000,106,0,-1.000000,1818.560000,baseline,lora,180 +on7,0,0,24,0,0,4160,4320.000000,106,0,-1.000000,1774.880000,baseline,lora,180 +on12,0,0,24,0,0,4304,4320.000000,106,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4123,4320.000000,106,0,-1.000000,1784.640000,baseline,lora,180 +on6,0,0,24,0,0,4162,4320.000000,106,0,-1.000000,1753.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,106,0,-1.000000,2045.760000,baseline,lora,180 +on3,0,0,24,0,0,4216,4320.000000,106,0,-1.000000,1760.800000,baseline,lora,180 +on11,0,0,24,0,0,4179,4320.000000,106,0,-1.000000,1782.080000,baseline,lora,180 +on1,0,0,24,1,0,559,4320.000000,106,0,13870.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4284,4320.000000,106,0,-1.000000,1757.280000,baseline,lora,180 +on9,0,0,24,0,0,4033,4320.000000,106,0,-1.000000,1778.880000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,1,0,2626,4320.000000,106,0,58415.000000,1794.720000,baseline,lora,180 +on10,0,0,24,0,0,4243,4320.000000,107,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4003,4320.000000,107,0,-1.000000,1779.360000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,107,0,-1.000000,2007.040000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,2694,4320.000000,107,0,55653.000000,1755.200000,baseline,lora,180 +on6,0,0,24,0,0,4071,4320.000000,107,0,-1.000000,1795.200000,baseline,lora,180 +on11,0,0,24,0,0,4177,4320.000000,107,0,-1.000000,1751.200000,baseline,lora,180 +on5,0,0,24,1,0,363,4320.000000,107,0,8766.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4056,4320.000000,107,0,-1.000000,1770.560000,baseline,lora,180 +on8,0,0,24,1,0,2160,4320.000000,107,0,46046.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4219,4320.000000,107,0,-1.000000,1744.320000,baseline,lora,180 +on12,0,0,24,0,0,4233,4320.000000,107,0,-1.000000,1759.680000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,108,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,1,0,2631,4320.000000,108,0,56697.000000,1765.280000,baseline,lora,180 +on2,0,0,24,1,0,1080,4320.000000,108,0,24541.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4239,4320.000000,108,0,-1.000000,1766.560000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,108,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4172,4320.000000,108,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4213,4320.000000,108,0,-1.000000,1770.560000,baseline,lora,180 +on10,0,0,24,0,0,4187,4320.000000,108,0,-1.000000,1749.440000,baseline,lora,180 +on5,0,0,24,0,0,4090,4320.000000,108,0,-1.000000,1813.440000,baseline,lora,180 +on7,0,0,24,0,0,4065,4320.000000,108,0,-1.000000,1784.160000,baseline,lora,180 +on4,0,0,24,1,0,3240,4320.000000,108,0,67203.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4114,4320.000000,108,0,-1.000000,1804.960000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,108,0,-1.000000,2004.800000,baseline,lora,180 +on10,0,0,24,0,0,4190,4320.000000,109,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4050,4320.000000,109,0,-1.000000,1775.680000,baseline,lora,180 +on7,0,0,24,0,0,4268,4320.000000,109,0,-1.000000,1748.000000,baseline,lora,180 +on6,0,0,24,0,0,4200,4320.000000,109,0,-1.000000,1750.240000,baseline,lora,180 +on2,0,0,24,1,0,1260,4320.000000,109,0,26515.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4125,4320.000000,109,0,-1.000000,1760.480000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,109,0,-1.000000,2042.880000,baseline,lora,180 +on11,0,0,24,0,0,4024,4320.000000,109,0,-1.000000,1779.040000,baseline,lora,180 +on3,0,0,24,0,0,4047,4320.000000,109,0,-1.000000,1772.160000,baseline,lora,180 +on4,0,0,24,0,0,4204,4320.000000,109,0,-1.000000,1762.400000,baseline,lora,180 +on9,0,0,24,1,0,547,4320.000000,109,0,13368.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4145,4320.000000,109,0,-1.000000,1779.040000,baseline,lora,180 +on12,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,110,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,1,0,3336,4320.000000,110,0,71875.000000,1767.360000,baseline,lora,180 +on12,0,0,24,0,0,4126,4320.000000,110,0,-1.000000,1780.640000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,110,0,-1.000000,2033.600000,baseline,lora,180 +on5,0,0,24,1,0,3909,4320.000000,110,0,83716.000000,1816.640000,baseline,lora,180 +on8,0,0,24,0,0,4234,4320.000000,110,0,-1.000000,1741.920000,baseline,lora,180 +on7,0,0,24,0,0,4035,4320.000000,110,0,-1.000000,1796.960000,baseline,lora,180 +on3,0,0,24,0,0,4290,4320.000000,110,0,-1.000000,1733.120000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4152,4320.000000,110,0,-1.000000,1798.400000,baseline,lora,180 +on2,0,0,24,0,0,4072,4320.000000,110,0,-1.000000,1795.360000,baseline,lora,180 +on11,0,0,24,0,0,4310,4320.000000,110,0,-1.000000,1729.760000,baseline,lora,180 +on9,0,0,24,0,0,4090,4320.000000,110,0,-1.000000,1782.240000,baseline,lora,180 +on2,0,0,24,0,0,4256,4320.000000,111,0,-1.000000,1738.400000,baseline,lora,180 +on8,0,0,24,0,0,4243,4320.000000,111,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,111,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4248,4320.000000,111,0,-1.000000,1762.560000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,111,0,-1.000000,1992.960000,baseline,lora,180 +on6,0,0,24,0,0,4253,4320.000000,111,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4189,4320.000000,111,0,-1.000000,1776.800000,baseline,lora,180 +on9,0,0,24,0,0,4177,4320.000000,111,0,-1.000000,1779.680000,baseline,lora,180 +on5,0,0,24,0,0,4301,4320.000000,111,0,-1.000000,1732.800000,baseline,lora,180 +on11,0,0,24,1,0,905,4320.000000,111,0,18774.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,3870,4320.000000,111,0,-1.000000,1813.920000,baseline,lora,180 +on1,0,0,24,0,0,4168,4320.000000,111,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,1,0,1128,4320.000000,111,0,27786.000000,1782.400000,baseline,lora,180 +on4,0,0,24,0,0,4209,4320.000000,112,0,-1.000000,1745.920000,baseline,lora,180 +on5,0,0,24,1,0,3221,4320.000000,112,0,65564.000000,1768.800000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,1,0,2881,4320.000000,112,0,58351.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4128,4320.000000,112,0,-1.000000,1771.200000,baseline,lora,180 +on2,0,0,24,0,0,4221,4320.000000,112,0,-1.000000,1744.000000,baseline,lora,180 +on7,0,0,24,0,0,4182,4320.000000,112,0,-1.000000,1750.240000,baseline,lora,180 +on12,0,0,24,0,0,4049,4320.000000,112,0,-1.000000,1824.640000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,112,0,-1.000000,1995.520000,baseline,lora,180 +on8,0,0,24,0,0,3995,4320.000000,112,0,-1.000000,1796.800000,baseline,lora,180 +on9,0,0,24,1,0,2704,4320.000000,112,0,57409.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4298,4320.000000,112,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4173,4320.000000,113,0,-1.000000,1780.000000,baseline,lora,180 +on12,0,0,24,0,0,4244,4320.000000,113,0,-1.000000,1740.480000,baseline,lora,180 +on11,0,0,24,0,0,4103,4320.000000,113,0,-1.000000,1763.040000,baseline,lora,180 +on10,0,0,24,0,0,4186,4320.000000,113,0,-1.000000,1749.600000,baseline,lora,180 +on3,0,0,24,0,0,4220,4320.000000,113,0,-1.000000,1764.800000,baseline,lora,180 +on7,0,0,24,0,0,4101,4320.000000,113,0,-1.000000,1779.520000,baseline,lora,180 +on5,0,0,24,0,0,4289,4320.000000,113,0,-1.000000,1733.120000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,113,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4245,4320.000000,113,0,-1.000000,1740.160000,baseline,lora,180 +on9,0,0,24,0,0,4236,4320.000000,113,0,-1.000000,1763.680000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,113,0,-1.000000,1959.520000,baseline,lora,180 +on4,0,0,24,1,0,2340,4320.000000,113,0,48740.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4134,4320.000000,113,0,-1.000000,1763.520000,baseline,lora,180 +on5,0,0,24,0,0,4301,4320.000000,114,0,-1.000000,1731.200000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,114,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,3951,4320.000000,114,0,-1.000000,1855.840000,baseline,lora,180 +on7,0,0,24,0,0,4187,4320.000000,114,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,1,0,2537,4320.000000,114,0,52938.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,114,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,1,0,1620,4320.000000,114,0,35756.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4124,4320.000000,114,0,-1.000000,1759.680000,baseline,lora,180 +on6,0,0,24,1,0,3979,4320.000000,114,0,85821.000000,1785.120000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,114,0,-1.000000,2046.240000,baseline,lora,180 +on4,0,0,24,0,0,3994,4320.000000,114,0,-1.000000,1803.680000,baseline,lora,180 +on1,0,0,24,0,0,4174,4320.000000,114,0,-1.000000,1751.840000,baseline,lora,180 +on2,0,0,24,0,0,4189,4320.000000,114,0,-1.000000,1795.200000,baseline,lora,180 +on2,0,0,24,1,0,2480,4320.000000,115,0,52712.000000,1781.920000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,115,0,-1.000000,1984.640000,baseline,lora,180 +on12,0,0,24,0,0,4285,4320.000000,115,0,-1.000000,1747.840000,baseline,lora,180 +on4,0,0,24,0,0,4055,4320.000000,115,0,-1.000000,1796.160000,baseline,lora,180 +on9,0,0,24,0,0,4230,4320.000000,115,0,-1.000000,1808.640000,baseline,lora,180 +on8,0,0,24,1,0,840,4320.000000,115,0,20674.000000,1765.760000,baseline,lora,180 +on1,0,0,24,0,0,4048,4320.000000,115,0,-1.000000,1843.200000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4269,4320.000000,115,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4196,4320.000000,115,0,-1.000000,1748.000000,baseline,lora,180 +on3,0,0,24,0,0,4122,4320.000000,115,0,-1.000000,1760.000000,baseline,lora,180 +on5,0,0,24,0,0,4220,4320.000000,115,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4092,4320.000000,116,0,-1.000000,1764.800000,baseline,lora,180 +on9,0,0,24,1,0,1965,4320.000000,116,0,40931.000000,1757.280000,baseline,lora,180 +on6,0,0,24,1,0,2850,4320.000000,116,0,63434.000000,1789.600000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,116,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,1466,4320.000000,116,0,33608.000000,1802.400000,baseline,lora,180 +on8,0,0,24,0,0,4230,4320.000000,116,0,-1.000000,1765.440000,baseline,lora,180 +on1,0,0,24,0,0,4275,4320.000000,116,0,-1.000000,1759.840000,baseline,lora,180 +on12,0,0,24,0,0,4182,4320.000000,116,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4210,4320.000000,116,0,-1.000000,1745.760000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,116,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4184,4320.000000,116,0,-1.000000,1765.120000,baseline,lora,180 +on11,0,0,24,1,0,3820,4320.000000,116,0,79479.000000,1778.080000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,116,0,-1.000000,2040.800000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4161,4320.000000,117,0,-1.000000,1765.600000,baseline,lora,180 +on10,0,0,24,0,0,3790,4320.000000,117,0,-1.000000,1843.680000,baseline,lora,180 +on3,0,0,24,0,0,4261,4320.000000,117,0,-1.000000,1737.600000,baseline,lora,180 +on8,0,0,24,0,0,4238,4320.000000,117,0,-1.000000,1741.280000,baseline,lora,180 +on12,0,0,24,0,0,4257,4320.000000,117,0,-1.000000,1749.760000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,117,0,-1.000000,2104.480000,baseline,lora,180 +on5,0,0,24,0,0,4013,4320.000000,117,0,-1.000000,1798.240000,baseline,lora,180 +on1,0,0,24,0,0,4081,4320.000000,117,0,-1.000000,1766.560000,baseline,lora,180 +on2,0,0,24,1,0,3257,4320.000000,117,0,69783.000000,1805.600000,baseline,lora,180 +on6,0,0,24,0,0,4123,4320.000000,117,0,-1.000000,1814.400000,baseline,lora,180 +on9,0,0,24,0,0,4166,4320.000000,117,0,-1.000000,1752.800000,baseline,lora,180 +on7,0,0,24,0,0,4112,4320.000000,117,0,-1.000000,1761.600000,baseline,lora,180 +on1,0,0,24,0,0,3963,4320.000000,118,0,-1.000000,1816.800000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,118,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4209,4320.000000,118,0,-1.000000,1748.320000,baseline,lora,180 +on9,0,0,24,0,0,4147,4320.000000,118,0,-1.000000,1771.040000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,118,0,-1.000000,2044.160000,baseline,lora,180 +on5,0,0,24,1,0,2700,4320.000000,118,0,56733.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4111,4320.000000,118,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4240,4320.000000,118,0,-1.000000,1779.680000,baseline,lora,180 +on10,0,0,24,0,0,4286,4320.000000,118,0,-1.000000,1733.600000,baseline,lora,180 +on3,0,0,24,1,0,2951,4320.000000,118,0,66638.000000,1802.400000,baseline,lora,180 +on11,0,0,24,0,0,4251,4320.000000,118,0,-1.000000,1759.840000,baseline,lora,180 +on12,0,0,24,0,0,4117,4320.000000,118,0,-1.000000,1760.800000,baseline,lora,180 +on2,0,0,24,0,0,4224,4320.000000,118,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4284,4320.000000,119,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4189,4320.000000,119,0,-1.000000,1771.040000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,1,0,1021,4320.000000,119,0,26415.000000,1797.440000,baseline,lora,180 +on9,0,0,24,0,0,3919,4320.000000,119,0,-1.000000,1809.120000,baseline,lora,180 +on6,0,0,24,1,0,2528,4320.000000,119,0,57378.000000,1781.600000,baseline,lora,180 +on3,0,0,24,0,0,4144,4320.000000,119,0,-1.000000,1763.680000,baseline,lora,180 +on8,0,0,24,0,0,4297,4320.000000,119,0,-1.000000,1768.960000,baseline,lora,180 +on12,0,0,24,0,0,4038,4320.000000,119,0,-1.000000,1773.440000,baseline,lora,180 +on4,0,0,24,1,0,4058,4320.000000,119,0,85503.000000,1768.640000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,119,0,-1.000000,2057.440000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4271,4320.000000,120,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4098,4320.000000,120,0,-1.000000,1763.840000,baseline,lora,180 +on10,0,0,24,0,0,4187,4320.000000,120,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4268,4320.000000,120,0,-1.000000,1740.480000,baseline,lora,180 +on8,0,0,24,0,0,4278,4320.000000,120,0,-1.000000,1779.520000,baseline,lora,180 +on1,0,0,24,1,0,2529,4320.000000,120,0,51830.000000,1762.880000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,120,0,-1.000000,1941.600000,baseline,lora,180 +on4,0,0,24,1,0,1356,4320.000000,120,0,31705.000000,1790.720000,baseline,lora,180 +on11,0,0,24,0,0,4196,4320.000000,120,0,-1.000000,1748.000000,baseline,lora,180 +on9,0,0,24,0,0,4219,4320.000000,120,0,-1.000000,1744.320000,baseline,lora,180 +on12,0,0,24,0,0,4257,4320.000000,120,0,-1.000000,1738.240000,baseline,lora,180 +on6,0,0,24,0,0,4193,4320.000000,120,0,-1.000000,1748.480000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,120,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4107,4320.000000,121,0,-1.000000,1798.080000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4212,4320.000000,121,0,-1.000000,1767.520000,baseline,lora,180 +on9,0,0,24,0,0,4236,4320.000000,121,0,-1.000000,1776.960000,baseline,lora,180 +on3,0,0,24,1,0,3395,4320.000000,121,0,73650.000000,1811.200000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4296,4320.000000,121,0,-1.000000,1732.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,121,0,-1.000000,1972.640000,baseline,lora,180 +on12,0,0,24,0,0,4107,4320.000000,121,0,-1.000000,1778.560000,baseline,lora,180 +on6,0,0,24,0,0,4128,4320.000000,121,0,-1.000000,1759.200000,baseline,lora,180 +on1,0,0,24,0,0,4124,4320.000000,121,0,-1.000000,1778.080000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4205,4320.000000,121,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4308,4320.000000,122,0,-1.000000,1745.920000,baseline,lora,180 +on6,0,0,24,0,0,4203,4320.000000,122,0,-1.000000,1752.960000,baseline,lora,180 +on5,0,0,24,0,0,4127,4320.000000,122,0,-1.000000,1814.400000,baseline,lora,180 +on9,0,0,24,0,0,4259,4320.000000,122,0,-1.000000,1737.920000,baseline,lora,180 +on11,0,0,24,1,0,1440,4320.000000,122,0,29210.000000,1753.600000,baseline,lora,180 +on10,0,0,24,1,0,1080,4320.000000,122,0,22718.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,122,0,-1.000000,1978.080000,baseline,lora,180 +on3,0,0,24,0,0,4192,4320.000000,122,0,-1.000000,1789.280000,baseline,lora,180 +on4,0,0,24,1,0,1489,4320.000000,122,0,35542.000000,1774.880000,baseline,lora,180 +on8,0,0,24,0,0,4200,4320.000000,122,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4019,4320.000000,122,0,-1.000000,1797.120000,baseline,lora,180 +on2,0,0,24,0,0,4316,4320.000000,122,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4017,4320.000000,123,0,-1.000000,1802.080000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4074,4320.000000,123,0,-1.000000,1779.360000,baseline,lora,180 +on9,0,0,24,1,0,3976,4320.000000,123,0,85123.000000,1787.840000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,123,0,-1.000000,2026.240000,baseline,lora,180 +on5,0,0,24,0,0,4159,4320.000000,123,0,-1.000000,1754.240000,baseline,lora,180 +on3,0,0,24,1,0,370,4320.000000,123,0,8100.000000,1753.600000,baseline,lora,180 +on1,0,0,24,1,0,3600,4320.000000,123,0,75285.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4225,4320.000000,123,0,-1.000000,1778.080000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4264,4320.000000,123,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,3999,4320.000000,123,0,-1.000000,1816.320000,baseline,lora,180 +on2,0,0,24,0,0,4112,4320.000000,124,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,1,0,1933,4320.000000,124,0,42101.000000,1763.040000,baseline,lora,180 +on8,0,0,24,1,0,2160,4320.000000,124,0,44422.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4168,4320.000000,124,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4292,4320.000000,124,0,-1.000000,1732.640000,baseline,lora,180 +on3,0,0,24,0,0,3976,4320.000000,124,0,-1.000000,1808.000000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,124,0,-1.000000,1990.240000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4139,4320.000000,124,0,-1.000000,1805.760000,baseline,lora,180 +on5,0,0,24,0,0,4146,4320.000000,124,0,-1.000000,1756.160000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,1,0,3060,4320.000000,124,0,62008.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4220,4320.000000,125,0,-1.000000,1783.360000,baseline,lora,180 +on2,0,0,24,0,0,4121,4320.000000,125,0,-1.000000,1760.160000,baseline,lora,180 +on4,0,0,24,0,0,4195,4320.000000,125,0,-1.000000,1763.840000,baseline,lora,180 +on7,0,0,24,0,0,4244,4320.000000,125,0,-1.000000,1764.640000,baseline,lora,180 +on8,0,0,24,1,0,192,4320.000000,125,0,6596.000000,1753.600000,baseline,lora,180 +on3,0,0,24,1,0,720,4320.000000,125,0,15846.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4162,4320.000000,125,0,-1.000000,1772.000000,baseline,lora,180 +on5,0,0,24,1,0,1087,4320.000000,125,0,22553.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4157,4320.000000,125,0,-1.000000,1754.400000,baseline,lora,180 +on11,0,0,24,0,0,3807,4320.000000,125,0,-1.000000,1839.520000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,125,0,-1.000000,2065.760000,baseline,lora,180 +on12,0,0,24,0,0,4173,4320.000000,125,0,-1.000000,1769.920000,baseline,lora,180 +on6,0,0,24,0,0,4190,4320.000000,125,0,-1.000000,1748.960000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4100,4320.000000,126,0,-1.000000,1763.520000,baseline,lora,180 +on6,0,0,24,0,0,4267,4320.000000,126,0,-1.000000,1752.000000,baseline,lora,180 +on9,0,0,24,1,0,1980,4320.000000,126,0,40005.000000,1753.600000,baseline,lora,180 +on7,0,0,24,1,0,1168,4320.000000,126,0,27971.000000,1768.480000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,126,0,-1.000000,1971.360000,baseline,lora,180 +on2,0,0,24,1,0,911,4320.000000,126,0,21075.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4227,4320.000000,126,0,-1.000000,1757.120000,baseline,lora,180 +on11,0,0,24,1,0,2948,4320.000000,126,0,62688.000000,1782.400000,baseline,lora,180 +on8,0,0,24,0,0,4288,4320.000000,126,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4318,4320.000000,126,0,-1.000000,1728.480000,baseline,lora,180 +on12,0,0,24,1,0,2351,4320.000000,126,0,47754.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4216,4320.000000,126,0,-1.000000,1751.040000,baseline,lora,180 +on6,0,0,24,0,0,3928,4320.000000,127,0,-1.000000,1824.480000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,127,0,-1.000000,2084.480000,baseline,lora,180 +on4,0,0,24,0,0,4166,4320.000000,127,0,-1.000000,1805.920000,baseline,lora,180 +on3,0,0,24,0,0,3964,4320.000000,127,0,-1.000000,1836.800000,baseline,lora,180 +on7,0,0,24,0,0,4154,4320.000000,127,0,-1.000000,1754.880000,baseline,lora,180 +on10,0,0,24,0,0,4189,4320.000000,127,0,-1.000000,1769.440000,baseline,lora,180 +on2,0,0,24,0,0,4108,4320.000000,127,0,-1.000000,1762.400000,baseline,lora,180 +on5,0,0,24,0,0,4057,4320.000000,127,0,-1.000000,1770.400000,baseline,lora,180 +on1,0,0,24,0,0,4255,4320.000000,127,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4315,4320.000000,127,0,-1.000000,1728.960000,baseline,lora,180 +on9,0,0,24,1,0,2884,4320.000000,127,0,60635.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4229,4320.000000,127,0,-1.000000,1742.720000,baseline,lora,180 +on11,0,0,24,0,0,4114,4320.000000,127,0,-1.000000,1771.680000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,128,0,-1.000000,1972.000000,baseline,lora,180 +on4,0,0,24,0,0,4232,4320.000000,128,0,-1.000000,1763.680000,baseline,lora,180 +on1,0,0,24,0,0,4128,4320.000000,128,0,-1.000000,1785.600000,baseline,lora,180 +on2,0,0,24,0,0,4232,4320.000000,128,0,-1.000000,1764.000000,baseline,lora,180 +on8,0,0,24,0,0,4282,4320.000000,128,0,-1.000000,1734.240000,baseline,lora,180 +on7,0,0,24,0,0,3943,4320.000000,128,0,-1.000000,1808.000000,baseline,lora,180 +on6,0,0,24,0,0,4300,4320.000000,128,0,-1.000000,1731.360000,baseline,lora,180 +on11,0,0,24,0,0,3958,4320.000000,128,0,-1.000000,1794.400000,baseline,lora,180 +on5,0,0,24,0,0,4227,4320.000000,128,0,-1.000000,1747.040000,baseline,lora,180 +on10,0,0,24,1,0,3152,4320.000000,128,0,65447.000000,1782.400000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4252,4320.000000,129,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,3955,4320.000000,129,0,-1.000000,1808.480000,baseline,lora,180 +on1,0,0,24,1,0,1803,4320.000000,129,0,37555.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4231,4320.000000,129,0,-1.000000,1766.240000,baseline,lora,180 +on10,0,0,24,1,0,736,4320.000000,129,0,17617.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4268,4320.000000,129,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4104,4320.000000,129,0,-1.000000,1771.840000,baseline,lora,180 +on2,0,0,24,0,0,4178,4320.000000,129,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,129,0,-1.000000,2063.360000,baseline,lora,180 +on4,0,0,24,0,0,4129,4320.000000,129,0,-1.000000,1814.400000,baseline,lora,180 +on12,0,0,24,0,0,4278,4320.000000,129,0,-1.000000,1735.040000,baseline,lora,180 +on5,0,0,24,0,0,3891,4320.000000,129,0,-1.000000,1868.320000,baseline,lora,180 +on3,0,0,24,1,0,540,4320.000000,129,0,11622.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4223,4320.000000,130,0,-1.000000,1743.680000,baseline,lora,180 +on8,0,0,24,0,0,4210,4320.000000,130,0,-1.000000,1745.760000,baseline,lora,180 +on12,0,0,24,1,0,3194,4320.000000,130,0,71941.000000,1826.400000,baseline,lora,180 +on10,0,0,24,1,0,3960,4320.000000,130,0,81621.000000,1753.600000,baseline,lora,180 +on4,0,0,24,1,0,1457,4320.000000,130,0,32353.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,3957,4320.000000,130,0,-1.000000,1804.320000,baseline,lora,180 +on7,0,0,24,0,0,4274,4320.000000,130,0,-1.000000,1735.520000,baseline,lora,180 +on1,0,0,24,1,0,1180,4320.000000,130,0,27284.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4243,4320.000000,130,0,-1.000000,1742.400000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,130,0,-1.000000,2042.240000,baseline,lora,180 +on11,0,0,24,0,0,4186,4320.000000,130,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4248,4320.000000,130,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4247,4320.000000,130,0,-1.000000,1762.080000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,131,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4313,4320.000000,131,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4194,4320.000000,131,0,-1.000000,1748.320000,baseline,lora,180 +on3,0,0,24,0,0,4242,4320.000000,131,0,-1.000000,1740.640000,baseline,lora,180 +on5,0,0,24,0,0,4037,4320.000000,131,0,-1.000000,1784.640000,baseline,lora,180 +on4,0,0,24,1,0,2520,4320.000000,131,0,51491.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4201,4320.000000,131,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,1,0,3159,4320.000000,131,0,73754.000000,1827.520000,baseline,lora,180 +on12,0,0,24,0,0,4300,4320.000000,131,0,-1.000000,1731.360000,baseline,lora,180 +on11,0,0,24,0,0,4304,4320.000000,131,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,131,0,-1.000000,2023.680000,baseline,lora,180 +on7,0,0,24,1,0,4039,4320.000000,131,0,86274.000000,1805.920000,baseline,lora,180 +on2,0,0,24,0,0,4173,4320.000000,131,0,-1.000000,1757.760000,baseline,lora,180 +on10,0,0,24,1,0,180,4320.000000,132,0,4517.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4060,4320.000000,132,0,-1.000000,1770.240000,baseline,lora,180 +on5,0,0,24,0,0,4195,4320.000000,132,0,-1.000000,1763.680000,baseline,lora,180 +on11,0,0,24,0,0,4009,4320.000000,132,0,-1.000000,1790.720000,baseline,lora,180 +on6,0,0,24,0,0,4098,4320.000000,132,0,-1.000000,1772.640000,baseline,lora,180 +on7,0,0,24,1,0,1947,4320.000000,132,0,40106.000000,1782.400000,baseline,lora,180 +on12,0,0,24,0,0,4230,4320.000000,132,0,-1.000000,1742.560000,baseline,lora,180 +on8,0,0,24,0,0,4238,4320.000000,132,0,-1.000000,1777.280000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,132,0,-1.000000,2056.320000,baseline,lora,180 +on2,0,0,24,0,0,4164,4320.000000,132,0,-1.000000,1768.960000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,132,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4049,4320.000000,132,0,-1.000000,1771.680000,baseline,lora,180 +on1,0,0,24,1,0,2700,4320.000000,132,0,57255.000000,1753.600000,baseline,lora,180 +on1,0,0,24,1,0,1635,4320.000000,133,0,36827.000000,1782.080000,baseline,lora,180 +on8,0,0,24,0,0,4069,4320.000000,133,0,-1.000000,1773.280000,baseline,lora,180 +on2,0,0,24,0,0,4029,4320.000000,133,0,-1.000000,1807.520000,baseline,lora,180 +on5,0,0,24,1,0,2700,4320.000000,133,0,54373.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,3960,4320.000000,133,0,-1.000000,1819.360000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,133,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4091,4320.000000,133,0,-1.000000,1772.640000,baseline,lora,180 +on4,0,0,24,1,0,4063,4320.000000,133,0,84632.000000,1768.960000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,133,0,-1.000000,2126.240000,baseline,lora,180 +on9,0,0,24,0,0,4054,4320.000000,133,0,-1.000000,1811.360000,baseline,lora,180 +on3,0,0,24,0,0,4307,4320.000000,133,0,-1.000000,1755.840000,baseline,lora,180 +on6,0,0,24,0,0,4188,4320.000000,133,0,-1.000000,1749.280000,baseline,lora,180 +on12,0,0,24,0,0,4145,4320.000000,133,0,-1.000000,1759.520000,baseline,lora,180 +on8,0,0,24,0,0,4243,4320.000000,134,0,-1.000000,1762.560000,baseline,lora,180 +on2,0,0,24,0,0,4288,4320.000000,134,0,-1.000000,1733.280000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,134,0,-1.000000,1953.760000,baseline,lora,180 +on11,0,0,24,0,0,4025,4320.000000,134,0,-1.000000,1798.240000,baseline,lora,180 +on1,0,0,24,0,0,4260,4320.000000,134,0,-1.000000,1764.800000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,1,0,361,4320.000000,134,0,9421.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4207,4320.000000,134,0,-1.000000,1764.800000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4136,4320.000000,134,0,-1.000000,1786.560000,baseline,lora,180 +on4,0,0,24,0,0,4148,4320.000000,134,0,-1.000000,1780.960000,baseline,lora,180 +on3,0,0,24,0,0,4020,4320.000000,134,0,-1.000000,1788.320000,baseline,lora,180 +on9,0,0,24,0,0,4058,4320.000000,135,0,-1.000000,1776.000000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,135,0,-1.000000,1919.840000,baseline,lora,180 +on4,0,0,24,0,0,3950,4320.000000,135,0,-1.000000,1834.240000,baseline,lora,180 +on6,0,0,24,0,0,4224,4320.000000,135,0,-1.000000,1743.520000,baseline,lora,180 +on12,0,0,24,0,0,4285,4320.000000,135,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4149,4320.000000,135,0,-1.000000,1755.680000,baseline,lora,180 +on5,0,0,24,0,0,4306,4320.000000,135,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4237,4320.000000,135,0,-1.000000,1741.440000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4167,4320.000000,135,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,1,0,366,4320.000000,136,0,8387.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4166,4320.000000,136,0,-1.000000,1806.400000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,136,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4188,4320.000000,136,0,-1.000000,1749.280000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,136,0,-1.000000,2004.160000,baseline,lora,180 +on10,0,0,24,0,0,3671,4320.000000,136,0,-1.000000,1841.600000,baseline,lora,180 +on6,0,0,24,1,0,915,4320.000000,136,0,20977.000000,1753.600000,baseline,lora,180 +on12,0,0,24,1,0,1819,4320.000000,136,0,36830.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4301,4320.000000,136,0,-1.000000,1732.480000,baseline,lora,180 +on5,0,0,24,0,0,4158,4320.000000,136,0,-1.000000,1806.400000,baseline,lora,180 +on9,0,0,24,0,0,4316,4320.000000,136,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4301,4320.000000,136,0,-1.000000,1739.360000,baseline,lora,180 +on4,0,0,24,0,0,4230,4320.000000,136,0,-1.000000,1742.560000,baseline,lora,180 +on12,0,0,24,0,0,4013,4320.000000,137,0,-1.000000,1799.040000,baseline,lora,180 +on1,0,0,24,0,0,4296,4320.000000,137,0,-1.000000,1732.000000,baseline,lora,180 +on6,0,0,24,0,0,4087,4320.000000,137,0,-1.000000,1765.600000,baseline,lora,180 +on7,0,0,24,0,0,3913,4320.000000,137,0,-1.000000,1825.600000,baseline,lora,180 +on5,0,0,24,0,0,4308,4320.000000,137,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4174,4320.000000,137,0,-1.000000,1751.520000,baseline,lora,180 +on10,0,0,24,0,0,4241,4320.000000,137,0,-1.000000,1740.800000,baseline,lora,180 +on2,0,0,24,0,0,4218,4320.000000,137,0,-1.000000,1744.640000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,137,0,-1.000000,2012.000000,baseline,lora,180 +on9,0,0,24,0,0,4034,4320.000000,137,0,-1.000000,1788.960000,baseline,lora,180 +on8,0,0,24,0,0,4252,4320.000000,137,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4232,4320.000000,137,0,-1.000000,1742.400000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,137,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4290,4320.000000,138,0,-1.000000,1732.960000,baseline,lora,180 +on8,0,0,24,0,0,4237,4320.000000,138,0,-1.000000,1765.440000,baseline,lora,180 +on6,0,0,24,0,0,4245,4320.000000,138,0,-1.000000,1740.160000,baseline,lora,180 +on3,0,0,24,0,0,3959,4320.000000,138,0,-1.000000,1795.680000,baseline,lora,180 +on11,0,0,24,0,0,4132,4320.000000,138,0,-1.000000,1777.120000,baseline,lora,180 +on4,0,0,24,0,0,4163,4320.000000,138,0,-1.000000,1753.760000,baseline,lora,180 +on10,0,0,24,0,0,4108,4320.000000,138,0,-1.000000,1792.480000,baseline,lora,180 +on12,0,0,24,0,0,4308,4320.000000,138,0,-1.000000,1758.720000,baseline,lora,180 +on2,0,0,24,0,0,4140,4320.000000,138,0,-1.000000,1785.600000,baseline,lora,180 +on5,0,0,24,0,0,4284,4320.000000,138,0,-1.000000,1733.920000,baseline,lora,180 +on1,0,0,24,0,0,4129,4320.000000,138,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4156,4320.000000,138,0,-1.000000,1754.560000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,138,0,-1.000000,2002.240000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,139,0,-1.000000,2078.880000,baseline,lora,180 +on5,0,0,24,0,0,3845,4320.000000,139,0,-1.000000,1824.320000,baseline,lora,180 +on10,0,0,24,0,0,3899,4320.000000,139,0,-1.000000,1835.840000,baseline,lora,180 +on8,0,0,24,0,0,4227,4320.000000,139,0,-1.000000,1782.240000,baseline,lora,180 +on9,0,0,24,0,0,4167,4320.000000,139,0,-1.000000,1759.360000,baseline,lora,180 +on6,0,0,24,1,0,180,4320.000000,139,0,4062.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4301,4320.000000,139,0,-1.000000,1740.640000,baseline,lora,180 +on12,0,0,24,1,0,2130,4320.000000,139,0,45063.000000,1787.200000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4109,4320.000000,139,0,-1.000000,1821.760000,baseline,lora,180 +on4,0,0,24,0,0,4158,4320.000000,139,0,-1.000000,1787.840000,baseline,lora,180 +on2,0,0,24,1,0,4,4320.000000,139,0,3506.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4209,4320.000000,139,0,-1.000000,1745.920000,baseline,lora,180 +on10,0,0,24,0,0,4189,4320.000000,140,0,-1.000000,1749.280000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,140,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,1,0,720,4320.000000,140,0,15661.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,140,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,1440,4320.000000,140,0,30369.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4256,4320.000000,140,0,-1.000000,1761.120000,baseline,lora,180 +on12,0,0,24,1,0,1087,4320.000000,140,0,24996.000000,1754.080000,baseline,lora,180 +on5,0,0,24,1,0,1980,4320.000000,140,0,41518.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4253,4320.000000,140,0,-1.000000,1772.960000,baseline,lora,180 +on1,0,0,24,0,0,4290,4320.000000,140,0,-1.000000,1759.840000,baseline,lora,180 +on9,0,0,24,0,0,4311,4320.000000,140,0,-1.000000,1729.760000,baseline,lora,180 +on4,0,0,24,0,0,3989,4320.000000,140,0,-1.000000,1791.520000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,140,0,-1.000000,1934.240000,baseline,lora,180 +on5,0,0,24,0,0,4192,4320.000000,141,0,-1.000000,1748.640000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4269,4320.000000,141,0,-1.000000,1764.640000,baseline,lora,180 +on2,0,0,24,0,0,4191,4320.000000,141,0,-1.000000,1774.400000,baseline,lora,180 +on6,0,0,24,1,0,1273,4320.000000,141,0,25761.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4136,4320.000000,141,0,-1.000000,1779.520000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,141,0,-1.000000,1957.280000,baseline,lora,180 +on1,0,0,24,0,0,4002,4320.000000,141,0,-1.000000,1819.840000,baseline,lora,180 +on9,0,0,24,0,0,4300,4320.000000,141,0,-1.000000,1731.360000,baseline,lora,180 +on7,0,0,24,0,0,4217,4320.000000,141,0,-1.000000,1744.640000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4072,4320.000000,141,0,-1.000000,1768.000000,baseline,lora,180 +on3,0,0,24,0,0,4247,4320.000000,141,0,-1.000000,1739.840000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4230,4320.000000,142,0,-1.000000,1742.560000,baseline,lora,180 +on9,0,0,24,0,0,4168,4320.000000,142,0,-1.000000,1822.560000,baseline,lora,180 +on3,0,0,24,0,0,3870,4320.000000,142,0,-1.000000,1808.480000,baseline,lora,180 +on5,0,0,24,1,0,3473,4320.000000,142,0,74627.000000,1783.040000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,142,0,-1.000000,2081.280000,baseline,lora,180 +on4,0,0,24,0,0,4169,4320.000000,142,0,-1.000000,1777.280000,baseline,lora,180 +on7,0,0,24,0,0,4262,4320.000000,142,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4108,4320.000000,142,0,-1.000000,1771.360000,baseline,lora,180 +on1,0,0,24,0,0,3988,4320.000000,142,0,-1.000000,1791.680000,baseline,lora,180 +on11,0,0,24,0,0,4187,4320.000000,142,0,-1.000000,1760.320000,baseline,lora,180 +on6,0,0,24,0,0,4179,4320.000000,142,0,-1.000000,1754.080000,baseline,lora,180 +on12,0,0,24,0,0,4160,4320.000000,142,0,-1.000000,1776.640000,baseline,lora,180 +on12,0,0,24,0,0,4074,4320.000000,143,0,-1.000000,1774.560000,baseline,lora,180 +on10,0,0,24,0,0,4197,4320.000000,143,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,3899,4320.000000,143,0,83303.000000,1793.760000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,143,0,-1.000000,2103.200000,baseline,lora,180 +on2,0,0,24,0,0,4207,4320.000000,143,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4259,4320.000000,143,0,-1.000000,1737.920000,baseline,lora,180 +on1,0,0,24,1,0,3122,4320.000000,143,0,68267.000000,1774.080000,baseline,lora,180 +on5,0,0,24,0,0,4196,4320.000000,143,0,-1.000000,1748.000000,baseline,lora,180 +on4,0,0,24,0,0,4269,4320.000000,143,0,-1.000000,1743.040000,baseline,lora,180 +on3,0,0,24,1,0,292,4320.000000,143,0,7748.000000,1782.400000,baseline,lora,180 +on9,0,0,24,1,0,3441,4320.000000,143,0,72532.000000,1782.400000,baseline,lora,180 +on11,0,0,24,0,0,4122,4320.000000,143,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,1,0,2713,4320.000000,143,0,54984.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4243,4320.000000,144,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4283,4320.000000,144,0,-1.000000,1734.080000,baseline,lora,180 +on6,0,0,24,0,0,4208,4320.000000,144,0,-1.000000,1785.760000,baseline,lora,180 +on5,0,0,24,1,0,1631,4320.000000,144,0,33216.000000,1753.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,144,0,-1.000000,2079.040000,baseline,lora,180 +on2,0,0,24,0,0,4017,4320.000000,144,0,-1.000000,1804.000000,baseline,lora,180 +on3,0,0,24,0,0,4231,4320.000000,144,0,-1.000000,1747.360000,baseline,lora,180 +on9,0,0,24,0,0,4141,4320.000000,144,0,-1.000000,1758.880000,baseline,lora,180 +on1,0,0,24,0,0,4201,4320.000000,144,0,-1.000000,1766.400000,baseline,lora,180 +on8,0,0,24,0,0,4065,4320.000000,144,0,-1.000000,1769.600000,baseline,lora,180 +on7,0,0,24,0,0,3951,4320.000000,144,0,-1.000000,1809.760000,baseline,lora,180 +on10,0,0,24,0,0,4110,4320.000000,144,0,-1.000000,1784.160000,baseline,lora,180 +on12,0,0,24,0,0,4065,4320.000000,144,0,-1.000000,1783.680000,baseline,lora,180 +on3,0,0,24,0,0,4124,4320.000000,145,0,-1.000000,1785.600000,baseline,lora,180 +on2,0,0,24,0,0,3756,4320.000000,145,0,-1.000000,1836.960000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,145,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4117,4320.000000,145,0,-1.000000,1769.440000,baseline,lora,180 +on8,0,0,24,1,0,3158,4320.000000,145,0,69807.000000,1826.400000,baseline,lora,180 +on9,0,0,24,0,0,4229,4320.000000,145,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4057,4320.000000,145,0,-1.000000,1770.400000,baseline,lora,180 +on10,0,0,24,1,0,1778,4320.000000,145,0,39499.000000,1782.400000,baseline,lora,180 +on12,0,0,24,1,0,1440,4320.000000,145,0,31810.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4292,4320.000000,145,0,-1.000000,1735.520000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,145,0,-1.000000,2117.920000,baseline,lora,180 +on5,0,0,24,0,0,4084,4320.000000,145,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4286,4320.000000,145,0,-1.000000,1733.600000,baseline,lora,180 +on10,0,0,24,0,0,4203,4320.000000,146,0,-1.000000,1746.880000,baseline,lora,180 +on1,0,0,24,0,0,4240,4320.000000,146,0,-1.000000,1747.680000,baseline,lora,180 +on6,0,0,24,0,0,4317,4320.000000,146,0,-1.000000,1747.360000,baseline,lora,180 +on11,0,0,24,0,0,4225,4320.000000,146,0,-1.000000,1743.360000,baseline,lora,180 +on9,0,0,24,1,0,0,4320.000000,146,0,1523.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4187,4320.000000,146,0,-1.000000,1749.600000,baseline,lora,180 +on12,0,0,24,0,0,3911,4320.000000,146,0,-1.000000,1824.640000,baseline,lora,180 +on2,0,0,24,0,0,4018,4320.000000,146,0,-1.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4054,4320.000000,146,0,-1.000000,1770.880000,baseline,lora,180 +on4,0,0,24,0,0,4051,4320.000000,146,0,-1.000000,1806.240000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,146,0,-1.000000,2131.680000,baseline,lora,180 +on3,0,0,24,1,0,1167,4320.000000,146,0,25491.000000,1768.640000,baseline,lora,180 +on8,0,0,24,0,0,3908,4320.000000,146,0,-1.000000,1799.200000,baseline,lora,180 +on8,0,0,24,1,0,3182,4320.000000,147,0,65345.000000,1764.160000,baseline,lora,180 +on5,0,0,24,0,0,4209,4320.000000,147,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4065,4320.000000,147,0,-1.000000,1769.440000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,147,0,-1.000000,2099.840000,baseline,lora,180 +on12,0,0,24,0,0,4303,4320.000000,147,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4193,4320.000000,147,0,-1.000000,1748.480000,baseline,lora,180 +on4,0,0,24,1,0,3347,4320.000000,147,0,75063.000000,1842.240000,baseline,lora,180 +on9,0,0,24,1,0,1620,4320.000000,147,0,33668.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4274,4320.000000,147,0,-1.000000,1735.680000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4120,4320.000000,147,0,-1.000000,1766.880000,baseline,lora,180 +on2,0,0,24,0,0,4167,4320.000000,147,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,3731,4320.000000,147,0,-1.000000,1836.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,148,0,-1.000000,2016.960000,baseline,lora,180 +on7,0,0,24,1,0,1440,4320.000000,148,0,30835.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4208,4320.000000,148,0,-1.000000,1746.080000,baseline,lora,180 +on11,0,0,24,0,0,4215,4320.000000,148,0,-1.000000,1744.960000,baseline,lora,180 +on1,0,0,24,0,0,4182,4320.000000,148,0,-1.000000,1750.240000,baseline,lora,180 +on5,0,0,24,0,0,4174,4320.000000,148,0,-1.000000,1764.960000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,3985,4320.000000,148,0,-1.000000,1842.080000,baseline,lora,180 +on8,0,0,24,0,0,4006,4320.000000,148,0,-1.000000,1840.640000,baseline,lora,180 +on9,0,0,24,0,0,4003,4320.000000,148,0,-1.000000,1779.200000,baseline,lora,180 +on6,0,0,24,1,0,1627,4320.000000,148,0,34317.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,2455,4320.000000,149,0,52901.000000,1764.160000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,3989,4320.000000,149,0,-1.000000,1820.160000,baseline,lora,180 +on5,0,0,24,0,0,4215,4320.000000,149,0,-1.000000,1767.200000,baseline,lora,180 +on1,0,0,24,1,0,3218,4320.000000,149,0,66651.000000,1757.440000,baseline,lora,180 +on11,0,0,24,0,0,4214,4320.000000,149,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4236,4320.000000,149,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,149,0,-1.000000,1946.720000,baseline,lora,180 +on12,0,0,24,0,0,4306,4320.000000,149,0,-1.000000,1730.400000,baseline,lora,180 +on2,0,0,24,0,0,4270,4320.000000,149,0,-1.000000,1736.160000,baseline,lora,180 +on8,0,0,24,1,0,2979,4320.000000,149,0,63705.000000,1769.120000,baseline,lora,180 +on8,0,0,24,0,0,4197,4320.000000,150,0,-1.000000,1751.520000,baseline,lora,180 +on4,0,0,24,0,0,4302,4320.000000,150,0,-1.000000,1731.040000,baseline,lora,180 +on11,0,0,24,0,0,4040,4320.000000,150,0,-1.000000,1774.560000,baseline,lora,180 +on2,0,0,24,0,0,4251,4320.000000,150,0,-1.000000,1739.200000,baseline,lora,180 +on9,0,0,24,1,0,2399,4320.000000,150,0,51576.000000,1774.880000,baseline,lora,180 +on1,0,0,24,1,0,1391,4320.000000,150,0,30889.000000,1763.200000,baseline,lora,180 +on3,0,0,24,0,0,4097,4320.000000,150,0,-1.000000,1803.840000,baseline,lora,180 +on12,0,0,24,0,0,4279,4320.000000,150,0,-1.000000,1761.920000,baseline,lora,180 +on5,0,0,24,0,0,4242,4320.000000,150,0,-1.000000,1740.640000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,150,0,-1.000000,2040.960000,baseline,lora,180 +on10,0,0,24,1,0,736,4320.000000,150,0,14943.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4230,4320.000000,150,0,-1.000000,1756.640000,baseline,lora,180 +on7,0,0,24,0,0,3976,4320.000000,150,0,-1.000000,1790.880000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,151,0,-1.000000,2039.200000,baseline,lora,180 +on8,0,0,24,1,0,3716,4320.000000,151,0,83010.000000,1847.360000,baseline,lora,180 +on7,0,0,24,1,0,540,4320.000000,151,0,13743.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4167,4320.000000,151,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,0,0,4318,4320.000000,151,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4171,4320.000000,151,0,-1.000000,1776.800000,baseline,lora,180 +on2,0,0,24,0,0,4186,4320.000000,151,0,-1.000000,1749.600000,baseline,lora,180 +on9,0,0,24,0,0,4250,4320.000000,151,0,-1.000000,1739.520000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,151,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4049,4320.000000,151,0,-1.000000,1816.960000,baseline,lora,180 +on3,0,0,24,0,0,4058,4320.000000,151,0,-1.000000,1770.560000,baseline,lora,180 +on11,0,0,24,0,0,4218,4320.000000,151,0,-1.000000,1744.480000,baseline,lora,180 +on5,0,0,24,0,0,4286,4320.000000,151,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,3729,4320.000000,152,0,-1.000000,1828.480000,baseline,lora,180 +on3,0,0,24,0,0,4295,4320.000000,152,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4041,4320.000000,152,0,-1.000000,1811.040000,baseline,lora,180 +on12,0,0,24,0,0,4077,4320.000000,152,0,-1.000000,1767.360000,baseline,lora,180 +on11,0,0,24,1,0,3144,4320.000000,152,0,70496.000000,1803.040000,baseline,lora,180 +on9,0,0,24,0,0,4109,4320.000000,152,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4206,4320.000000,152,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,1,0,3978,4320.000000,152,0,85515.000000,1786.720000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,152,0,-1.000000,2187.040000,baseline,lora,180 +on2,0,0,24,0,0,3895,4320.000000,152,0,-1.000000,1835.040000,baseline,lora,180 +on1,0,0,24,0,0,4307,4320.000000,152,0,-1.000000,1730.240000,baseline,lora,180 +on6,0,0,24,0,0,4158,4320.000000,152,0,-1.000000,1762.720000,baseline,lora,180 +on12,0,0,24,0,0,4210,4320.000000,153,0,-1.000000,1745.760000,baseline,lora,180 +on5,0,0,24,1,0,3240,4320.000000,153,0,66222.000000,1753.600000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,153,0,-1.000000,2018.880000,baseline,lora,180 +on6,0,0,24,1,0,4140,4320.000000,153,0,83812.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4305,4320.000000,153,0,-1.000000,1754.240000,baseline,lora,180 +on11,0,0,24,1,0,1066,4320.000000,153,0,23136.000000,1767.200000,baseline,lora,180 +on4,0,0,24,0,0,4210,4320.000000,153,0,-1.000000,1764.960000,baseline,lora,180 +on1,0,0,24,0,0,4164,4320.000000,153,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4015,4320.000000,153,0,-1.000000,1777.120000,baseline,lora,180 +on9,0,0,24,0,0,4238,4320.000000,153,0,-1.000000,1768.480000,baseline,lora,180 +on8,0,0,24,1,0,406,4320.000000,153,0,12545.000000,1776.000000,baseline,lora,180 +on2,0,0,24,0,0,4117,4320.000000,153,0,-1.000000,1793.120000,baseline,lora,180 +on10,0,0,24,0,0,4309,4320.000000,153,0,-1.000000,1734.240000,baseline,lora,180 +on11,0,0,24,1,0,180,4320.000000,154,0,5743.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4153,4320.000000,154,0,-1.000000,1792.480000,baseline,lora,180 +on2,0,0,24,0,0,4107,4320.000000,154,0,-1.000000,1815.680000,baseline,lora,180 +on12,0,0,24,0,0,4199,4320.000000,154,0,-1.000000,1747.520000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4195,4320.000000,154,0,-1.000000,1783.840000,baseline,lora,180 +on7,0,0,24,1,0,4132,4320.000000,154,0,84705.000000,1757.120000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,154,0,-1.000000,1999.200000,baseline,lora,180 +on10,0,0,24,0,0,4140,4320.000000,154,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,1,0,540,4320.000000,154,0,13720.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4255,4320.000000,154,0,-1.000000,1738.560000,baseline,lora,180 +on3,0,0,24,0,0,4245,4320.000000,154,0,-1.000000,1740.160000,baseline,lora,180 +on4,0,0,24,0,0,4091,4320.000000,154,0,-1.000000,1808.800000,baseline,lora,180 +on1,0,0,24,0,0,4171,4320.000000,155,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4269,4320.000000,155,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4206,4320.000000,155,0,-1.000000,1746.400000,baseline,lora,180 +on6,0,0,24,0,0,4150,4320.000000,155,0,-1.000000,1766.080000,baseline,lora,180 +on7,0,0,24,0,0,4074,4320.000000,155,0,-1.000000,1801.920000,baseline,lora,180 +on8,0,0,24,0,0,4214,4320.000000,155,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4122,4320.000000,155,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,1,0,0,4320.000000,155,0,2818.000000,1753.600000,baseline,lora,180 +on11,0,0,24,1,0,2716,4320.000000,155,0,54255.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4246,4320.000000,155,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4245,4320.000000,155,0,-1.000000,1740.320000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,155,0,-1.000000,1988.000000,baseline,lora,180 +on12,0,0,24,0,0,4214,4320.000000,155,0,-1.000000,1746.240000,baseline,lora,180 +on2,0,0,24,0,0,4190,4320.000000,156,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4259,4320.000000,156,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4046,4320.000000,156,0,-1.000000,1803.360000,baseline,lora,180 +on3,0,0,24,0,0,4188,4320.000000,156,0,-1.000000,1749.280000,baseline,lora,180 +on7,0,0,24,0,0,4239,4320.000000,156,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4171,4320.000000,156,0,-1.000000,1771.680000,baseline,lora,180 +on8,0,0,24,0,0,4216,4320.000000,156,0,-1.000000,1744.800000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,156,0,-1.000000,1929.920000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,1,0,3259,4320.000000,156,0,68069.000000,1753.600000,baseline,lora,180 +on6,0,0,24,1,0,919,4320.000000,156,0,20980.000000,1753.600000,baseline,lora,180 +on5,0,0,24,1,0,3572,4320.000000,157,0,75900.000000,1818.080000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,157,0,-1.000000,2073.600000,baseline,lora,180 +on7,0,0,24,0,0,4305,4320.000000,157,0,-1.000000,1730.560000,baseline,lora,180 +on10,0,0,24,0,0,4264,4320.000000,157,0,-1.000000,1737.120000,baseline,lora,180 +on3,0,0,24,0,0,4176,4320.000000,157,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,1,0,769,4320.000000,157,0,21513.000000,1782.400000,baseline,lora,180 +on1,0,0,24,0,0,3979,4320.000000,157,0,-1.000000,1804.800000,baseline,lora,180 +on9,0,0,24,0,0,4122,4320.000000,157,0,-1.000000,1796.800000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,3855,4320.000000,157,0,-1.000000,1825.120000,baseline,lora,180 +on12,0,0,24,0,0,4161,4320.000000,157,0,-1.000000,1780.000000,baseline,lora,180 +on11,0,0,24,0,0,4226,4320.000000,157,0,-1.000000,1743.520000,baseline,lora,180 +on12,0,0,24,0,0,4298,4320.000000,158,0,-1.000000,1731.680000,baseline,lora,180 +on8,0,0,24,0,0,3889,4320.000000,158,0,-1.000000,1824.960000,baseline,lora,180 +on7,0,0,24,0,0,4201,4320.000000,158,0,-1.000000,1747.200000,baseline,lora,180 +on10,0,0,24,0,0,3818,4320.000000,158,0,-1.000000,1823.200000,baseline,lora,180 +on4,0,0,24,1,0,1443,4320.000000,158,0,31336.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4191,4320.000000,158,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4199,4320.000000,158,0,-1.000000,1747.520000,baseline,lora,180 +on2,0,0,24,0,0,4135,4320.000000,158,0,-1.000000,1768.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,158,0,-1.000000,2047.840000,baseline,lora,180 +on1,0,0,24,1,0,2649,4320.000000,158,0,56347.000000,1772.960000,baseline,lora,180 +on3,0,0,24,0,0,4268,4320.000000,158,0,-1.000000,1769.120000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4278,4320.000000,158,0,-1.000000,1739.680000,baseline,lora,180 +on10,0,0,24,0,0,4151,4320.000000,159,0,-1.000000,1755.360000,baseline,lora,180 +on8,0,0,24,0,0,4103,4320.000000,159,0,-1.000000,1807.200000,baseline,lora,180 +on12,0,0,24,1,0,2530,4320.000000,159,0,51082.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4283,4320.000000,159,0,-1.000000,1760.480000,baseline,lora,180 +on11,0,0,24,1,0,0,4320.000000,159,0,866.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4152,4320.000000,159,0,-1.000000,1778.880000,baseline,lora,180 +on3,0,0,24,0,0,4100,4320.000000,159,0,-1.000000,1763.520000,baseline,lora,180 +on5,0,0,24,0,0,4130,4320.000000,159,0,-1.000000,1783.360000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,159,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,3966,4320.000000,159,0,-1.000000,1803.200000,baseline,lora,180 +on4,0,0,24,0,0,3910,4320.000000,159,0,-1.000000,1814.720000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,159,0,-1.000000,2103.680000,baseline,lora,180 +on9,0,0,24,1,0,1179,4320.000000,159,0,27444.000000,1766.720000,baseline,lora,180 +on11,0,0,24,0,0,4254,4320.000000,160,0,-1.000000,1738.720000,baseline,lora,180 +on6,0,0,24,0,0,4221,4320.000000,160,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,3927,4320.000000,160,0,-1.000000,1799.520000,baseline,lora,180 +on9,0,0,24,0,0,4299,4320.000000,160,0,-1.000000,1731.520000,baseline,lora,180 +on8,0,0,24,0,0,4206,4320.000000,160,0,-1.000000,1756.320000,baseline,lora,180 +on4,0,0,24,0,0,4144,4320.000000,160,0,-1.000000,1756.640000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,160,0,-1.000000,2057.440000,baseline,lora,180 +on3,0,0,24,0,0,4080,4320.000000,160,0,-1.000000,1787.040000,baseline,lora,180 +on1,0,0,24,0,0,4174,4320.000000,160,0,-1.000000,1751.680000,baseline,lora,180 +on5,0,0,24,0,0,4133,4320.000000,160,0,-1.000000,1783.360000,baseline,lora,180 +on12,0,0,24,0,0,4076,4320.000000,160,0,-1.000000,1767.520000,baseline,lora,180 +on10,0,0,24,1,0,369,4320.000000,160,0,8038.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4132,4320.000000,160,0,-1.000000,1763.200000,baseline,lora,180 +on2,0,0,24,1,0,1,4320.000000,161,0,1927.000000,1753.600000,baseline,lora,180 +on10,0,0,24,1,0,3436,4320.000000,161,0,69069.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4310,4320.000000,161,0,-1.000000,1729.760000,baseline,lora,180 +on1,0,0,24,0,0,4288,4320.000000,161,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4124,4320.000000,161,0,-1.000000,1765.760000,baseline,lora,180 +on7,0,0,24,0,0,3771,4320.000000,161,0,-1.000000,1824.480000,baseline,lora,180 +on4,0,0,24,0,0,4014,4320.000000,161,0,-1.000000,1777.440000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,161,0,-1.000000,2064.800000,baseline,lora,180 +on11,0,0,24,0,0,4312,4320.000000,161,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4275,4320.000000,161,0,-1.000000,1747.680000,baseline,lora,180 +on9,0,0,24,0,0,4137,4320.000000,161,0,-1.000000,1773.920000,baseline,lora,180 +on6,0,0,24,0,0,3991,4320.000000,161,0,-1.000000,1800.640000,baseline,lora,180 +on12,0,0,24,0,0,4217,4320.000000,161,0,-1.000000,1761.600000,baseline,lora,180 +on11,0,0,24,0,0,4058,4320.000000,162,0,-1.000000,1770.240000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4110,4320.000000,162,0,-1.000000,1761.920000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4140,4320.000000,162,0,-1.000000,1788.320000,baseline,lora,180 +on3,0,0,24,0,0,4006,4320.000000,162,0,-1.000000,1825.120000,baseline,lora,180 +on7,0,0,24,0,0,4114,4320.000000,162,0,-1.000000,1761.280000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4256,4320.000000,162,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,162,0,-1.000000,1978.080000,baseline,lora,180 +on4,0,0,24,0,0,4206,4320.000000,162,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4126,4320.000000,162,0,-1.000000,1759.360000,baseline,lora,180 +on5,0,0,24,0,0,3991,4320.000000,163,0,-1.000000,1825.920000,baseline,lora,180 +on8,0,0,24,1,0,1440,4320.000000,163,0,29833.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4188,4320.000000,163,0,-1.000000,1757.920000,baseline,lora,180 +on1,0,0,24,0,0,3941,4320.000000,163,0,-1.000000,1789.280000,baseline,lora,180 +on2,0,0,24,0,0,4234,4320.000000,163,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4287,4320.000000,163,0,-1.000000,1737.120000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,163,0,-1.000000,2054.720000,baseline,lora,180 +on7,0,0,24,0,0,4254,4320.000000,163,0,-1.000000,1738.880000,baseline,lora,180 +on9,0,0,24,1,0,182,4320.000000,163,0,4787.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4176,4320.000000,163,0,-1.000000,1775.520000,baseline,lora,180 +on12,0,0,24,0,0,4130,4320.000000,163,0,-1.000000,1758.880000,baseline,lora,180 +on4,0,0,24,0,0,4164,4320.000000,163,0,-1.000000,1753.280000,baseline,lora,180 +on11,0,0,24,0,0,4139,4320.000000,163,0,-1.000000,1774.720000,baseline,lora,180 +on8,0,0,24,0,0,4112,4320.000000,164,0,-1.000000,1805.920000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,164,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4008,4320.000000,164,0,-1.000000,1783.680000,baseline,lora,180 +on11,0,0,24,0,0,4061,4320.000000,164,0,-1.000000,1769.760000,baseline,lora,180 +on9,0,0,24,0,0,4122,4320.000000,164,0,-1.000000,1774.080000,baseline,lora,180 +on7,0,0,24,0,0,4112,4320.000000,164,0,-1.000000,1833.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,164,0,-1.000000,2063.520000,baseline,lora,180 +on2,0,0,24,0,0,4281,4320.000000,164,0,-1.000000,1734.400000,baseline,lora,180 +on6,0,0,24,0,0,4006,4320.000000,164,0,-1.000000,1788.640000,baseline,lora,180 +on10,0,0,24,0,0,4105,4320.000000,164,0,-1.000000,1776.160000,baseline,lora,180 +on3,0,0,24,1,0,2009,4320.000000,164,0,44257.000000,1799.520000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,164,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,164,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4249,4320.000000,165,0,-1.000000,1745.440000,baseline,lora,180 +on10,0,0,24,0,0,4062,4320.000000,165,0,-1.000000,1769.600000,baseline,lora,180 +on3,0,0,24,0,0,3920,4320.000000,165,0,-1.000000,1792.640000,baseline,lora,180 +on8,0,0,24,0,0,3949,4320.000000,165,0,-1.000000,1835.680000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,165,0,-1.000000,2045.760000,baseline,lora,180 +on4,0,0,24,0,0,4158,4320.000000,165,0,-1.000000,1764.800000,baseline,lora,180 +on12,0,0,24,0,0,4299,4320.000000,165,0,-1.000000,1742.880000,baseline,lora,180 +on11,0,0,24,0,0,4064,4320.000000,165,0,-1.000000,1769.280000,baseline,lora,180 +on2,0,0,24,0,0,4294,4320.000000,165,0,-1.000000,1732.320000,baseline,lora,180 +on9,0,0,24,0,0,4177,4320.000000,165,0,-1.000000,1751.040000,baseline,lora,180 +on6,0,0,24,0,0,4184,4320.000000,165,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4202,4320.000000,165,0,-1.000000,1756.320000,baseline,lora,180 +on5,0,0,24,0,0,4176,4320.000000,166,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,3761,4320.000000,166,0,-1.000000,1843.520000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,166,0,-1.000000,2102.880000,baseline,lora,180 +on2,0,0,24,0,0,4112,4320.000000,166,0,-1.000000,1766.560000,baseline,lora,180 +on9,0,0,24,0,0,4171,4320.000000,166,0,-1.000000,1752.160000,baseline,lora,180 +on4,0,0,24,0,0,4237,4320.000000,166,0,-1.000000,1763.040000,baseline,lora,180 +on1,0,0,24,1,0,940,4320.000000,166,0,24595.000000,1778.720000,baseline,lora,180 +on6,0,0,24,0,0,4245,4320.000000,166,0,-1.000000,1740.320000,baseline,lora,180 +on7,0,0,24,0,0,4032,4320.000000,166,0,-1.000000,1797.760000,baseline,lora,180 +on11,0,0,24,0,0,4244,4320.000000,166,0,-1.000000,1740.320000,baseline,lora,180 +on10,0,0,24,0,0,4042,4320.000000,166,0,-1.000000,1801.760000,baseline,lora,180 +on12,0,0,24,0,0,4163,4320.000000,166,0,-1.000000,1753.440000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,166,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4189,4320.000000,167,0,-1.000000,1776.800000,baseline,lora,180 +on1,0,0,24,0,0,4248,4320.000000,167,0,-1.000000,1739.680000,baseline,lora,180 +on10,0,0,24,1,0,3907,4320.000000,167,0,80564.000000,1762.720000,baseline,lora,180 +on11,0,0,24,0,0,4189,4320.000000,167,0,-1.000000,1763.040000,baseline,lora,180 +on4,0,0,24,0,0,4139,4320.000000,167,0,-1.000000,1757.280000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,167,0,-1.000000,2060.800000,baseline,lora,180 +on2,0,0,24,1,0,1635,4320.000000,167,0,33020.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4029,4320.000000,167,0,-1.000000,1775.040000,baseline,lora,180 +on12,0,0,24,1,0,2353,4320.000000,167,0,48018.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4189,4320.000000,167,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,167,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,1,0,1024,4320.000000,167,0,24548.000000,1771.680000,baseline,lora,180 +on6,0,0,24,0,0,3956,4320.000000,167,0,-1.000000,1825.120000,baseline,lora,180 +on11,0,0,24,0,0,4306,4320.000000,168,0,-1.000000,1730.560000,baseline,lora,180 +on2,0,0,24,1,0,3349,4320.000000,168,0,70073.000000,1782.400000,baseline,lora,180 +on6,0,0,24,1,0,906,4320.000000,168,0,21288.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4092,4320.000000,168,0,-1.000000,1804.480000,baseline,lora,180 +on12,0,0,24,1,0,2404,4320.000000,168,0,52189.000000,1801.600000,baseline,lora,180 +on1,0,0,24,0,0,4107,4320.000000,168,0,-1.000000,1821.600000,baseline,lora,180 +on9,0,0,24,1,0,1124,4320.000000,168,0,25614.000000,1782.400000,baseline,lora,180 +on10,0,0,24,0,0,4209,4320.000000,168,0,-1.000000,1745.920000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,168,0,-1.000000,2027.520000,baseline,lora,180 +on7,0,0,24,0,0,4267,4320.000000,168,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4271,4320.000000,168,0,-1.000000,1736.000000,baseline,lora,180 +on3,0,0,24,0,0,4276,4320.000000,168,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4156,4320.000000,168,0,-1.000000,1758.880000,baseline,lora,180 +on4,0,0,24,0,0,4111,4320.000000,169,0,-1.000000,1761.760000,baseline,lora,180 +on6,0,0,24,0,0,4197,4320.000000,169,0,-1.000000,1747.840000,baseline,lora,180 +on11,0,0,24,1,0,2700,4320.000000,169,0,55935.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4079,4320.000000,169,0,-1.000000,1795.040000,baseline,lora,180 +on7,0,0,24,0,0,4178,4320.000000,169,0,-1.000000,1757.920000,baseline,lora,180 +on1,0,0,24,0,0,4055,4320.000000,169,0,-1.000000,1772.800000,baseline,lora,180 +on5,0,0,24,0,0,4176,4320.000000,169,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,1,0,1330,4320.000000,169,0,38192.000000,1873.440000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,169,0,-1.000000,2069.440000,baseline,lora,180 +on3,0,0,24,0,0,4287,4320.000000,169,0,-1.000000,1733.600000,baseline,lora,180 +on10,0,0,24,0,0,4249,4320.000000,169,0,-1.000000,1770.080000,baseline,lora,180 +on8,0,0,24,0,0,4229,4320.000000,169,0,-1.000000,1757.920000,baseline,lora,180 +on9,0,0,24,0,0,3959,4320.000000,170,0,-1.000000,1806.880000,baseline,lora,180 +on10,0,0,24,1,0,1260,4320.000000,170,0,27256.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4170,4320.000000,170,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,1,0,881,4320.000000,170,0,20163.000000,1760.800000,baseline,lora,180 +on8,0,0,24,1,0,2349,4320.000000,170,0,49569.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4298,4320.000000,170,0,-1.000000,1813.440000,baseline,lora,180 +on7,0,0,24,1,0,558,4320.000000,170,0,11154.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4094,4320.000000,170,0,-1.000000,1816.800000,baseline,lora,180 +on4,0,0,24,0,0,4240,4320.000000,170,0,-1.000000,1767.520000,baseline,lora,180 +on3,0,0,24,0,0,4153,4320.000000,170,0,-1.000000,1755.040000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,170,0,-1.000000,2009.120000,baseline,lora,180 +on6,0,0,24,0,0,4246,4320.000000,170,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,170,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,171,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,1,0,594,4320.000000,171,0,17228.000000,1782.400000,baseline,lora,180 +on3,0,0,24,0,0,4152,4320.000000,171,0,-1.000000,1755.200000,baseline,lora,180 +on5,0,0,24,0,0,4284,4320.000000,171,0,-1.000000,1733.920000,baseline,lora,180 +on7,0,0,24,0,0,4197,4320.000000,171,0,-1.000000,1758.080000,baseline,lora,180 +on11,0,0,24,0,0,4205,4320.000000,171,0,-1.000000,1746.560000,baseline,lora,180 +on8,0,0,24,1,0,3609,4320.000000,171,0,72229.000000,1755.040000,baseline,lora,180 +on9,0,0,24,0,0,4101,4320.000000,171,0,-1.000000,1814.400000,baseline,lora,180 +on2,0,0,24,0,0,4141,4320.000000,171,0,-1.000000,1814.400000,baseline,lora,180 +on10,0,0,24,1,0,2340,4320.000000,171,0,47340.000000,1753.600000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,171,0,-1.000000,2005.440000,baseline,lora,180 +on1,0,0,24,1,0,1904,4320.000000,171,0,40279.000000,1765.920000,baseline,lora,180 +on12,0,0,24,0,0,4292,4320.000000,171,0,-1.000000,1732.640000,baseline,lora,180 +on10,0,0,24,0,0,4192,4320.000000,172,0,-1.000000,1769.760000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,172,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4053,4320.000000,172,0,-1.000000,1781.440000,baseline,lora,180 +on2,0,0,24,0,0,4049,4320.000000,172,0,-1.000000,1771.840000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,172,0,-1.000000,1978.400000,baseline,lora,180 +on8,0,0,24,0,0,4172,4320.000000,172,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4305,4320.000000,172,0,-1.000000,1730.560000,baseline,lora,180 +on7,0,0,24,0,0,4174,4320.000000,172,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4216,4320.000000,172,0,-1.000000,1744.800000,baseline,lora,180 +on9,0,0,24,1,0,3793,4320.000000,172,0,77891.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4233,4320.000000,172,0,-1.000000,1767.360000,baseline,lora,180 +on3,0,0,24,0,0,4096,4320.000000,172,0,-1.000000,1781.760000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,172,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4236,4320.000000,173,0,-1.000000,1757.920000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,173,0,-1.000000,2120.160000,baseline,lora,180 +on11,0,0,24,1,0,3605,4320.000000,173,0,72550.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4200,4320.000000,173,0,-1.000000,1754.080000,baseline,lora,180 +on1,0,0,24,0,0,4009,4320.000000,173,0,-1.000000,1778.240000,baseline,lora,180 +on8,0,0,24,0,0,4134,4320.000000,173,0,-1.000000,1765.600000,baseline,lora,180 +on3,0,0,24,0,0,4012,4320.000000,173,0,-1.000000,1793.440000,baseline,lora,180 +on10,0,0,24,0,0,3980,4320.000000,173,0,-1.000000,1796.000000,baseline,lora,180 +on6,0,0,24,0,0,4151,4320.000000,173,0,-1.000000,1790.080000,baseline,lora,180 +on12,0,0,24,0,0,4218,4320.000000,173,0,-1.000000,1744.480000,baseline,lora,180 +on5,0,0,24,0,0,4071,4320.000000,173,0,-1.000000,1813.600000,baseline,lora,180 +on2,0,0,24,0,0,4127,4320.000000,173,0,-1.000000,1776.160000,baseline,lora,180 +on4,0,0,24,0,0,4120,4320.000000,173,0,-1.000000,1766.080000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4198,4320.000000,174,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,2891,4320.000000,174,0,61078.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4108,4320.000000,174,0,-1.000000,1769.600000,baseline,lora,180 +on12,0,0,24,0,0,3937,4320.000000,174,0,-1.000000,1811.360000,baseline,lora,180 +on5,0,0,24,0,0,4178,4320.000000,174,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,1,0,3130,4320.000000,174,0,68291.000000,1773.760000,baseline,lora,180 +on8,0,0,24,1,0,2160,4320.000000,174,0,46026.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4117,4320.000000,174,0,-1.000000,1788.800000,baseline,lora,180 +on11,0,0,24,0,0,4179,4320.000000,174,0,-1.000000,1751.040000,baseline,lora,180 +on9,0,0,24,0,0,4138,4320.000000,174,0,-1.000000,1776.480000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,174,0,-1.000000,2061.920000,baseline,lora,180 +on2,0,0,24,0,0,4245,4320.000000,174,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,3846,4320.000000,175,0,-1.000000,1831.520000,baseline,lora,180 +on8,0,0,24,0,0,4096,4320.000000,175,0,-1.000000,1764.160000,baseline,lora,180 +on6,0,0,24,1,0,1877,4320.000000,175,0,41233.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,3942,4320.000000,175,0,-1.000000,1838.560000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,175,0,-1.000000,2125.280000,baseline,lora,180 +on12,0,0,24,0,0,4239,4320.000000,175,0,-1.000000,1780.000000,baseline,lora,180 +on2,0,0,24,0,0,4033,4320.000000,175,0,-1.000000,1774.240000,baseline,lora,180 +on7,0,0,24,0,0,4173,4320.000000,175,0,-1.000000,1752.640000,baseline,lora,180 +on3,0,0,24,0,0,4186,4320.000000,175,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,1,0,3817,4320.000000,175,0,81465.000000,1789.920000,baseline,lora,180 +on1,0,0,24,0,0,4173,4320.000000,175,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,175,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,175,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4273,4320.000000,176,0,-1.000000,1735.680000,baseline,lora,180 +on7,0,0,24,0,0,4090,4320.000000,176,0,-1.000000,1774.240000,baseline,lora,180 +on6,0,0,24,0,0,4035,4320.000000,176,0,-1.000000,1774.080000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4177,4320.000000,176,0,-1.000000,1775.840000,baseline,lora,180 +on10,0,0,24,0,0,4260,4320.000000,176,0,-1.000000,1737.760000,baseline,lora,180 +on8,0,0,24,0,0,4196,4320.000000,176,0,-1.000000,1775.520000,baseline,lora,180 +on2,0,0,24,0,0,4109,4320.000000,176,0,-1.000000,1783.360000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,176,0,-1.000000,1960.160000,baseline,lora,180 +on1,0,0,24,0,0,4132,4320.000000,176,0,-1.000000,1765.920000,baseline,lora,180 +on4,0,0,24,0,0,4176,4320.000000,176,0,-1.000000,1766.720000,baseline,lora,180 +on10,0,0,24,0,0,3962,4320.000000,177,0,-1.000000,1785.920000,baseline,lora,180 +on2,0,0,24,0,0,4046,4320.000000,177,0,-1.000000,1790.080000,baseline,lora,180 +on6,0,0,24,0,0,4247,4320.000000,177,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4095,4320.000000,177,0,-1.000000,1785.120000,baseline,lora,180 +on8,0,0,24,0,0,4318,4320.000000,177,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,1,0,360,4320.000000,177,0,7818.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4063,4320.000000,177,0,-1.000000,1795.360000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,177,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,177,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,177,0,-1.000000,2021.440000,baseline,lora,180 +on1,0,0,24,0,0,4076,4320.000000,177,0,-1.000000,1780.480000,baseline,lora,180 +on11,0,0,24,0,0,4258,4320.000000,177,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,1,0,720,4320.000000,177,0,16637.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,178,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,3964,4320.000000,178,0,-1.000000,1811.360000,baseline,lora,180 +on3,0,0,24,0,0,4154,4320.000000,178,0,-1.000000,1790.240000,baseline,lora,180 +on12,0,0,24,0,0,4128,4320.000000,178,0,-1.000000,1785.600000,baseline,lora,180 +on2,0,0,24,0,0,4094,4320.000000,178,0,-1.000000,1796.160000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,178,0,-1.000000,2090.080000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,178,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,1,0,3624,4320.000000,178,0,77448.000000,1802.400000,baseline,lora,180 +on6,0,0,24,1,0,2923,4320.000000,178,0,63291.000000,1781.440000,baseline,lora,180 +on9,0,0,24,0,0,4101,4320.000000,178,0,-1.000000,1763.360000,baseline,lora,180 +on8,0,0,24,0,0,4071,4320.000000,178,0,-1.000000,1768.160000,baseline,lora,180 +on11,0,0,24,1,0,900,4320.000000,178,0,20526.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4279,4320.000000,178,0,-1.000000,1734.720000,baseline,lora,180 +on3,0,0,24,1,0,1260,4320.000000,179,0,26505.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4155,4320.000000,179,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4061,4320.000000,179,0,-1.000000,1812.960000,baseline,lora,180 +on5,0,0,24,0,0,4184,4320.000000,179,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,179,0,-1.000000,2035.040000,baseline,lora,180 +on9,0,0,24,0,0,3911,4320.000000,179,0,-1.000000,1814.880000,baseline,lora,180 +on1,0,0,24,0,0,4305,4320.000000,179,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4150,4320.000000,179,0,-1.000000,1759.680000,baseline,lora,180 +on11,0,0,24,0,0,4249,4320.000000,179,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4253,4320.000000,179,0,-1.000000,1739.040000,baseline,lora,180 +on10,0,0,24,0,0,4005,4320.000000,179,0,-1.000000,1812.640000,baseline,lora,180 +on6,0,0,24,0,0,4190,4320.000000,179,0,-1.000000,1748.960000,baseline,lora,180 +on1,0,0,24,0,0,4300,4320.000000,180,0,-1.000000,1771.520000,baseline,lora,180 +on4,0,0,24,1,0,1551,4320.000000,180,0,34863.000000,1767.360000,baseline,lora,180 +on2,0,0,24,0,0,4089,4320.000000,180,0,-1.000000,1765.280000,baseline,lora,180 +on5,0,0,24,0,0,4153,4320.000000,180,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,4221,4320.000000,180,0,-1.000000,1766.720000,baseline,lora,180 +on7,0,0,24,1,0,1089,4320.000000,180,0,27522.000000,1786.880000,baseline,lora,180 +on10,0,0,24,0,0,4270,4320.000000,180,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4204,4320.000000,180,0,-1.000000,1746.720000,baseline,lora,180 +on6,0,0,24,0,0,4185,4320.000000,180,0,-1.000000,1749.760000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,180,0,-1.000000,2054.080000,baseline,lora,180 +on9,0,0,24,0,0,4158,4320.000000,180,0,-1.000000,1776.000000,baseline,lora,180 +on12,0,0,24,1,0,3173,4320.000000,180,0,67959.000000,1792.480000,baseline,lora,180 +on11,0,0,24,1,0,473,4320.000000,180,0,13177.000000,1766.720000,baseline,lora,180 +on12,0,0,24,0,0,4193,4320.000000,181,0,-1.000000,1748.800000,baseline,lora,180 +on5,0,0,24,0,0,4169,4320.000000,181,0,-1.000000,1752.480000,baseline,lora,180 +on2,0,0,24,0,0,3878,4320.000000,181,0,-1.000000,1830.560000,baseline,lora,180 +on4,0,0,24,0,0,4227,4320.000000,181,0,-1.000000,1768.800000,baseline,lora,180 +on1,0,0,24,0,0,4085,4320.000000,181,0,-1.000000,1772.640000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4264,4320.000000,181,0,-1.000000,1737.120000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,181,0,-1.000000,1996.000000,baseline,lora,180 +on9,0,0,24,1,0,1733,4320.000000,181,0,36581.000000,1767.200000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4181,4320.000000,181,0,-1.000000,1774.240000,baseline,lora,180 +on8,0,0,24,0,0,4212,4320.000000,181,0,-1.000000,1772.320000,baseline,lora,180 +on6,0,0,24,0,0,4261,4320.000000,181,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4202,4320.000000,182,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,1,0,1894,4320.000000,182,0,41266.000000,1785.600000,baseline,lora,180 +on6,0,0,24,0,0,4204,4320.000000,182,0,-1.000000,1746.720000,baseline,lora,180 +on3,0,0,24,0,0,4255,4320.000000,182,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4103,4320.000000,182,0,-1.000000,1771.040000,baseline,lora,180 +on12,0,0,24,1,0,3780,4320.000000,182,0,78645.000000,1753.600000,baseline,lora,180 +on9,0,0,24,1,0,1142,4320.000000,182,0,27738.000000,1781.120000,baseline,lora,180 +on11,0,0,24,0,0,4301,4320.000000,182,0,-1.000000,1781.280000,baseline,lora,180 +on2,0,0,24,1,0,684,4320.000000,182,0,14584.000000,1782.400000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,182,0,-1.000000,1981.280000,baseline,lora,180 +on10,0,0,24,0,0,4172,4320.000000,182,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,0,0,4278,4320.000000,183,0,-1.000000,1734.880000,baseline,lora,180 +on9,0,0,24,1,0,1472,4320.000000,183,0,33661.000000,1777.440000,baseline,lora,180 +on7,0,0,24,0,0,4206,4320.000000,183,0,-1.000000,1746.560000,baseline,lora,180 +on6,0,0,24,0,0,4136,4320.000000,183,0,-1.000000,1776.320000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,3976,4320.000000,183,0,-1.000000,1857.120000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,183,0,-1.000000,2094.080000,baseline,lora,180 +on3,0,0,24,0,0,3914,4320.000000,183,0,-1.000000,1839.680000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,1,0,370,4320.000000,183,0,7721.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,3843,4320.000000,183,0,-1.000000,1848.480000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4091,4320.000000,183,0,-1.000000,1766.080000,baseline,lora,180 +on9,0,0,24,1,0,3366,4320.000000,184,0,74806.000000,1819.360000,baseline,lora,180 +on2,0,0,24,0,0,4205,4320.000000,184,0,-1.000000,1766.080000,baseline,lora,180 +on7,0,0,24,0,0,4137,4320.000000,184,0,-1.000000,1777.920000,baseline,lora,180 +on5,0,0,24,0,0,4156,4320.000000,184,0,-1.000000,1761.920000,baseline,lora,180 +on3,0,0,24,0,0,4092,4320.000000,184,0,-1.000000,1764.800000,baseline,lora,180 +on1,0,0,24,1,0,189,4320.000000,184,0,6354.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,184,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4232,4320.000000,184,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4228,4320.000000,184,0,-1.000000,1742.880000,baseline,lora,180 +on12,0,0,24,0,0,4188,4320.000000,184,0,-1.000000,1763.520000,baseline,lora,180 +on11,0,0,24,0,0,4148,4320.000000,184,0,-1.000000,1770.400000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,184,0,-1.000000,2036.000000,baseline,lora,180 +on8,0,0,24,1,0,1085,4320.000000,184,0,22574.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4187,4320.000000,185,0,-1.000000,1749.440000,baseline,lora,180 +on2,0,0,24,1,0,3753,4320.000000,185,0,82086.000000,1807.360000,baseline,lora,180 +on3,0,0,24,0,0,4289,4320.000000,185,0,-1.000000,1733.120000,baseline,lora,180 +on4,0,0,24,0,0,4282,4320.000000,185,0,-1.000000,1734.240000,baseline,lora,180 +on9,0,0,24,0,0,4261,4320.000000,185,0,-1.000000,1784.160000,baseline,lora,180 +on11,0,0,24,1,0,2912,4320.000000,185,0,63096.000000,1794.560000,baseline,lora,180 +on8,0,0,24,0,0,4119,4320.000000,185,0,-1.000000,1760.640000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,185,0,-1.000000,2029.600000,baseline,lora,180 +on12,0,0,24,0,0,4230,4320.000000,185,0,-1.000000,1753.920000,baseline,lora,180 +on5,0,0,24,0,0,4205,4320.000000,185,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,1,0,978,4320.000000,185,0,24278.000000,1770.080000,baseline,lora,180 +on6,0,0,24,0,0,4123,4320.000000,185,0,-1.000000,1786.400000,baseline,lora,180 +on1,0,0,24,0,0,4275,4320.000000,185,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,1,0,2917,4320.000000,186,0,63508.000000,1789.280000,baseline,lora,180 +on9,0,0,24,0,0,4155,4320.000000,186,0,-1.000000,1765.440000,baseline,lora,180 +on12,0,0,24,0,0,4169,4320.000000,186,0,-1.000000,1752.480000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,186,0,-1.000000,2091.360000,baseline,lora,180 +on6,0,0,24,0,0,4255,4320.000000,186,0,-1.000000,1738.560000,baseline,lora,180 +on2,0,0,24,0,0,4195,4320.000000,186,0,-1.000000,1748.320000,baseline,lora,180 +on5,0,0,24,0,0,4029,4320.000000,186,0,-1.000000,1785.920000,baseline,lora,180 +on8,0,0,24,0,0,3872,4320.000000,186,0,-1.000000,1909.440000,baseline,lora,180 +on1,0,0,24,0,0,4008,4320.000000,186,0,-1.000000,1816.160000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4187,4320.000000,186,0,-1.000000,1785.600000,baseline,lora,180 +on10,0,0,24,0,0,4084,4320.000000,186,0,-1.000000,1777.760000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,3960,4320.000000,187,0,-1.000000,1786.080000,baseline,lora,180 +on10,0,0,24,0,0,4159,4320.000000,187,0,-1.000000,1764.960000,baseline,lora,180 +on12,0,0,24,0,0,4154,4320.000000,187,0,-1.000000,1787.520000,baseline,lora,180 +on9,0,0,24,0,0,4019,4320.000000,187,0,-1.000000,1794.720000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,187,0,-1.000000,2068.800000,baseline,lora,180 +on3,0,0,24,0,0,4221,4320.000000,187,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4098,4320.000000,187,0,-1.000000,1764.000000,baseline,lora,180 +on11,0,0,24,0,0,4134,4320.000000,187,0,-1.000000,1758.080000,baseline,lora,180 +on2,0,0,24,0,0,4161,4320.000000,187,0,-1.000000,1782.240000,baseline,lora,180 +on7,0,0,24,0,0,4149,4320.000000,187,0,-1.000000,1784.960000,baseline,lora,180 +on6,0,0,24,0,0,4201,4320.000000,187,0,-1.000000,1747.360000,baseline,lora,180 +on5,0,0,24,1,0,1446,4320.000000,187,0,30424.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4249,4320.000000,188,0,-1.000000,1739.520000,baseline,lora,180 +on8,0,0,24,0,0,4130,4320.000000,188,0,-1.000000,1762.880000,baseline,lora,180 +on3,0,0,24,0,0,4074,4320.000000,188,0,-1.000000,1804.000000,baseline,lora,180 +on1,0,0,24,0,0,4155,4320.000000,188,0,-1.000000,1768.000000,baseline,lora,180 +on9,0,0,24,0,0,4315,4320.000000,188,0,-1.000000,1728.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,188,0,-1.000000,2013.760000,baseline,lora,180 +on11,0,0,24,0,0,3953,4320.000000,188,0,-1.000000,1805.600000,baseline,lora,180 +on10,0,0,24,0,0,4149,4320.000000,188,0,-1.000000,1769.280000,baseline,lora,180 +on12,0,0,24,0,0,4163,4320.000000,188,0,-1.000000,1767.360000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,188,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,1,0,540,4320.000000,188,0,14090.000000,1753.600000,baseline,lora,180 +on7,0,0,24,1,0,1012,4320.000000,188,0,24710.000000,1765.760000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,188,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4094,4320.000000,189,0,-1.000000,1811.200000,baseline,lora,180 +on11,0,0,24,0,0,4163,4320.000000,189,0,-1.000000,1753.280000,baseline,lora,180 +on7,0,0,24,1,0,540,4320.000000,189,0,12598.000000,1753.600000,baseline,lora,180 +on0,1,6,24,0,0,0,4320.000000,189,0,-1.000000,2043.360000,baseline,lora,180 +on6,0,0,24,0,0,4110,4320.000000,189,0,-1.000000,1804.480000,baseline,lora,180 +on1,0,0,24,1,0,0,4320.000000,189,0,2990.000000,1753.600000,baseline,lora,180 +on5,0,0,24,1,0,906,4320.000000,189,0,19529.000000,1760.320000,baseline,lora,180 +on10,0,0,24,1,0,1260,4320.000000,189,0,26071.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4218,4320.000000,189,0,-1.000000,1766.720000,baseline,lora,180 +on4,0,0,24,1,0,198,4320.000000,189,0,6665.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4189,4320.000000,189,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4303,4320.000000,189,0,-1.000000,1730.880000,baseline,lora,180 +on8,0,0,24,1,0,2915,4320.000000,189,0,63709.000000,1777.280000,baseline,lora,180 +on11,0,0,24,0,0,4172,4320.000000,190,0,-1.000000,1754.080000,baseline,lora,180 +on8,0,0,24,0,0,4154,4320.000000,190,0,-1.000000,1754.880000,baseline,lora,180 +on10,0,0,24,0,0,4240,4320.000000,190,0,-1.000000,1740.960000,baseline,lora,180 +on7,0,0,24,0,0,4177,4320.000000,190,0,-1.000000,1814.400000,baseline,lora,180 +on3,0,0,24,0,0,4258,4320.000000,190,0,-1.000000,1748.640000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4185,4320.000000,190,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4255,4320.000000,190,0,-1.000000,1761.760000,baseline,lora,180 +on2,0,0,24,0,0,4215,4320.000000,190,0,-1.000000,1766.240000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,190,0,-1.000000,1933.120000,baseline,lora,180 +on1,0,0,24,0,0,4134,4320.000000,190,0,-1.000000,1785.600000,baseline,lora,180 +on6,0,0,24,0,0,4284,4320.000000,190,0,-1.000000,1733.920000,baseline,lora,180 +on5,0,0,24,0,0,4182,4320.000000,190,0,-1.000000,1782.400000,baseline,lora,180 +on7,0,0,24,0,0,4128,4320.000000,191,0,-1.000000,1787.840000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4035,4320.000000,191,0,-1.000000,1793.920000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4229,4320.000000,191,0,-1.000000,1742.880000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,191,0,-1.000000,2127.680000,baseline,lora,180 +on5,0,0,24,0,0,4044,4320.000000,191,0,-1.000000,1792.800000,baseline,lora,180 +on10,0,0,24,0,0,4202,4320.000000,191,0,-1.000000,1747.040000,baseline,lora,180 +on2,0,0,24,0,0,3861,4320.000000,191,0,-1.000000,1827.680000,baseline,lora,180 +on9,0,0,24,1,0,1373,4320.000000,191,0,30051.000000,1764.480000,baseline,lora,180 +on12,0,0,24,0,0,3867,4320.000000,191,0,-1.000000,1816.160000,baseline,lora,180 +on3,0,0,24,0,0,4105,4320.000000,191,0,-1.000000,1768.000000,baseline,lora,180 +on1,0,0,24,0,0,4164,4320.000000,191,0,-1.000000,1753.280000,baseline,lora,180 +on7,0,0,24,0,0,4210,4320.000000,192,0,-1.000000,1745.760000,baseline,lora,180 +on12,0,0,24,0,0,4204,4320.000000,192,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4235,4320.000000,192,0,-1.000000,1782.560000,baseline,lora,180 +on8,0,0,24,0,0,4268,4320.000000,192,0,-1.000000,1736.480000,baseline,lora,180 +on6,0,0,24,0,0,3948,4320.000000,192,0,-1.000000,1788.000000,baseline,lora,180 +on4,0,0,24,0,0,4309,4320.000000,192,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,3965,4320.000000,192,0,-1.000000,1785.280000,baseline,lora,180 +on2,0,0,24,0,0,4199,4320.000000,192,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4149,4320.000000,192,0,-1.000000,1791.520000,baseline,lora,180 +on3,0,0,24,1,0,2133,4320.000000,192,0,49113.000000,1800.800000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,192,0,-1.000000,2063.840000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,192,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4003,4320.000000,192,0,-1.000000,1813.760000,baseline,lora,180 +on9,0,0,24,0,0,4159,4320.000000,193,0,-1.000000,1760.000000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,193,0,-1.000000,2054.240000,baseline,lora,180 +on8,0,0,24,0,0,3831,4320.000000,193,0,-1.000000,1839.200000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,193,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,1,0,985,4320.000000,193,0,25177.000000,1785.920000,baseline,lora,180 +on10,0,0,24,0,0,4232,4320.000000,193,0,-1.000000,1742.400000,baseline,lora,180 +on3,0,0,24,0,0,4297,4320.000000,193,0,-1.000000,1731.840000,baseline,lora,180 +on7,0,0,24,1,0,360,4320.000000,193,0,9799.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4198,4320.000000,193,0,-1.000000,1774.400000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,193,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,1,0,3166,4320.000000,193,0,71545.000000,1795.840000,baseline,lora,180 +on5,0,0,24,0,0,4113,4320.000000,193,0,-1.000000,1765.280000,baseline,lora,180 +on2,0,0,24,0,0,4238,4320.000000,193,0,-1.000000,1741.280000,baseline,lora,180 +on12,0,0,24,0,0,4266,4320.000000,194,0,-1.000000,1736.800000,baseline,lora,180 +on11,0,0,24,1,0,1080,4320.000000,194,0,23258.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4277,4320.000000,194,0,-1.000000,1746.400000,baseline,lora,180 +on10,0,0,24,0,0,4202,4320.000000,194,0,-1.000000,1747.040000,baseline,lora,180 +on8,0,0,24,1,0,3703,4320.000000,194,0,77162.000000,1796.640000,baseline,lora,180 +on6,0,0,24,0,0,3996,4320.000000,194,0,-1.000000,1845.760000,baseline,lora,180 +on1,0,0,24,0,0,3839,4320.000000,194,0,-1.000000,1805.760000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,194,0,-1.000000,2063.840000,baseline,lora,180 +on2,0,0,24,0,0,4257,4320.000000,194,0,-1.000000,1768.960000,baseline,lora,180 +on3,0,0,24,0,0,3879,4320.000000,194,0,-1.000000,1821.920000,baseline,lora,180 +on7,0,0,24,0,0,4208,4320.000000,194,0,-1.000000,1746.080000,baseline,lora,180 +on9,0,0,24,0,0,4304,4320.000000,194,0,-1.000000,1730.720000,baseline,lora,180 +on5,0,0,24,0,0,4313,4320.000000,194,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4140,4320.000000,195,0,-1.000000,1772.000000,baseline,lora,180 +on10,0,0,24,0,0,4196,4320.000000,195,0,-1.000000,1766.400000,baseline,lora,180 +on5,0,0,24,1,0,540,4320.000000,195,0,12025.000000,1753.600000,baseline,lora,180 +on1,0,0,24,1,0,3932,4320.000000,195,0,79860.000000,1769.760000,baseline,lora,180 +on7,0,0,24,0,0,4053,4320.000000,195,0,-1.000000,1802.560000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,195,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4230,4320.000000,195,0,-1.000000,1742.560000,baseline,lora,180 +on3,0,0,24,0,0,4177,4320.000000,195,0,-1.000000,1751.040000,baseline,lora,180 +on8,0,0,24,1,0,720,4320.000000,195,0,17796.000000,1753.600000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,195,0,-1.000000,2000.800000,baseline,lora,180 +on2,0,0,24,0,0,4027,4320.000000,195,0,-1.000000,1791.520000,baseline,lora,180 +on6,0,0,24,0,0,4304,4320.000000,195,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4261,4320.000000,195,0,-1.000000,1737.760000,baseline,lora,180 +on3,0,0,24,0,0,4009,4320.000000,196,0,-1.000000,1782.720000,baseline,lora,180 +on10,0,0,24,0,0,4169,4320.000000,196,0,-1.000000,1752.320000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,196,0,-1.000000,2039.200000,baseline,lora,180 +on12,0,0,24,1,0,900,4320.000000,196,0,20407.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4290,4320.000000,196,0,-1.000000,1732.960000,baseline,lora,180 +on11,0,0,24,0,0,4248,4320.000000,196,0,-1.000000,1739.680000,baseline,lora,180 +on2,0,0,24,0,0,4196,4320.000000,196,0,-1.000000,1748.160000,baseline,lora,180 +on7,0,0,24,0,0,4133,4320.000000,196,0,-1.000000,1758.240000,baseline,lora,180 +on8,0,0,24,0,0,3867,4320.000000,196,0,-1.000000,1836.960000,baseline,lora,180 +on5,0,0,24,0,0,4198,4320.000000,196,0,-1.000000,1773.280000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4005,4320.000000,196,0,-1.000000,1824.320000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4029,4320.000000,197,0,-1.000000,1796.000000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4077,4320.000000,197,0,-1.000000,1767.200000,baseline,lora,180 +on7,0,0,24,0,0,4293,4320.000000,197,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4202,4320.000000,197,0,-1.000000,1782.240000,baseline,lora,180 +on4,0,0,24,0,0,4110,4320.000000,197,0,-1.000000,1761.920000,baseline,lora,180 +on3,0,0,24,0,0,4308,4320.000000,197,0,-1.000000,1730.080000,baseline,lora,180 +on9,0,0,24,0,0,3923,4320.000000,197,0,-1.000000,1824.000000,baseline,lora,180 +on2,0,0,24,0,0,4112,4320.000000,197,0,-1.000000,1800.000000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,197,0,-1.000000,2019.200000,baseline,lora,180 +on5,0,0,24,0,0,4191,4320.000000,197,0,-1.000000,1769.120000,baseline,lora,180 +on12,0,0,24,0,0,4159,4320.000000,197,0,-1.000000,1779.840000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4201,4320.000000,198,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,1,0,2342,4320.000000,198,0,51841.000000,1840.000000,baseline,lora,180 +on4,0,0,24,0,0,4284,4320.000000,198,0,-1.000000,1747.840000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,198,0,-1.000000,2034.400000,baseline,lora,180 +on3,0,0,24,0,0,4084,4320.000000,198,0,-1.000000,1795.840000,baseline,lora,180 +on11,0,0,24,1,0,3179,4320.000000,198,0,74403.000000,1850.560000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,1,0,3060,4320.000000,198,0,64492.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4237,4320.000000,198,0,-1.000000,1757.600000,baseline,lora,180 +on8,0,0,24,0,0,4147,4320.000000,198,0,-1.000000,1763.040000,baseline,lora,180 +on1,0,0,24,1,0,192,4320.000000,198,0,4549.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4235,4320.000000,199,0,-1.000000,1741.760000,baseline,lora,180 +on5,0,0,24,0,0,4090,4320.000000,199,0,-1.000000,1807.040000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4149,4320.000000,199,0,-1.000000,1808.800000,baseline,lora,180 +on6,0,0,24,0,0,4219,4320.000000,199,0,-1.000000,1765.280000,baseline,lora,180 +on10,0,0,24,0,0,4295,4320.000000,199,0,-1.000000,1732.160000,baseline,lora,180 +on11,0,0,24,0,0,4132,4320.000000,199,0,-1.000000,1782.400000,baseline,lora,180 +on1,0,0,24,0,0,4228,4320.000000,199,0,-1.000000,1757.280000,baseline,lora,180 +on2,0,0,24,1,0,1924,4320.000000,199,0,43793.000000,1827.040000,baseline,lora,180 +on4,0,0,24,1,0,861,4320.000000,199,0,21387.000000,1760.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,199,0,-1.000000,2069.600000,baseline,lora,180 +on7,0,0,24,0,0,3697,4320.000000,199,0,-1.000000,1864.800000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4225,4320.000000,200,0,-1.000000,1743.360000,baseline,lora,180 +on1,0,0,24,0,0,4238,4320.000000,200,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,1,0,1516,4320.000000,200,0,32567.000000,1775.680000,baseline,lora,180 +on11,0,0,24,1,0,377,4320.000000,200,0,8638.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4221,4320.000000,200,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,1,0,2700,4320.000000,200,0,55918.000000,1753.600000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,200,0,-1.000000,1967.680000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4211,4320.000000,200,0,-1.000000,1745.600000,baseline,lora,180 +on12,0,0,24,0,0,4208,4320.000000,200,0,-1.000000,1764.160000,baseline,lora,180 +on3,0,0,24,1,0,1565,4320.000000,200,0,37287.000000,1815.520000,baseline,lora,180 +on6,0,0,26,1,0,872,4680.000000,1,3,18285.001280,1951.855590,hint,lora,180 +on4,0,0,26,1,0,496,4680.000000,1,3,11886.001280,2013.920614,hint,lora,180 +on9,0,0,25,1,0,1282,4500.000000,1,1,29260.001280,1882.560000,hint,lora,180 +on12,0,0,25,1,0,936,4500.000000,1,1,22695.001280,1854.879795,hint,lora,180 +on11,0,0,27,1,0,3542,4914.000000,1,4,79882.001280,2127.567386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,1,0,-1.000000,2122.244096,hint,lora,180 +on7,0,0,26,1,0,1423,4743.000000,1,4,25707.001280,1947.023181,hint,lora,180 +on2,0,0,26,1,0,2319,4680.000000,1,2,44102.001280,1961.183590,hint,lora,180 +on1,0,0,29,1,0,1934,5220.000000,1,6,36663.001280,2217.934976,hint,lora,180 +on10,0,0,24,1,0,367,4320.000000,1,0,8378.001280,1782.560410,hint,lora,180 +on3,0,0,25,1,0,1508,4500.000000,1,1,34915.001280,1864.543590,hint,lora,180 +on8,0,0,27,1,0,2213,4860.000000,1,3,47139.001280,2067.568000,hint,lora,180 +on5,0,0,27,1,0,2028,4860.000000,1,3,42143.001280,2015.775386,hint,lora,180 +on6,0,0,30,1,0,2082,5573.000000,2,7,45842.001280,2438.542566,hint,lora,180 +on7,0,0,24,1,0,313,4320.000000,2,0,7608.001280,1763.680205,hint,lora,180 +on2,0,0,26,1,0,1422,4680.000000,2,2,31062.001280,1924.384000,hint,lora,180 +on12,0,0,28,1,0,1843,5040.000000,2,4,35535.001280,2105.599386,hint,lora,180 +on8,0,0,27,1,0,2136,4860.000000,2,3,42867.001280,2032.271795,hint,lora,180 +on3,0,0,28,1,0,1932,5209.000000,2,5,39546.001280,2250.414771,hint,lora,180 +on1,0,0,28,1,0,1060,5200.000000,2,6,24692.001280,2222.623386,hint,lora,180 +on11,0,0,25,1,0,720,4500.000000,2,1,13759.001280,1828.543795,hint,lora,180 +on5,0,0,25,1,0,44,4500.000000,2,1,6177.001280,1872.704205,hint,lora,180 +on4,0,0,36,1,0,2442,6480.000000,2,12,52235.001280,2930.286362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,2,0,-1.000000,2146.594458,hint,lora,180 +on10,0,0,29,1,0,3372,5220.000000,2,5,62275.602560,2150.542771,hint,lora,180 +on9,0,0,27,1,0,1412,4860.000000,2,3,28146.001280,2002.512205,hint,lora,180 +on3,0,0,26,1,0,1048,4680.000000,3,2,18936.001280,1903.791795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,3,0,-1.000000,2236.450048,hint,lora,180 +on4,0,0,24,0,0,3984,4320.000000,3,0,-1.000000,1782.400000,hint,lora,180 +on6,0,0,34,1,0,3197,6120.000000,3,10,59249.001280,2613.213747,hint,lora,180 +on11,0,0,26,1,0,867,4680.000000,3,2,16455.001280,1919.312205,hint,lora,180 +on7,0,0,28,1,0,1838,5040.000000,3,4,33660.001280,2072.527795,hint,lora,180 +on2,0,0,31,1,0,2523,5580.000000,3,8,55744.001280,2487.166771,hint,lora,180 +on10,0,0,25,1,0,117,4500.000000,3,1,3915.001280,1863.808410,hint,lora,180 +on12,0,0,34,1,0,2700,6120.000000,3,11,44800.002560,2621.310771,hint,lora,180 +on1,0,0,28,1,0,2986,5040.000000,3,5,64197.001280,2161.630976,hint,lora,180 +on8,0,0,28,1,0,2465,5148.000000,3,5,53432.001280,2175.839181,hint,lora,180 +on5,0,0,33,1,0,2408,6093.000000,3,10,39901.001280,2609.294976,hint,lora,180 +on9,0,0,26,1,0,1187,4680.000000,3,2,22609.001280,1917.184410,hint,lora,180 +on12,0,0,24,1,0,929,4357.000000,4,1,26175.001280,1842.159795,hint,lora,180 +on10,0,0,28,1,0,1104,5040.000000,4,4,18504.002560,2086.623795,hint,lora,180 +on9,0,0,24,1,0,337,4371.000000,4,1,10425.001280,1784.944000,hint,lora,180 +on2,0,0,31,1,0,3236,5580.000000,4,8,67172.001280,2382.174362,hint,lora,180 +on7,0,0,24,0,0,4162,4320.000000,4,0,-1.000000,1753.440000,hint,lora,180 +on1,0,0,32,1,0,1887,5760.000000,4,9,39503.001280,2478.654157,hint,lora,180 +on5,0,0,29,1,0,1837,5401.000000,4,7,29778.001280,2232.207590,hint,lora,180 +on3,0,0,25,1,0,147,4500.000000,4,1,4638.001280,1885.360205,hint,lora,180 +on6,0,0,27,1,0,1635,4860.000000,4,3,32599.001280,2042.943386,hint,lora,180 +on4,0,0,28,1,0,3234,5040.000000,4,4,64007.001280,2152.383590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,4,0,-1.000000,2142.978662,hint,lora,180 +on8,0,0,24,1,0,12,4320.000000,4,0,1108.001280,1754.623795,hint,lora,180 +on11,0,0,30,1,0,1182,5400.000000,4,7,22760.001280,2276.286976,hint,lora,180 +on8,0,0,33,1,0,2035,5940.000000,5,11,42261.001280,2596.830362,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,5,0,-1.000000,2096.866253,hint,lora,180 +on5,0,0,27,1,0,1222,4860.000000,5,3,23739.001280,2022.976205,hint,lora,180 +on2,0,0,26,1,0,499,4680.000000,5,2,10243.001280,1913.664205,hint,lora,180 +on9,0,0,25,1,0,683,4500.000000,5,1,14255.001280,1836.480000,hint,lora,180 +on3,0,0,27,1,0,1249,4860.000000,5,3,20897.001280,1980.703590,hint,lora,180 +on1,0,0,26,1,0,1177,4792.000000,5,3,26878.001280,1992.623795,hint,lora,180 +on11,0,0,24,1,0,130,4339.000000,5,1,5376.001280,1773.248205,hint,lora,180 +on7,0,0,27,1,0,814,4908.000000,5,4,16347.001280,2057.551795,hint,lora,180 +on6,0,0,31,1,0,1889,5673.000000,5,8,35425.001280,2434.895590,hint,lora,180 +on12,0,0,31,1,0,2053,5580.000000,5,7,32126.001280,2292.750976,hint,lora,180 +on10,0,0,33,1,0,2568,5940.000000,5,9,37967.001280,2487.182566,hint,lora,180 +on4,0,0,29,0,0,4252,5333.000000,5,6,-1.000000,2275.695181,hint,lora,180 +on8,0,0,30,1,0,2675,5400.000000,6,6,50906.001280,2269.358566,hint,lora,180 +on1,0,0,24,0,0,4238,4320.000000,6,0,-1.000000,1741.280000,hint,lora,180 +on5,0,0,27,1,0,2326,4860.000000,6,3,49135.001280,2006.767181,hint,lora,180 +on6,0,0,27,1,0,1962,4860.000000,6,3,41266.001280,2077.999590,hint,lora,180 +on10,0,0,25,1,0,1160,4500.000000,6,1,27682.001280,1873.344000,hint,lora,180 +on3,0,0,25,1,0,1632,4622.000000,6,2,36647.001280,1964.544205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,6,0,-1.000000,2144.802253,hint,lora,180 +on2,0,0,28,1,0,2175,5040.000000,6,4,44929.001280,2162.303795,hint,lora,180 +on11,0,0,28,1,0,1605,5040.000000,6,4,29095.001280,2110.095386,hint,lora,180 +on4,0,0,25,1,0,1560,4500.000000,6,1,33240.001280,1837.984000,hint,lora,180 +on7,0,0,33,1,0,2809,6324.000000,6,13,55027.001280,2763.118362,hint,lora,180 +on9,0,0,25,1,0,892,4500.000000,6,1,17891.001280,1828.543795,hint,lora,180 +on12,0,0,24,1,0,193,4320.000000,6,0,4019.001280,1753.600205,hint,lora,180 +on2,0,0,26,1,0,1200,4944.000000,7,5,22514.001280,2065.807795,hint,lora,180 +on10,0,0,25,1,0,531,4500.000000,7,1,11030.001280,1916.224205,hint,lora,180 +on3,0,0,25,1,0,703,4500.000000,7,1,16486.001280,1859.744000,hint,lora,180 +on6,0,0,25,1,0,1128,4500.000000,7,1,25512.001280,1856.607795,hint,lora,180 +on5,0,0,28,1,0,1676,5040.000000,7,4,32277.001280,2108.271386,hint,lora,180 +on4,0,0,25,1,0,1620,4509.000000,7,3,35752.001280,1843.920205,hint,lora,180 +on12,0,0,24,1,0,16,4320.000000,7,0,450.001280,1776.448205,hint,lora,180 +on9,0,0,25,1,0,3029,4500.000000,7,1,71761.001280,1920.592000,hint,lora,180 +on8,0,0,32,1,0,2027,5760.000000,7,9,43947.001280,2542.573747,hint,lora,180 +on7,0,0,29,1,0,1787,5220.000000,7,6,38037.001280,2267.454771,hint,lora,180 +on11,0,0,25,1,0,203,4500.000000,7,2,9469.001280,1879.200000,hint,lora,180 +on1,0,0,25,1,0,260,4500.000000,7,1,4999.001280,1862.720410,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,7,0,-1.000000,2119.523072,hint,lora,180 +on7,0,0,24,1,0,846,4482.000000,8,2,20245.001280,1827.040000,hint,lora,180 +on2,0,0,24,1,0,547,4320.000000,8,0,13380.001280,1753.600410,hint,lora,180 +on11,0,0,24,1,0,1908,4320.000000,8,0,42738.001280,1768.320000,hint,lora,180 +on12,0,0,25,1,0,706,4500.000000,8,2,14925.001280,1851.200410,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,8,0,-1.000000,2086.628710,hint,lora,180 +on6,0,0,25,1,0,1003,4500.000000,8,2,22619.001280,1872.895795,hint,lora,180 +on3,0,0,24,0,0,4019,4320.000000,8,0,-1.000000,1779.680000,hint,lora,180 +on5,0,0,25,1,0,1743,4500.000000,8,1,33671.001280,1840.320205,hint,lora,180 +on4,0,0,28,1,0,1984,5040.000000,8,5,36170.001280,2160.688205,hint,lora,180 +on1,0,0,27,1,0,2118,4860.000000,8,3,46773.001280,2047.071181,hint,lora,180 +on8,0,0,29,1,0,2588,5220.000000,8,6,47258.001280,2190.303181,hint,lora,180 +on9,0,0,24,1,0,3,4320.000000,8,0,1816.001280,1753.600614,hint,lora,180 +on10,0,0,26,1,0,1454,4680.000000,8,2,29728.001280,1976.352205,hint,lora,180 +on4,0,0,29,0,0,4561,5220.000000,9,5,-1.000000,2171.358771,hint,lora,180 +on12,0,0,25,1,0,182,4655.000000,9,2,9825.001280,1978.111795,hint,lora,180 +on1,0,0,25,1,0,357,4500.000000,9,1,6324.001280,1885.616410,hint,lora,180 +on5,0,0,31,1,0,1907,5653.000000,9,8,31174.001280,2368.078771,hint,lora,180 +on8,0,0,26,1,0,946,4680.000000,9,2,20223.001280,1916.240000,hint,lora,180 +on2,0,0,31,1,0,1814,5580.000000,9,7,27100.001280,2331.391386,hint,lora,180 +on7,0,0,31,1,0,2242,5580.000000,9,7,38592.001280,2370.718771,hint,lora,180 +on6,0,0,26,1,0,847,4917.000000,9,4,17419.001280,2112.079795,hint,lora,180 +on11,0,0,25,1,0,589,4602.000000,9,2,11466.001280,1923.168410,hint,lora,180 +on10,0,0,30,1,0,1897,5400.000000,9,6,32693.001280,2253.342976,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,9,0,-1.000000,2075.490253,hint,lora,180 +on9,0,0,27,1,0,4269,4860.000000,9,3,85655.000000,2033.535386,hint,lora,180 +on3,0,0,27,1,0,1153,4860.000000,9,3,24143.001280,2006.831795,hint,lora,180 +on10,0,0,25,1,0,2795,4501.000000,10,2,59967.001280,1869.743795,hint,lora,180 +on4,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,hint,lora,180 +on2,0,0,26,1,0,1829,4680.000000,10,2,42318.001280,1966.896205,hint,lora,180 +on5,0,0,25,1,0,2797,4524.000000,10,2,54863.001280,1841.551590,hint,lora,180 +on7,0,0,27,1,0,2440,4860.000000,10,3,51513.001280,2043.311795,hint,lora,180 +on1,0,0,30,1,0,3155,5523.000000,10,7,64979.001280,2408.286566,hint,lora,180 +on11,0,0,28,1,0,3628,5040.000000,10,5,69341.001280,2062.991386,hint,lora,180 +on3,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,hint,lora,180 +on8,0,0,24,1,0,180,4320.000000,10,0,5433.001280,1753.600205,hint,lora,180 +on9,0,0,25,1,0,3504,4618.000000,10,3,73297.401280,1918.079795,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,10,0,-1.000000,2151.266253,hint,lora,180 +on6,0,0,24,1,0,729,4320.000000,10,0,14855.001280,1753.600410,hint,lora,180 +on12,0,0,25,1,0,3069,4500.000000,10,2,64775.001280,1928.159795,hint,lora,180 +on9,0,0,27,1,0,1109,4990.000000,11,4,22963.001280,2109.071590,hint,lora,180 +on12,0,0,27,1,0,3017,4860.000000,11,3,56183.001280,1977.951795,hint,lora,180 +on8,0,0,32,1,0,2198,5760.000000,11,8,37009.001280,2449.998771,hint,lora,180 +on5,0,0,25,1,0,766,4500.000000,11,1,17077.001280,1828.480000,hint,lora,180 +on3,0,0,29,1,0,1571,5220.000000,11,5,27518.001280,2136.367386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,11,0,-1.000000,2099.906458,hint,lora,180 +on1,0,0,25,1,0,2674,4500.000000,11,3,59420.001280,1881.119795,hint,lora,180 +on6,0,0,24,1,0,448,4399.000000,11,1,12450.001280,1844.144205,hint,lora,180 +on2,0,0,27,1,0,1857,4860.000000,11,3,35192.001280,1994.736205,hint,lora,180 +on7,0,0,33,1,0,2383,5940.000000,11,10,46426.001280,2579.934566,hint,lora,180 +on10,0,0,30,1,0,2331,5400.000000,11,7,43012.001280,2288.606566,hint,lora,180 +on4,0,0,27,1,0,980,4860.000000,11,3,19089.001280,2019.231386,hint,lora,180 +on11,0,0,28,1,0,1503,5196.000000,11,5,28978.001280,2163.728205,hint,lora,180 +on11,0,0,31,1,0,2292,5580.000000,12,7,41313.001280,2385.551590,hint,lora,180 +on6,0,0,31,1,0,2751,5580.000000,12,7,46261.001280,2318.366566,hint,lora,180 +on4,0,0,25,1,0,98,4500.000000,12,1,4659.001280,1835.360410,hint,lora,180 +on1,0,0,26,1,0,1421,4680.000000,12,2,30026.001280,1972.975386,hint,lora,180 +on5,0,0,31,1,0,2119,5580.000000,12,7,38757.001280,2371.519181,hint,lora,180 +on9,0,0,29,1,0,1780,5220.000000,12,5,32984.001280,2209.519386,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,12,0,-1.000000,2142.658253,hint,lora,180 +on7,0,0,31,0,0,4258,5744.000000,12,8,-1.000000,2501.261747,hint,lora,180 +on2,0,0,26,1,0,1070,4680.000000,12,2,23080.001280,1933.023795,hint,lora,180 +on10,0,0,28,1,0,1500,5040.000000,12,4,25456.001280,2088.319795,hint,lora,180 +on8,0,0,26,1,0,993,4680.000000,12,2,21097.001280,1973.456205,hint,lora,180 +on12,0,0,28,0,0,4119,5040.000000,12,4,-1.000000,2135.070771,hint,lora,180 +on3,0,0,25,1,0,704,4500.000000,12,1,16574.001280,1896.384205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,13,0,-1.000000,2083.203072,hint,lora,180 +on2,0,0,25,1,0,17,4500.000000,13,1,6263.001280,1851.264205,hint,lora,180 +on1,0,0,26,1,0,908,4680.000000,13,2,21183.001280,1992.432000,hint,lora,180 +on8,0,0,25,1,0,267,4500.000000,13,1,7457.001280,1903.584614,hint,lora,180 +on5,0,0,29,1,0,1944,5295.000000,13,6,34930.001280,2222.479386,hint,lora,180 +on9,0,0,27,1,0,1704,4860.000000,13,3,31745.001280,1994.191386,hint,lora,180 +on3,0,0,25,1,0,1288,4500.000000,13,1,26674.001280,1879.296000,hint,lora,180 +on10,0,0,30,1,0,3477,5400.000000,13,7,63485.001280,2230.238566,hint,lora,180 +on12,0,0,27,1,0,1905,4860.000000,13,4,39287.001280,2086.015590,hint,lora,180 +on7,0,0,25,1,0,503,4500.000000,13,1,11984.001280,1828.543795,hint,lora,180 +on11,0,0,25,1,0,679,4500.000000,13,1,17634.001280,1853.487795,hint,lora,180 +on4,0,0,26,1,0,1249,4680.000000,13,2,23393.001280,1951.792205,hint,lora,180 +on6,0,0,25,1,0,2152,4500.000000,13,1,41685.001280,1854.240205,hint,lora,180 +on3,0,0,26,1,0,807,4735.000000,14,3,14930.001280,1946.368000,hint,lora,180 +on7,0,0,29,1,0,2243,5278.000000,14,6,41043.001280,2208.446771,hint,lora,180 +on4,0,0,29,1,0,1988,5220.000000,14,5,34969.001280,2167.567181,hint,lora,180 +on12,0,0,28,1,0,1814,5111.000000,14,6,37973.001280,2205.263181,hint,lora,180 +on1,0,0,26,1,0,1028,4680.000000,14,2,22067.001280,1972.480000,hint,lora,180 +on5,0,0,27,1,0,565,4860.000000,14,3,13645.001280,2100.463386,hint,lora,180 +on8,0,0,26,1,0,465,4680.000000,14,2,8716.001280,1928.512205,hint,lora,180 +on11,0,0,28,1,0,1427,5161.000000,14,6,27550.001280,2204.927386,hint,lora,180 +on10,0,0,26,1,0,922,4841.000000,14,3,19464.001280,2039.727795,hint,lora,180 +on2,0,0,27,1,0,4210,4860.000000,14,3,80969.001280,1979.199181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,14,0,-1.000000,2089.027686,hint,lora,180 +on9,0,0,29,1,0,1740,5379.000000,14,6,30357.001280,2275.087181,hint,lora,180 +on6,0,0,25,1,0,136,4500.000000,14,1,4280.001280,1919.631795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,15,0,-1.000000,2143.651277,hint,lora,180 +on11,0,0,30,1,0,4081,5652.000000,15,8,79023.001280,2432.590976,hint,lora,180 +on4,0,0,25,1,0,1525,4500.000000,15,2,33025.001280,1856.912000,hint,lora,180 +on1,0,0,32,1,0,2184,5791.000000,15,9,42948.001280,2517.216000,hint,lora,180 +on8,0,0,29,1,0,4078,5331.000000,15,7,80998.001280,2285.182976,hint,lora,180 +on3,0,0,28,1,0,1466,5152.000000,15,5,27312.001280,2151.391181,hint,lora,180 +on5,0,0,33,1,0,2550,5940.000000,15,10,49598.001280,2641.535590,hint,lora,180 +on10,0,0,28,1,0,2206,5040.000000,15,4,45296.001280,2165.183590,hint,lora,180 +on6,0,0,25,1,0,242,4500.000000,15,1,8089.001280,1889.408205,hint,lora,180 +on2,0,0,25,1,0,936,4529.000000,15,2,19144.001280,1857.888000,hint,lora,180 +on12,0,0,32,1,0,2231,5760.000000,15,8,39350.001280,2506.286976,hint,lora,180 +on9,0,0,25,1,0,697,4631.000000,15,2,17821.001280,1942.432205,hint,lora,180 +on7,0,0,28,1,0,1458,5040.000000,15,4,30381.001280,2122.494976,hint,lora,180 +on11,0,0,27,1,0,600,4860.000000,16,3,11665.001280,2067.471795,hint,lora,180 +on5,0,0,25,1,0,258,4500.000000,16,1,8926.001280,1879.072205,hint,lora,180 +on7,0,0,25,1,0,125,4500.000000,16,1,4468.001280,1910.816410,hint,lora,180 +on1,0,0,30,1,0,2261,5441.000000,16,7,42980.001280,2317.759181,hint,lora,180 +on2,0,0,27,1,0,932,4860.000000,16,3,18469.001280,2008.607795,hint,lora,180 +on4,0,0,29,1,0,1267,5220.000000,16,5,21846.001280,2223.583181,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,16,0,-1.000000,2068.003482,hint,lora,180 +on9,0,0,26,1,0,753,4680.000000,16,2,16066.001280,1903.584000,hint,lora,180 +on8,0,0,26,1,0,1433,4680.000000,16,2,29707.001280,1986.463795,hint,lora,180 +on12,0,0,30,1,0,1909,5403.000000,16,7,35476.001280,2274.271590,hint,lora,180 +on10,0,0,32,1,0,2044,5818.000000,16,10,36267.001280,2549.022771,hint,lora,180 +on6,0,0,30,0,0,4680,5400.000000,16,6,-1.000000,2240.223386,hint,lora,180 +on3,0,0,25,1,0,1124,4500.000000,16,1,28277.001280,1850.144000,hint,lora,180 +on2,0,0,25,1,0,2082,4640.000000,17,2,41622.001280,1937.456205,hint,lora,180 +on8,0,0,27,1,0,1882,4860.000000,17,4,37627.001280,2032.096000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,17,0,-1.000000,2151.778253,hint,lora,180 +on5,0,0,30,1,0,3056,5400.000000,17,6,59451.001280,2242.495181,hint,lora,180 +on4,0,0,25,1,0,1098,4610.000000,17,3,23480.001280,1896.256410,hint,lora,180 +on12,0,0,26,1,0,1413,4680.000000,17,3,25857.001280,1927.327590,hint,lora,180 +on7,0,0,27,0,0,4294,4860.000000,17,3,-1.000000,2020.927181,hint,lora,180 +on3,0,0,28,1,0,3205,5040.000000,17,4,63320.001280,2076.655386,hint,lora,180 +on6,0,0,30,1,0,2721,5400.000000,17,6,55227.001280,2311.998976,hint,lora,180 +on10,0,0,27,1,0,2066,4860.000000,17,3,45364.001280,2045.919590,hint,lora,180 +on11,0,0,24,1,0,903,4320.000000,17,0,21479.001280,1753.600205,hint,lora,180 +on9,0,0,28,1,0,2609,5040.000000,17,4,51832.001280,2113.694976,hint,lora,180 +on1,0,0,27,1,0,2371,4860.000000,17,3,47076.001280,2070.879590,hint,lora,180 +on5,0,0,33,1,0,2744,5940.000000,18,9,50632.001280,2554.510566,hint,lora,180 +on12,0,0,28,0,0,4529,5040.000000,18,4,-1.000000,2081.327590,hint,lora,180 +on7,0,0,31,1,0,3510,5580.000000,18,7,58841.001280,2338.030566,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,18,0,-1.000000,2216.032819,hint,lora,180 +on1,0,0,28,1,0,1659,5040.000000,18,4,31323.001280,2070.287795,hint,lora,180 +on11,0,0,26,1,0,1881,4680.000000,18,2,36800.001280,1933.984000,hint,lora,180 +on4,0,0,28,1,0,3248,5040.000000,18,6,66254.001280,2125.454976,hint,lora,180 +on8,0,0,27,1,0,2733,4860.000000,18,3,57378.001280,2064.144410,hint,lora,180 +on2,0,0,28,0,0,4512,5040.000000,18,4,-1.000000,2064.638771,hint,lora,180 +on6,0,0,26,1,0,893,4680.000000,18,2,21556.001280,1941.568000,hint,lora,180 +on3,0,0,31,1,0,2502,5721.000000,18,8,48204.001280,2452.223590,hint,lora,180 +on9,0,0,27,1,0,3122,4860.000000,18,3,62279.001280,1995.103590,hint,lora,180 +on10,0,0,27,1,0,2359,4860.000000,18,3,45845.001280,2013.663590,hint,lora,180 +on7,0,0,27,1,0,1019,4860.000000,19,3,15696.001280,1976.207795,hint,lora,180 +on2,0,0,27,1,0,1469,4860.000000,19,3,29900.002560,2014.143386,hint,lora,180 +on1,0,0,25,1,0,242,4500.000000,19,1,9591.001280,1882.432205,hint,lora,180 +on10,0,0,25,1,0,1607,4500.000000,19,1,33265.001280,1825.808410,hint,lora,180 +on6,0,0,25,1,0,2583,4500.000000,19,1,52443.001280,1866.848205,hint,lora,180 +on11,0,0,26,1,0,3098,4680.000000,19,3,61156.001280,1931.039795,hint,lora,180 +on9,0,0,27,1,0,1311,4860.000000,19,3,24947.001280,1987.903590,hint,lora,180 +on3,0,0,29,1,0,2667,5368.000000,19,7,55624.001280,2280.431181,hint,lora,180 +on5,0,0,26,1,0,1365,4680.000000,19,2,28331.001280,1900.911795,hint,lora,180 +on12,0,0,31,1,0,2123,5695.000000,19,10,36502.201280,2432.078362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,19,0,-1.000000,2106.338048,hint,lora,180 +on4,0,0,28,1,0,1102,5040.000000,19,4,20795.001280,2074.014976,hint,lora,180 +on8,0,0,26,1,0,567,4680.000000,19,2,13104.001280,1903.520000,hint,lora,180 +on1,0,0,25,1,0,1894,4500.000000,20,1,42901.001280,1880.608000,hint,lora,180 +on8,0,0,25,1,0,2705,4500.000000,20,1,58601.001280,1885.280000,hint,lora,180 +on11,0,0,24,1,0,541,4320.000000,20,0,12994.001280,1831.008205,hint,lora,180 +on10,0,0,26,1,0,3161,4680.000000,20,2,67008.001280,1918.607795,hint,lora,180 +on5,0,0,26,1,0,1625,4680.000000,20,2,32695.001280,1935.983795,hint,lora,180 +on3,0,0,28,1,0,1431,5040.000000,20,4,31621.001280,2103.855386,hint,lora,180 +on6,0,0,27,1,0,1361,4944.000000,20,4,26139.001280,2092.911795,hint,lora,180 +on9,0,0,29,1,0,1809,5306.000000,20,6,38265.001280,2340.847386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,20,0,-1.000000,2159.651482,hint,lora,180 +on4,0,0,29,1,0,3228,5331.000000,20,7,69339.001280,2300.719181,hint,lora,180 +on2,0,0,26,1,0,1142,4680.000000,20,2,23471.001280,1908.848000,hint,lora,180 +on7,0,0,29,1,0,2555,5220.000000,20,7,49492.001280,2189.966976,hint,lora,180 +on12,0,0,32,1,0,2784,5760.000000,20,8,45979.001280,2420.975386,hint,lora,180 +on12,0,0,28,1,0,2034,5040.000000,21,4,45020.001280,2194.287590,hint,lora,180 +on9,0,0,25,1,0,3781,4500.000000,21,1,80824.001280,1892.800000,hint,lora,180 +on6,0,0,26,1,0,2318,4680.000000,21,4,50266.001280,1981.791795,hint,lora,180 +on8,0,0,24,1,0,541,4320.000000,21,0,12321.001280,1756.640000,hint,lora,180 +on7,0,0,24,1,0,360,4320.000000,21,0,8646.001280,1759.840000,hint,lora,180 +on5,0,0,27,1,0,1802,4860.000000,21,4,39950.001280,2037.343181,hint,lora,180 +on10,0,0,25,1,0,1716,4500.000000,21,1,35729.001280,1858.143795,hint,lora,180 +on1,0,0,25,1,0,3017,4500.000000,21,1,68352.001280,1890.400410,hint,lora,180 +on11,0,0,25,1,0,1362,4500.000000,21,1,31596.001280,1945.616410,hint,lora,180 +on2,0,0,24,1,0,900,4320.000000,21,0,21181.001280,1768.160205,hint,lora,180 +on4,0,0,25,1,0,234,4500.000000,21,1,5137.001280,1835.152410,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,21,0,-1.000000,2116.164506,hint,lora,180 +on3,0,0,25,1,0,2494,4500.000000,21,1,53355.001280,1889.071795,hint,lora,180 +on5,0,0,26,1,0,519,4680.000000,22,2,12640.001280,1949.664000,hint,lora,180 +on9,0,0,28,1,0,1765,5040.000000,22,5,31389.001280,2077.710771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,22,0,-1.000000,2117.537229,hint,lora,180 +on10,0,0,29,1,0,1293,5220.000000,22,5,28414.001280,2232.079590,hint,lora,180 +on8,0,0,26,1,0,893,4680.000000,22,2,19301.001280,1911.360000,hint,lora,180 +on7,0,0,28,1,0,2531,5040.000000,22,4,46766.001280,2055.198976,hint,lora,180 +on2,0,0,25,1,0,531,4500.000000,22,1,9214.001280,1828.384000,hint,lora,180 +on11,0,0,24,1,0,1,4320.000000,22,0,962.001280,1781.984205,hint,lora,180 +on1,0,0,30,1,0,2455,5400.000000,22,7,49348.001280,2301.198976,hint,lora,180 +on12,0,0,25,1,0,1616,4500.000000,22,1,38816.001280,1879.183386,hint,lora,180 +on4,0,0,28,1,0,1159,5040.000000,22,4,24282.001280,2158.607386,hint,lora,180 +on3,0,0,27,1,0,2166,4860.000000,22,3,40313.001280,1992.527386,hint,lora,180 +on6,0,0,26,1,0,1715,4680.000000,22,2,33090.001280,1903.487386,hint,lora,180 +on6,0,0,25,1,0,634,4500.000000,23,1,15441.001280,1868.864000,hint,lora,180 +on2,0,0,26,1,0,544,4680.000000,23,2,12002.001280,1986.591181,hint,lora,180 +on3,0,0,29,1,0,1822,5220.000000,23,5,33230.001280,2157.087795,hint,lora,180 +on11,0,0,25,1,0,31,4500.000000,23,1,5555.001280,1877.824205,hint,lora,180 +on9,0,0,28,1,0,1949,5108.000000,23,5,37907.002560,2169.536205,hint,lora,180 +on1,0,0,32,1,0,2288,5932.000000,23,10,41513.001280,2570.638362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,23,0,-1.000000,2088.674048,hint,lora,180 +on8,0,0,25,1,0,409,4500.000000,23,1,8111.001280,1858.991795,hint,lora,180 +on10,0,0,24,1,0,728,4376.000000,23,1,21431.001280,1844.160205,hint,lora,180 +on12,0,0,31,1,0,2187,5580.000000,23,8,46050.001280,2415.133747,hint,lora,180 +on4,0,0,30,1,0,1741,5400.000000,23,6,29923.001280,2261.214771,hint,lora,180 +on7,0,0,26,1,0,1191,4680.000000,23,2,25079.002560,1919.103386,hint,lora,180 +on5,0,0,27,1,0,1144,4860.000000,23,3,27325.001280,2063.743181,hint,lora,180 +on5,0,0,27,1,0,1372,4947.000000,24,4,26899.001280,2073.455590,hint,lora,180 +on2,0,0,26,1,0,925,4680.000000,24,2,18932.001280,1970.239181,hint,lora,180 +on8,0,0,24,1,0,545,4320.000000,24,0,11961.001280,1755.743795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,24,0,-1.000000,2114.497229,hint,lora,180 +on7,0,0,24,1,0,180,4320.000000,24,0,5936.001280,1754.624000,hint,lora,180 +on6,0,0,31,1,0,2225,5580.000000,24,7,40675.001280,2404.254362,hint,lora,180 +on9,0,0,28,1,0,2096,5040.000000,24,4,46423.001280,2137.631386,hint,lora,180 +on3,0,0,25,1,0,139,4500.000000,24,1,7599.001280,1850.400205,hint,lora,180 +on4,0,0,27,1,0,2367,4860.000000,24,4,47757.001280,2055.358976,hint,lora,180 +on10,0,0,28,1,0,1833,5040.000000,24,4,36785.001280,2142.831181,hint,lora,180 +on11,0,0,28,1,0,1447,5040.000000,24,4,31120.001280,2161.855181,hint,lora,180 +on1,0,0,27,1,0,1229,4954.000000,24,5,23139.001280,2058.367386,hint,lora,180 +on12,0,0,28,1,0,1779,5040.000000,24,4,32908.001280,2110.990976,hint,lora,180 +on5,0,0,26,1,0,2992,4680.000000,25,2,61100.001280,1921.343795,hint,lora,180 +on6,0,0,25,1,0,1550,4500.000000,25,1,34053.001280,1894.575590,hint,lora,180 +on11,0,0,25,1,0,497,4500.000000,25,1,11511.001280,1901.999795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,25,0,-1.000000,2083.490048,hint,lora,180 +on2,0,0,29,1,0,2153,5220.000000,25,5,41727.001280,2258.975795,hint,lora,180 +on3,0,0,30,1,0,1671,5400.000000,25,6,36978.001280,2334.366157,hint,lora,180 +on10,0,0,27,1,0,889,4860.000000,25,4,18871.001280,2014.831386,hint,lora,180 +on12,0,0,27,1,0,1474,4928.000000,25,4,28263.001280,2037.487590,hint,lora,180 +on7,0,0,27,0,0,4091,4860.000000,25,3,-1.000000,2046.958976,hint,lora,180 +on1,0,0,25,1,0,1121,4575.000000,25,2,23990.001280,1892.719795,hint,lora,180 +on8,0,0,24,1,0,369,4320.000000,25,0,8787.001280,1755.103795,hint,lora,180 +on9,0,0,25,1,0,653,4500.000000,25,1,16908.001280,1828.592205,hint,lora,180 +on4,0,0,28,1,0,1532,5040.000000,25,4,30569.001280,2100.991590,hint,lora,180 +on4,0,0,28,1,0,1783,5096.000000,26,6,36778.002560,2139.888000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,26,0,-1.000000,2174.689024,hint,lora,180 +on8,0,0,26,1,0,1676,4680.000000,26,3,35474.001280,1941.551590,hint,lora,180 +on3,0,0,29,1,0,1589,5220.000000,26,5,25928.001280,2154.767386,hint,lora,180 +on2,0,0,28,1,0,1356,5040.000000,26,4,22027.001280,2075.407590,hint,lora,180 +on12,0,0,30,1,0,2571,5400.000000,26,6,52566.001280,2304.158976,hint,lora,180 +on1,0,0,32,1,0,2309,5760.000000,26,8,49073.001280,2540.765747,hint,lora,180 +on9,0,0,29,1,0,2313,5220.000000,26,5,41771.001280,2191.294362,hint,lora,180 +on6,0,0,34,1,0,2689,6300.000000,26,11,46473.001280,2695.791386,hint,lora,180 +on5,0,0,34,1,0,2779,6120.000000,26,11,55249.001280,2683.358566,hint,lora,180 +on11,0,0,27,1,0,1154,4860.000000,26,3,20911.001280,1989.232000,hint,lora,180 +on7,0,0,26,1,0,1467,4680.000000,26,2,29007.001280,1932.159590,hint,lora,180 +on10,0,0,26,1,0,900,4804.000000,26,3,16756.001280,1998.144000,hint,lora,180 +on8,0,0,29,1,0,1941,5347.000000,27,6,34246.001280,2244.942976,hint,lora,180 +on1,0,0,31,1,0,2185,5639.000000,27,9,38915.001280,2383.775590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,27,0,-1.000000,2067.168614,hint,lora,180 +on10,0,0,24,1,0,181,4320.000000,27,0,4077.001280,1769.407795,hint,lora,180 +on12,0,0,29,1,0,1662,5474.000000,27,7,29116.001280,2319.023590,hint,lora,180 +on4,0,0,29,1,0,1883,5220.000000,27,5,40740.001280,2253.662976,hint,lora,180 +on9,0,0,30,1,0,1348,5400.000000,27,6,23606.001280,2239.726771,hint,lora,180 +on11,0,0,27,1,0,911,4860.000000,27,3,17959.001280,2008.911590,hint,lora,180 +on3,0,0,25,1,0,1208,4500.000000,27,1,26424.001280,1828.592000,hint,lora,180 +on5,0,0,33,1,0,2267,5940.000000,27,10,46327.001280,2592.878157,hint,lora,180 +on7,0,0,26,1,0,1052,4730.000000,27,3,20083.001280,1945.343386,hint,lora,180 +on2,0,0,26,1,0,635,4680.000000,27,2,12543.001280,1903.423795,hint,lora,180 +on6,0,0,26,1,0,386,4680.000000,27,2,9446.001280,1932.527795,hint,lora,180 +on6,0,0,25,1,0,1918,4500.000000,28,1,45209.001280,1913.840614,hint,lora,180 +on1,0,0,27,1,0,4052,4860.000000,28,3,76921.001280,2038.015386,hint,lora,180 +on12,0,0,25,1,0,1714,4589.000000,28,2,34769.001280,1910.383590,hint,lora,180 +on7,0,0,26,1,0,140,4680.000000,28,2,6369.002560,1949.072205,hint,lora,180 +on10,0,0,33,1,0,2617,5940.000000,28,10,41178.001280,2503.038566,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,28,0,-1.000000,2113.827686,hint,lora,180 +on3,0,0,26,1,0,405,4680.000000,28,3,7866.001280,1958.800000,hint,lora,180 +on2,0,0,27,1,0,1042,4860.000000,28,3,21054.001280,2024.047795,hint,lora,180 +on4,0,0,25,1,0,1795,4643.000000,28,2,38410.001280,1928.399386,hint,lora,180 +on5,0,0,29,1,0,1563,5220.000000,28,5,28025.001280,2194.367590,hint,lora,180 +on8,0,0,26,1,0,812,4680.000000,28,2,14846.001280,1949.504000,hint,lora,180 +on9,0,0,26,1,0,1142,4809.000000,28,3,23696.001280,2037.583181,hint,lora,180 +on11,0,0,25,1,0,1594,4500.000000,28,1,31399.001280,1853.728410,hint,lora,180 +on11,0,0,27,1,0,1345,4860.000000,29,3,25694.001280,2037.503590,hint,lora,180 +on12,0,0,36,1,0,3506,6544.000000,29,13,61430.001280,2837.277338,hint,lora,180 +on8,0,0,30,1,0,2939,5400.000000,29,6,57952.001280,2298.622157,hint,lora,180 +on3,0,0,25,1,0,947,4500.000000,29,1,21422.001280,1829.823590,hint,lora,180 +on9,0,0,28,1,0,2700,5040.000000,29,5,49820.001280,2052.175181,hint,lora,180 +on1,0,0,29,1,0,2118,5363.000000,29,6,36395.001280,2242.431590,hint,lora,180 +on7,0,0,26,1,0,1083,4680.000000,29,2,23568.001280,1932.271795,hint,lora,180 +on2,0,0,30,1,0,2992,5400.000000,29,6,54343.001280,2280.319590,hint,lora,180 +on4,0,0,27,1,0,2109,4860.000000,29,3,40818.001280,2037.343386,hint,lora,180 +on10,0,0,24,1,0,720,4320.000000,29,0,14671.001280,1810.912000,hint,lora,180 +on5,0,0,26,1,0,2227,4680.000000,29,2,45953.001280,1980.191590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,29,0,-1.000000,2149.793024,hint,lora,180 +on6,0,0,32,1,0,2690,5760.000000,29,8,51254.001280,2485.519181,hint,lora,180 +on6,0,0,25,1,0,1068,4500.000000,30,1,19204.001280,1828.544205,hint,lora,180 +on7,0,0,24,1,0,1153,4495.000000,30,1,24329.001280,1832.303590,hint,lora,180 +on4,0,0,25,1,0,683,4500.000000,30,2,15391.001280,1860.000000,hint,lora,180 +on12,0,0,29,1,0,1686,5326.000000,30,7,36842.001280,2360.846771,hint,lora,180 +on1,0,0,28,1,0,2322,5040.000000,30,4,50099.001280,2153.903181,hint,lora,180 +on8,0,0,25,1,0,406,4500.000000,30,2,11133.001280,1847.040000,hint,lora,180 +on5,0,0,24,1,0,1178,4320.000000,30,0,26252.001280,1790.399590,hint,lora,180 +on3,0,0,24,1,0,219,4443.000000,30,1,10297.001280,1821.840205,hint,lora,180 +on10,0,0,25,1,0,1580,4500.000000,30,1,32210.001280,1828.640000,hint,lora,180 +on9,0,0,27,1,0,1999,4860.000000,30,3,42681.001280,2044.606771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,30,0,-1.000000,2089.634253,hint,lora,180 +on11,0,0,27,1,0,1762,4860.000000,30,3,34401.001280,2010.622976,hint,lora,180 +on2,0,0,26,1,0,2317,4680.000000,30,2,43488.001280,1903.679795,hint,lora,180 +on12,0,0,24,1,0,1980,4320.000000,31,0,39778.001280,1782.080410,hint,lora,180 +on0,1,7,24,0,0,0,4320.000000,31,0,-1.000000,2088.322458,hint,lora,180 +on6,0,0,27,1,0,3742,4944.000000,31,4,75093.001280,2072.832000,hint,lora,180 +on11,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,hint,lora,180 +on1,0,0,26,0,0,4267,4680.000000,31,2,-1.000000,1937.439386,hint,lora,180 +on4,0,0,24,1,0,1086,4320.000000,31,0,24393.001280,1767.104410,hint,lora,180 +on3,0,0,25,1,0,2817,4500.000000,31,1,59540.001280,1859.775795,hint,lora,180 +on7,0,0,24,0,0,3929,4320.000000,31,0,-1.000000,1791.200000,hint,lora,180 +on8,0,0,26,0,0,4246,4680.000000,31,3,-1.000000,1932.255386,hint,lora,180 +on10,0,0,24,0,0,4226,4320.000000,31,0,-1.000000,1743.200000,hint,lora,180 +on5,0,0,26,1,0,3347,4680.000000,31,2,66789.001280,1912.320000,hint,lora,180 +on2,0,0,27,1,0,3285,4860.000000,31,3,64163.001280,2007.263590,hint,lora,180 +on9,0,0,29,1,0,4136,5362.000000,31,7,76716.001280,2221.904000,hint,lora,180 +on11,0,0,26,1,0,983,4680.000000,32,2,23256.001280,1943.856614,hint,lora,180 +on12,0,0,27,1,0,2552,4860.000000,32,3,57065.001280,2082.464205,hint,lora,180 +on1,0,0,26,0,0,4257,4680.000000,32,2,-1.000000,1916.208205,hint,lora,180 +on10,0,0,27,0,0,4388,4860.000000,32,3,-1.000000,2006.783181,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,32,0,-1.000000,2296.033843,hint,lora,180 +on4,0,0,25,1,0,3487,4500.000000,32,1,71829.001280,1846.591795,hint,lora,180 +on9,0,0,27,1,0,3640,4860.000000,32,3,77293.001280,2083.407386,hint,lora,180 +on5,0,0,28,1,0,4061,5040.000000,32,4,81202.001280,2094.031181,hint,lora,180 +on7,0,0,24,1,0,1338,4320.000000,32,0,29832.001280,1772.800205,hint,lora,180 +on6,0,0,24,1,0,2659,4354.000000,32,2,60190.401280,1814.880000,hint,lora,180 +on3,0,0,27,1,0,2181,4860.000000,32,3,45625.001280,2016.288205,hint,lora,180 +on2,0,0,27,1,0,4221,4860.000000,32,3,83854.000000,1995.871386,hint,lora,180 +on8,0,0,24,1,0,2968,4320.000000,32,0,65794.001280,1834.944000,hint,lora,180 +on11,0,0,34,1,0,3383,6120.000000,33,11,55709.001280,2585.119181,hint,lora,180 +on6,0,0,32,1,0,2736,5760.000000,33,8,40483.001280,2342.335181,hint,lora,180 +on7,0,0,32,1,0,2715,5806.000000,33,9,50118.001280,2448.351590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,33,0,-1.000000,2176.129229,hint,lora,180 +on10,0,0,30,1,0,1748,5400.000000,33,6,32980.001280,2290.095795,hint,lora,180 +on1,0,0,26,1,0,1350,4680.000000,33,2,28735.001280,1925.599795,hint,lora,180 +on5,0,0,25,1,0,664,4500.000000,33,1,15308.001280,1843.968205,hint,lora,180 +on2,0,0,30,1,0,2438,5448.000000,33,7,45863.001280,2324.431386,hint,lora,180 +on8,0,0,27,1,0,1282,4860.000000,33,3,22167.001280,2004.527795,hint,lora,180 +on3,0,0,29,1,0,1627,5220.000000,33,5,30002.001280,2147.919386,hint,lora,180 +on12,0,0,32,1,0,3272,5790.000000,33,9,62021.602560,2465.183386,hint,lora,180 +on9,0,0,33,1,0,2150,5940.000000,33,9,38743.001280,2562.911795,hint,lora,180 +on4,0,0,32,1,0,2936,5760.000000,33,8,53270.001280,2450.622157,hint,lora,180 +on9,0,0,26,1,0,1935,4680.000000,34,2,36703.001280,1930.784000,hint,lora,180 +on11,0,0,28,1,0,2630,5040.000000,34,4,53172.001280,2115.103386,hint,lora,180 +on1,0,0,28,0,0,3968,5180.000000,34,5,-1.000000,2261.807386,hint,lora,180 +on8,0,0,33,1,0,2783,5940.000000,34,10,49105.001280,2513.791181,hint,lora,180 +on3,0,0,26,1,0,4024,4680.000000,34,2,76225.001280,1904.575590,hint,lora,180 +on5,0,0,25,1,0,1112,4500.000000,34,1,24608.001280,1860.848410,hint,lora,180 +on2,0,0,24,1,0,727,4320.000000,34,0,15598.001280,1806.784410,hint,lora,180 +on6,0,0,26,1,0,1354,4680.000000,34,2,25589.001280,1960.543590,hint,lora,180 +on4,0,0,24,1,0,1417,4364.000000,34,1,31716.001280,1774.288000,hint,lora,180 +on10,0,0,31,1,0,2750,5580.000000,34,7,44457.001280,2312.446566,hint,lora,180 +on7,0,0,25,1,0,1743,4544.000000,34,2,32742.001280,1870.463795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,34,0,-1.000000,2064.354458,hint,lora,180 +on12,0,0,28,1,0,2227,5040.000000,34,4,41773.001280,2054.015181,hint,lora,180 +on1,0,0,25,1,0,331,4500.000000,35,1,7525.001280,1881.008410,hint,lora,180 +on5,0,0,29,1,0,1985,5347.000000,35,7,37161.001280,2258.127386,hint,lora,180 +on11,0,0,27,1,0,4279,4860.000000,35,3,82539.001280,2005.919181,hint,lora,180 +on9,0,0,25,1,0,573,4500.000000,35,1,15478.001280,1931.167181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,35,0,-1.000000,2057.188710,hint,lora,180 +on3,0,0,29,1,0,1322,5220.000000,35,5,24668.001280,2182.126771,hint,lora,180 +on12,0,0,27,1,0,1421,4860.000000,35,3,30843.001280,2020.446976,hint,lora,180 +on6,0,0,28,1,0,1408,5190.000000,35,7,26716.001280,2237.887181,hint,lora,180 +on10,0,0,24,1,0,3,4320.000000,35,0,3184.001280,1760.640205,hint,lora,180 +on8,0,0,25,1,0,175,4500.000000,35,2,6318.001280,1847.519795,hint,lora,180 +on7,0,0,26,1,0,1054,4837.000000,35,3,20273.001280,2025.328410,hint,lora,180 +on4,0,0,24,1,0,544,4434.000000,35,1,11563.001280,1801.984000,hint,lora,180 +on2,0,0,32,1,0,1792,5760.000000,35,8,33245.001280,2477.263386,hint,lora,180 +on11,0,0,26,1,0,2531,4680.000000,36,2,53024.001280,1945.663386,hint,lora,180 +on7,0,0,25,1,0,3296,4500.000000,36,1,67415.001280,1848.640000,hint,lora,180 +on6,0,0,26,1,0,1692,4906.000000,36,4,35130.001280,2048.463590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,36,0,-1.000000,2152.097638,hint,lora,180 +on12,0,0,24,1,0,1084,4320.000000,36,0,23026.001280,1788.543795,hint,lora,180 +on9,0,0,25,1,0,1251,4500.000000,36,1,27060.001280,1828.640205,hint,lora,180 +on5,0,0,29,1,0,2584,5220.000000,36,5,48222.001280,2189.263181,hint,lora,180 +on4,0,0,32,1,0,2656,5760.000000,36,8,46079.001280,2428.143181,hint,lora,180 +on3,0,0,27,1,0,1770,4860.000000,36,3,38337.001280,2031.247386,hint,lora,180 +on2,0,0,30,1,0,2824,5400.000000,36,7,59282.001280,2328.782362,hint,lora,180 +on1,0,0,27,1,0,2811,4860.000000,36,3,55737.001280,2000.927795,hint,lora,180 +on8,0,0,25,1,0,811,4500.000000,36,1,18986.001280,1863.152000,hint,lora,180 +on10,0,0,26,1,0,1413,4836.000000,36,4,32109.001280,2023.407590,hint,lora,180 +on11,0,0,25,1,0,2227,4504.000000,37,2,47779.001280,1885.247795,hint,lora,180 +on12,0,0,31,1,0,3490,5580.000000,37,7,64052.001280,2328.174362,hint,lora,180 +on6,0,0,25,1,0,2291,4500.000000,37,1,45616.002560,1854.383795,hint,lora,180 +on10,0,0,25,1,0,540,4500.000000,37,1,13279.602560,1825.648614,hint,lora,180 +on2,0,0,25,1,0,2460,4523.000000,37,2,53547.001280,1907.183590,hint,lora,180 +on1,0,0,28,1,0,2693,5040.000000,37,4,54836.001280,2099.694976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,37,0,-1.000000,2176.449434,hint,lora,180 +on5,0,0,28,1,0,2951,5335.000000,37,6,66141.001280,2360.398362,hint,lora,180 +on7,0,0,31,1,0,3434,5785.000000,37,9,71503.001280,2545.502771,hint,lora,180 +on8,0,0,24,1,0,1639,4320.000000,37,0,34151.001280,1753.600205,hint,lora,180 +on3,0,0,26,1,0,2924,4790.000000,37,3,58393.001280,1976.304000,hint,lora,180 +on9,0,0,24,1,0,1152,4351.000000,37,1,26097.001280,1786.320205,hint,lora,180 +on4,0,0,25,1,0,1982,4500.000000,37,1,42883.001280,1845.360000,hint,lora,180 +on10,0,0,29,0,0,4593,5220.000000,38,5,-1.000000,2182.239181,hint,lora,180 +on8,0,0,29,1,0,3330,5220.000000,38,5,65384.001280,2225.678771,hint,lora,180 +on12,0,0,27,1,0,3632,4860.000000,38,3,77598.001280,2061.455795,hint,lora,180 +on11,0,0,29,1,0,3052,5220.000000,38,5,58366.001280,2203.263386,hint,lora,180 +on1,0,0,30,1,0,3245,5400.000000,38,6,61559.001280,2275.455386,hint,lora,180 +on4,0,0,30,1,0,3721,5514.000000,38,7,72453.001280,2356.782566,hint,lora,180 +on3,0,0,26,1,0,2270,4752.000000,38,3,48715.001280,1987.215795,hint,lora,180 +on5,0,0,24,1,0,3407,4341.000000,38,1,71860.001280,1815.760205,hint,lora,180 +on6,0,0,28,0,0,4405,5096.000000,38,5,-1.000000,2094.031590,hint,lora,180 +on2,0,0,25,1,0,2157,4500.000000,38,1,46398.001280,1838.176000,hint,lora,180 +on7,0,0,27,1,0,2827,4860.000000,38,3,54760.001280,2020.943795,hint,lora,180 +on9,0,0,27,1,0,2576,4860.000000,38,3,52140.001280,1987.728000,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,38,0,-1.000000,2170.944614,hint,lora,180 +on6,0,0,27,1,0,2204,5035.000000,39,4,39124.001280,2058.319590,hint,lora,180 +on2,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,hint,lora,180 +on7,0,0,27,1,0,1054,4860.000000,39,3,22287.001280,2045.391386,hint,lora,180 +on8,0,0,25,1,0,821,4500.000000,39,1,19838.001280,1857.008000,hint,lora,180 +on3,0,0,26,1,0,3332,4680.000000,39,2,64176.001280,1915.887795,hint,lora,180 +on1,0,0,32,1,0,2950,5760.000000,39,10,49030.001280,2416.622771,hint,lora,180 +on5,0,0,24,1,0,725,4320.000000,39,0,17074.001280,1756.064000,hint,lora,180 +on9,0,0,27,1,0,1713,5008.000000,39,4,35916.001280,2115.167386,hint,lora,180 +on4,0,0,27,1,0,2029,4860.000000,39,3,40177.001280,2021.279590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,39,0,-1.000000,2060.451277,hint,lora,180 +on12,0,0,32,1,0,2341,5760.000000,39,8,45173.001280,2531.264000,hint,lora,180 +on11,0,0,25,1,0,1230,4500.000000,39,1,28366.001280,1840.912410,hint,lora,180 +on10,0,0,26,1,0,1530,4680.000000,39,2,29494.001280,1917.727795,hint,lora,180 +on1,0,0,24,0,0,4219,4320.000000,40,0,-1.000000,1744.320000,hint,lora,180 +on7,0,0,24,0,0,4295,4320.000000,40,0,-1.000000,1732.160000,hint,lora,180 +on9,0,0,24,0,0,4320,4320.000000,40,0,-1.000000,1728.000000,hint,lora,180 +on2,0,0,24,0,0,4150,4320.000000,40,0,-1.000000,1755.520000,hint,lora,180 +on4,0,0,25,0,0,4381,4500.000000,40,1,-1.000000,1819.200000,hint,lora,180 +on12,0,0,25,0,0,4299,4500.000000,40,2,-1.000000,1821.488000,hint,lora,180 +on0,1,1,24,0,0,0,4320.000000,40,0,-1.000000,1975.744000,hint,lora,180 +on6,0,0,24,0,0,4259,4320.000000,40,0,-1.000000,1753.920000,hint,lora,180 +on11,0,0,25,1,0,3799,4500.000000,40,1,84702.000000,1959.200000,hint,lora,180 +on10,0,0,24,0,0,4219,4320.000000,40,0,-1.000000,1756.800000,hint,lora,180 +on5,0,0,24,0,0,4196,4320.000000,40,0,-1.000000,1748.160000,hint,lora,180 +on3,0,0,24,0,0,4238,4320.000000,40,0,-1.000000,1741.280000,hint,lora,180 +on8,0,0,24,0,0,4206,4320.000000,40,0,-1.000000,1756.800000,hint,lora,180 +on5,0,0,33,1,0,4252,5940.000000,41,9,70710.001280,2483.022771,hint,lora,180 +on3,0,0,30,1,0,3212,5400.000000,41,6,65171.001280,2357.199181,hint,lora,180 +on1,0,0,25,1,0,1896,4500.000000,41,2,40121.001280,1841.919795,hint,lora,180 +on10,0,0,30,0,0,4221,5443.000000,41,8,-1.000000,2344.110157,hint,lora,180 +on9,0,0,27,1,0,1957,4860.000000,41,3,48062.001280,2218.847590,hint,lora,180 +on11,0,0,27,1,0,2896,4918.000000,41,4,56589.001280,2042.367386,hint,lora,180 +on4,0,0,25,1,0,1529,4500.000000,41,1,38215.001280,1888.335795,hint,lora,180 +on12,0,0,32,1,0,4170,5760.000000,41,9,73222.001280,2356.094566,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,41,0,-1.000000,2178.049229,hint,lora,180 +on8,0,0,29,1,0,3089,5220.000000,41,5,59802.001280,2154.351181,hint,lora,180 +on2,0,0,25,1,0,1978,4500.000000,41,1,44593.001280,1874.144000,hint,lora,180 +on7,0,0,27,1,0,2971,4860.000000,41,3,61638.001280,2069.342976,hint,lora,180 +on6,0,0,25,1,0,2452,4500.000000,41,1,52894.001280,1885.760205,hint,lora,180 +on10,0,0,30,1,0,1989,5400.000000,42,6,39356.001280,2315.871590,hint,lora,180 +on4,0,0,32,1,0,2802,5760.000000,42,10,59824.001280,2525.598566,hint,lora,180 +on9,0,0,30,0,0,4343,5400.000000,42,7,-1.000000,2288.238566,hint,lora,180 +on8,0,0,30,1,0,2374,5400.000000,42,6,42927.001280,2296.431386,hint,lora,180 +on2,0,0,35,1,0,3124,6300.000000,42,11,53309.001280,2744.046976,hint,lora,180 +on12,0,0,29,1,0,2107,5220.000000,42,5,44105.001280,2206.623386,hint,lora,180 +on11,0,0,27,1,0,1169,4925.000000,42,4,23391.001280,2075.424000,hint,lora,180 +on5,0,0,27,1,0,1514,4923.000000,42,4,27254.001280,2081.072205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,42,0,-1.000000,2163.716096,hint,lora,180 +on3,0,0,33,1,0,3080,5940.000000,42,9,48843.001280,2480.895181,hint,lora,180 +on6,0,0,25,1,0,790,4541.000000,42,2,17913.001280,1898.863590,hint,lora,180 +on7,0,0,28,1,0,1627,5040.000000,42,4,32356.001280,2108.831590,hint,lora,180 +on1,0,0,25,1,0,349,4500.000000,42,1,9585.001280,1873.072000,hint,lora,180 +on6,0,0,26,1,0,2389,5008.000000,43,4,47769.001280,2143.999386,hint,lora,180 +on7,0,0,29,1,0,2882,5389.000000,43,6,56946.001280,2294.078771,hint,lora,180 +on9,0,0,26,1,0,757,4680.000000,43,2,15837.001280,1926.224205,hint,lora,180 +on10,0,0,26,1,0,901,4680.000000,43,2,19905.001280,1936.703795,hint,lora,180 +on1,0,0,27,1,0,1988,4998.000000,43,4,39323.001280,2074.734976,hint,lora,180 +on3,0,0,33,1,0,3178,5940.000000,43,10,57842.001280,2581.646157,hint,lora,180 +on5,0,0,31,1,0,2025,5645.000000,43,8,40910.001280,2452.623590,hint,lora,180 +on11,0,0,27,1,0,1417,4860.000000,43,3,29807.001280,2012.383386,hint,lora,180 +on4,0,0,29,1,0,2583,5220.000000,43,5,50704.001280,2227.214976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,43,0,-1.000000,2135.073434,hint,lora,180 +on8,0,0,26,1,0,1499,4713.000000,43,3,32724.001280,1972.560410,hint,lora,180 +on12,0,0,29,1,0,1465,5220.000000,43,6,28173.001280,2144.623386,hint,lora,180 +on2,0,0,31,1,0,2581,5580.000000,43,7,43401.001280,2324.879181,hint,lora,180 +on9,0,0,27,1,0,2259,4860.000000,44,3,45019.001280,2001.759795,hint,lora,180 +on2,0,0,32,0,0,4259,5771.000000,44,10,-1.000000,2548.830362,hint,lora,180 +on1,0,0,24,1,0,1260,4320.000000,44,0,25440.001280,1753.600205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,44,0,-1.000000,2157.090867,hint,lora,180 +on8,0,0,30,1,0,3010,5400.000000,44,6,60310.001280,2328.222771,hint,lora,180 +on4,0,0,27,1,0,2663,4993.000000,44,4,47245.001280,2051.519795,hint,lora,180 +on6,0,0,30,1,0,2926,5437.000000,44,8,64116.001280,2403.949952,hint,lora,180 +on11,0,0,24,1,0,1632,4320.000000,44,0,33050.001280,1754.720000,hint,lora,180 +on5,0,0,30,1,0,2626,5438.000000,44,8,52065.001280,2338.303590,hint,lora,180 +on7,0,0,31,1,0,3024,5721.000000,44,8,67472.001280,2553.039181,hint,lora,180 +on12,0,0,25,1,0,1526,4500.000000,44,1,36443.001280,1904.063590,hint,lora,180 +on3,0,0,27,1,0,2858,4986.000000,44,4,54692.001280,2083.888000,hint,lora,180 +on10,0,0,26,1,0,1978,4852.000000,44,3,42993.001280,2046.015386,hint,lora,180 +on4,0,0,24,0,0,4192,4320.000000,45,0,-1.000000,1748.800000,hint,lora,180 +on5,0,0,25,1,0,1590,4500.000000,45,1,34304.001280,1861.664205,hint,lora,180 +on10,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,hint,lora,180 +on1,0,0,25,1,0,2460,4500.000000,45,1,53679.001280,1866.464205,hint,lora,180 +on12,0,0,28,1,0,2535,5040.000000,45,5,62352.001280,2277.055590,hint,lora,180 +on9,0,0,25,1,0,1752,4500.000000,45,2,37662.001280,1900.320000,hint,lora,180 +on8,0,0,25,1,0,768,4500.000000,45,2,20450.001280,1846.720000,hint,lora,180 +on3,0,0,26,1,0,2099,4680.000000,45,3,41045.001280,1900.800000,hint,lora,180 +on7,0,0,26,1,0,2576,4680.000000,45,2,54871.001280,1979.680000,hint,lora,180 +on2,0,0,24,1,0,732,4320.000000,45,0,15881.001280,1804.384614,hint,lora,180 +on11,0,0,24,1,0,3209,4391.000000,45,1,68147.001280,1782.000205,hint,lora,180 +on6,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,45,0,-1.000000,2073.571891,hint,lora,180 +on6,0,0,27,1,0,2386,4860.000000,46,3,45878.001280,2043.871386,hint,lora,180 +on11,0,0,26,1,0,2502,4680.000000,46,2,53064.001280,1941.023386,hint,lora,180 +on3,0,0,32,1,0,3363,5760.000000,46,8,71024.001280,2536.974566,hint,lora,180 +on2,0,0,27,0,0,4226,4860.000000,46,3,-1.000000,2042.735386,hint,lora,180 +on12,0,0,30,1,0,2668,5400.000000,46,6,54385.001280,2301.599181,hint,lora,180 +on8,0,0,24,1,0,980,4320.000000,46,0,27141.001280,1814.143795,hint,lora,180 +on1,0,0,35,1,0,3740,6300.000000,46,11,66334.001280,2713.742566,hint,lora,180 +on9,0,0,26,1,0,2087,4680.000000,46,2,42264.001280,1910.624000,hint,lora,180 +on4,0,0,31,1,0,3117,5611.000000,46,8,62356.001280,2425.869952,hint,lora,180 +on10,0,0,27,1,0,1831,4860.000000,46,3,38368.001280,2022.207386,hint,lora,180 +on5,0,0,28,1,0,2991,5040.000000,46,4,60423.001280,2081.119795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,46,0,-1.000000,2195.777434,hint,lora,180 +on7,0,0,26,1,0,1548,4680.000000,46,2,33089.001280,1986.975590,hint,lora,180 +on11,0,0,29,1,0,2055,5220.000000,47,5,41271.001280,2190.271386,hint,lora,180 +on2,0,0,25,1,0,1324,4600.000000,47,3,31430.001280,1906.543590,hint,lora,180 +on7,0,0,33,1,0,2646,6034.000000,47,10,50948.001280,2633.470771,hint,lora,180 +on4,0,0,25,0,0,4091,4500.000000,47,2,-1.000000,1876.799590,hint,lora,180 +on3,0,0,24,1,0,1013,4407.000000,47,1,24834.001280,1862.272000,hint,lora,180 +on5,0,0,24,1,0,186,4320.000000,47,0,7083.001280,1755.104205,hint,lora,180 +on12,0,0,24,1,0,811,4323.000000,47,1,20011.001280,1772.512000,hint,lora,180 +on1,0,0,28,1,0,2292,5100.000000,47,5,45550.001280,2158.815181,hint,lora,180 +on6,0,0,32,1,0,2848,5760.000000,47,8,49316.001280,2397.583590,hint,lora,180 +on9,0,0,26,1,0,1303,4680.000000,47,2,26620.001280,1991.663590,hint,lora,180 +on8,0,0,28,1,0,1927,5048.000000,47,5,39426.001280,2144.687590,hint,lora,180 +on10,0,0,32,1,0,3006,5760.000000,47,9,55632.001280,2445.438362,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,47,0,-1.000000,2169.858253,hint,lora,180 +on11,0,0,29,1,0,2184,5351.000000,48,7,37377.001280,2233.182976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,48,0,-1.000000,2067.426048,hint,lora,180 +on10,0,0,26,1,0,684,4680.000000,48,4,18191.001280,1982.495181,hint,lora,180 +on5,0,0,25,1,0,645,4500.000000,48,1,16069.002560,1860.095795,hint,lora,180 +on8,0,0,28,1,0,2167,5040.000000,48,4,48999.001280,2165.439386,hint,lora,180 +on2,0,0,25,1,0,348,4500.000000,48,2,10596.001280,1848.847795,hint,lora,180 +on3,0,0,29,1,0,2102,5220.000000,48,6,40305.001280,2205.774976,hint,lora,180 +on9,0,0,31,1,0,1835,5580.000000,48,7,35006.001280,2429.007181,hint,lora,180 +on12,0,0,26,1,0,1439,4853.000000,48,3,32079.001280,2074.031590,hint,lora,180 +on1,0,0,24,1,0,185,4320.000000,48,0,4543.001280,1782.080205,hint,lora,180 +on6,0,0,26,1,0,694,4680.000000,48,2,12514.001280,1926.736000,hint,lora,180 +on4,0,0,25,1,0,1290,4598.000000,48,2,27889.001280,1886.239795,hint,lora,180 +on7,0,0,25,1,0,1003,4664.000000,48,3,21781.001280,1951.455795,hint,lora,180 +on7,0,0,28,1,0,2784,5348.000000,49,7,52003.001280,2283.790362,hint,lora,180 +on12,0,0,32,1,0,3355,5760.000000,49,8,55820.001280,2352.303590,hint,lora,180 +on3,0,0,26,1,0,1568,4680.000000,49,2,33801.001280,2006.096000,hint,lora,180 +on6,0,0,24,1,0,361,4320.000000,49,0,7588.001280,1753.600410,hint,lora,180 +on10,0,0,26,1,0,1395,4680.000000,49,2,32380.001280,1952.304000,hint,lora,180 +on9,0,0,29,1,0,2596,5314.000000,49,6,47694.001280,2200.527590,hint,lora,180 +on4,0,0,28,0,0,4542,5040.000000,49,4,-1.000000,2068.334566,hint,lora,180 +on11,0,0,25,1,0,1204,4500.000000,49,1,27782.001280,1857.232410,hint,lora,180 +on2,0,0,31,1,0,2933,5580.000000,49,8,59322.001280,2462.702566,hint,lora,180 +on5,0,0,25,1,0,1915,4500.000000,49,1,41035.001280,1846.720205,hint,lora,180 +on8,0,0,24,1,0,2168,4320.000000,49,0,43846.001280,1814.464205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,49,0,-1.000000,2157.090458,hint,lora,180 +on1,0,0,28,1,0,1827,5040.000000,49,4,38392.001280,2125.823386,hint,lora,180 +on7,0,0,25,1,0,1543,4604.000000,50,2,39798.001280,1981.504000,hint,lora,180 +on3,0,0,28,1,0,2767,5040.000000,50,4,52674.001280,2062.239181,hint,lora,180 +on9,0,0,29,0,0,4515,5230.000000,50,6,-1.000000,2179.390362,hint,lora,180 +on12,0,0,33,1,0,3320,5940.000000,50,9,58862.001280,2518.206566,hint,lora,180 +on6,0,0,31,1,0,2986,5675.000000,50,8,54268.001280,2503.614566,hint,lora,180 +on5,0,0,25,1,0,1203,4500.000000,50,1,28277.001280,1862.096000,hint,lora,180 +on8,0,0,27,1,0,2295,4860.000000,50,3,44852.001280,2016.767590,hint,lora,180 +on11,0,0,32,0,0,3939,5920.000000,50,9,-1.000000,2677.374771,hint,lora,180 +on10,0,0,29,1,0,2580,5323.000000,50,6,48581.001280,2253.679795,hint,lora,180 +on1,0,0,31,1,0,3268,5580.000000,50,7,62541.001280,2401.854362,hint,lora,180 +on4,0,0,25,1,0,1893,4529.000000,50,2,36445.001280,1876.928205,hint,lora,180 +on2,0,0,26,1,0,1726,4680.000000,50,2,34237.001280,1951.008205,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,50,0,-1.000000,2128.193843,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,51,0,-1.000000,2156.289434,hint,lora,180 +on10,0,0,28,0,0,4275,5091.000000,51,5,-1.000000,2118.478976,hint,lora,180 +on7,0,0,25,1,0,862,4500.000000,51,1,19609.001280,1892.704205,hint,lora,180 +on9,0,0,32,1,0,2652,5760.000000,51,8,48851.001280,2447.550566,hint,lora,180 +on4,0,0,30,1,0,3179,5528.000000,51,7,66577.001280,2373.472205,hint,lora,180 +on5,0,0,25,1,0,1718,4509.000000,51,2,36523.001280,1858.191590,hint,lora,180 +on11,0,0,33,1,0,2680,5940.000000,51,9,44531.001280,2470.318362,hint,lora,180 +on2,0,0,28,1,0,1419,5040.000000,51,4,32022.001280,2128.671386,hint,lora,180 +on8,0,0,27,1,0,2120,4995.000000,51,5,41917.001280,2069.839386,hint,lora,180 +on12,0,0,25,1,0,1558,4550.000000,51,3,32800.001280,1871.743590,hint,lora,180 +on6,0,0,28,1,0,1435,5040.000000,51,4,25560.001280,2121.727590,hint,lora,180 +on3,0,0,32,1,0,2959,5795.000000,51,9,51560.001280,2451.278771,hint,lora,180 +on1,0,0,26,1,0,1113,4680.000000,51,2,23499.001280,1932.111795,hint,lora,180 +on2,0,0,29,1,0,1964,5220.000000,52,5,35651.001280,2203.870771,hint,lora,180 +on11,0,0,28,1,0,2246,5040.000000,52,4,45525.001280,2095.471181,hint,lora,180 +on6,0,0,25,1,0,2654,4500.000000,52,1,55584.001280,1902.880205,hint,lora,180 +on5,0,0,27,1,0,1192,4860.000000,52,3,28725.001280,2042.704205,hint,lora,180 +on12,0,0,27,1,0,1153,4860.000000,52,3,23559.001280,2003.279386,hint,lora,180 +on1,0,0,32,1,0,2641,5760.000000,52,8,47080.001280,2431.421952,hint,lora,180 +on10,0,0,30,1,0,2463,5400.000000,52,6,41414.001280,2199.231181,hint,lora,180 +on7,0,0,27,1,0,1621,4860.000000,52,3,29583.001280,1987.664205,hint,lora,180 +on3,0,0,25,1,0,885,4500.000000,52,1,17478.001280,1829.840000,hint,lora,180 +on9,0,0,27,1,0,2703,4883.000000,52,4,51056.001280,2032.991386,hint,lora,180 +on4,0,0,26,1,0,994,4680.000000,52,2,19847.001280,1932.367795,hint,lora,180 +on8,0,0,32,1,0,3433,5760.000000,52,10,60699.001280,2408.878157,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,52,0,-1.000000,2160.193229,hint,lora,180 +on3,0,0,34,1,0,2735,6120.000000,53,10,48477.001280,2636.061542,hint,lora,180 +on11,0,0,29,1,0,2930,5220.000000,53,6,53884.001280,2190.734771,hint,lora,180 +on1,0,0,25,1,0,860,4500.000000,53,1,17332.001280,1828.384000,hint,lora,180 +on9,0,0,24,1,0,876,4569.000000,53,2,20751.001280,1883.327795,hint,lora,180 +on10,0,0,29,1,0,2113,5222.000000,53,6,40874.001280,2233.407795,hint,lora,180 +on8,0,0,27,1,0,2078,4860.000000,53,3,46258.001280,2089.183181,hint,lora,180 +on12,0,0,26,1,0,1171,4680.000000,53,2,24107.001280,1900.848205,hint,lora,180 +on6,0,0,30,1,0,1963,5400.000000,53,7,33242.002560,2221.550362,hint,lora,180 +on5,0,0,26,1,0,1338,4680.000000,53,2,26975.001280,1965.327795,hint,lora,180 +on4,0,0,28,1,0,2084,5122.000000,53,5,36340.001280,2121.375181,hint,lora,180 +on7,0,0,24,1,0,550,4320.000000,53,0,12292.001280,1753.600205,hint,lora,180 +on2,0,0,25,1,0,1391,4510.000000,53,3,31265.001280,1858.303590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,53,0,-1.000000,2072.257024,hint,lora,180 +on4,0,0,25,1,0,77,4500.000000,54,1,4598.001280,1875.584410,hint,lora,180 +on5,0,0,28,1,0,1774,5040.000000,54,4,34437.001280,2127.727386,hint,lora,180 +on12,0,0,29,1,0,1640,5220.000000,54,5,25439.001280,2151.903181,hint,lora,180 +on7,0,0,27,0,0,4634,4860.000000,54,3,-1.000000,1948.191590,hint,lora,180 +on6,0,0,28,1,0,1212,5040.000000,54,4,19801.001280,2067.679181,hint,lora,180 +on8,0,0,25,1,0,540,4500.000000,54,1,9596.001280,1857.280410,hint,lora,180 +on3,0,0,26,1,0,820,4680.000000,54,2,16150.001280,1928.800205,hint,lora,180 +on2,0,0,25,1,0,1767,4500.000000,54,2,45470.001280,1931.936205,hint,lora,180 +on11,0,0,28,1,0,1651,5096.000000,54,5,31038.001280,2155.183181,hint,lora,180 +on1,0,0,26,1,0,1847,4680.000000,54,2,39529.001280,1954.943795,hint,lora,180 +on9,0,0,28,1,0,1938,5158.000000,54,6,42083.401280,2214.079590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,54,0,-1.000000,2110.019686,hint,lora,180 +on10,0,0,26,1,0,3944,4680.000000,54,2,77361.001280,1924.000000,hint,lora,180 +on2,0,0,30,1,0,2089,5486.000000,55,7,40383.001280,2366.366976,hint,lora,180 +on7,0,0,35,1,0,3133,6300.000000,55,12,51618.001280,2697.341133,hint,lora,180 +on11,0,0,25,1,0,328,4500.000000,55,1,10214.001280,1878.912000,hint,lora,180 +on8,0,0,26,1,0,973,4680.000000,55,2,19915.001280,1920.895795,hint,lora,180 +on6,0,0,33,1,0,2924,5940.000000,55,9,48623.001280,2498.174566,hint,lora,180 +on5,0,0,25,1,0,999,4671.000000,55,3,22761.001280,1939.680205,hint,lora,180 +on9,0,0,25,1,0,1289,4585.000000,55,2,26121.001280,1878.703795,hint,lora,180 +on10,0,0,29,1,0,1928,5390.000000,55,7,38658.001280,2286.719590,hint,lora,180 +on12,0,0,28,1,0,1676,5040.000000,55,4,29586.001280,2069.231386,hint,lora,180 +on1,0,0,31,1,0,2249,5580.000000,55,7,45220.001280,2407.663181,hint,lora,180 +on3,0,0,26,1,0,784,4680.000000,55,2,15462.001280,1929.280000,hint,lora,180 +on4,0,0,30,1,0,2338,5522.000000,55,7,34395.001280,2254.590566,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,55,0,-1.000000,2124.448614,hint,lora,180 +on5,0,0,31,1,0,3909,5698.000000,56,8,72244.001280,2414.686566,hint,lora,180 +on11,0,0,32,1,0,4489,5760.000000,56,9,82184.001280,2431.182976,hint,lora,180 +on3,0,0,33,1,0,3911,5944.000000,56,10,76766.001280,2566.031795,hint,lora,180 +on10,0,0,24,1,0,2722,4702.000000,56,3,61045.001280,1978.784205,hint,lora,180 +on8,0,0,24,1,0,904,4320.000000,56,0,19099.001280,1753.600205,hint,lora,180 +on1,0,0,28,1,0,3356,5040.000000,56,4,64489.001280,2079.103386,hint,lora,180 +on6,0,0,25,1,0,1936,4500.000000,56,1,45309.001280,1910.512205,hint,lora,180 +on7,0,0,25,1,0,2180,4500.000000,56,1,52917.001280,1913.728000,hint,lora,180 +on9,0,0,26,1,0,2861,4680.000000,56,2,55760.001280,1960.863795,hint,lora,180 +on4,0,0,26,1,0,2203,4680.000000,56,3,46969.001280,1949.920000,hint,lora,180 +on12,0,0,25,0,0,4258,4500.000000,56,1,-1.000000,1856.320000,hint,lora,180 +on2,0,0,28,1,0,4332,5040.000000,56,4,86115.000000,2092.366771,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,56,0,-1.000000,2229.249024,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,57,0,-1.000000,2105.059891,hint,lora,180 +on2,0,0,28,1,0,1332,5040.000000,57,4,21861.001280,2128.015386,hint,lora,180 +on6,0,0,29,1,0,1980,5220.000000,57,5,34751.001280,2157.455181,hint,lora,180 +on10,0,0,25,1,0,31,4500.000000,57,1,3865.001280,1874.848205,hint,lora,180 +on4,0,0,27,1,0,876,4860.000000,57,3,17492.001280,2025.408000,hint,lora,180 +on5,0,0,26,1,0,914,4680.000000,57,2,18266.001280,1916.319795,hint,lora,180 +on9,0,0,24,1,0,226,4386.000000,57,1,7369.001280,1902.096205,hint,lora,180 +on7,0,0,29,1,0,1477,5220.000000,57,5,27247.001280,2238.591590,hint,lora,180 +on3,0,0,25,1,0,386,4500.000000,57,1,11905.001280,1853.119795,hint,lora,180 +on1,0,0,26,1,0,1726,4680.000000,57,2,30722.001280,1903.743386,hint,lora,180 +on8,0,0,30,1,0,2087,5400.000000,57,6,39805.001280,2314.927386,hint,lora,180 +on11,0,0,29,1,0,2587,5362.000000,57,6,53831.001280,2288.463386,hint,lora,180 +on12,0,0,24,0,0,4207,4320.000000,57,0,-1.000000,1771.680000,hint,lora,180 +on9,0,0,32,1,0,2848,5891.000000,58,9,52629.001280,2523.486566,hint,lora,180 +on2,0,0,31,1,0,3369,5580.000000,58,7,65423.001280,2376.302771,hint,lora,180 +on4,0,0,28,1,0,1619,5040.000000,58,4,34947.001280,2110.431590,hint,lora,180 +on12,0,0,30,1,0,2195,5566.000000,58,8,45290.001280,2394.719590,hint,lora,180 +on3,0,0,24,1,0,1808,4434.000000,58,1,37662.001280,1802.192000,hint,lora,180 +on5,0,0,29,1,0,3305,5248.000000,58,6,64654.001280,2211.262976,hint,lora,180 +on10,0,0,27,1,0,2389,5099.000000,58,5,49816.001280,2172.575590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,58,0,-1.000000,2228.352614,hint,lora,180 +on7,0,0,30,1,0,2068,5400.000000,58,6,40262.001280,2343.567386,hint,lora,180 +on8,0,0,29,1,0,2787,5271.000000,58,7,57030.001280,2268.014771,hint,lora,180 +on1,0,0,25,1,0,815,4500.000000,58,1,21046.001280,1874.687795,hint,lora,180 +on6,0,0,30,1,0,3513,5400.000000,58,8,71114.001280,2294.654566,hint,lora,180 +on11,0,0,34,1,0,2884,6182.000000,58,12,58702.001280,2740.110157,hint,lora,180 +on6,0,0,26,1,0,930,4721.000000,59,3,17408.001280,1957.840410,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,59,0,-1.000000,2079.490458,hint,lora,180 +on3,0,0,26,1,0,626,4680.000000,59,2,13129.001280,1925.071590,hint,lora,180 +on1,0,0,32,1,0,2234,5760.000000,59,8,36165.001280,2424.958771,hint,lora,180 +on12,0,0,27,0,0,4365,4860.000000,59,3,-1.000000,1988.990771,hint,lora,180 +on4,0,0,27,1,0,1559,4964.000000,59,4,34017.001280,2109.167386,hint,lora,180 +on11,0,0,25,1,0,1010,4567.000000,59,2,20010.001280,1865.088000,hint,lora,180 +on10,0,0,29,1,0,2057,5220.000000,59,5,39867.001280,2189.791181,hint,lora,180 +on7,0,0,28,1,0,1427,5040.000000,59,4,26185.001280,2102.127795,hint,lora,180 +on8,0,0,25,1,0,487,4500.000000,59,1,10499.001280,1828.640000,hint,lora,180 +on5,0,0,24,1,0,1105,4373.000000,59,2,24057.001280,1797.168000,hint,lora,180 +on9,0,0,31,1,0,2490,5580.000000,59,8,43523.001280,2356.558771,hint,lora,180 +on2,0,0,29,1,0,1915,5220.000000,59,5,31045.002560,2133.711181,hint,lora,180 +on11,0,0,27,1,0,1405,4860.000000,60,3,28304.001280,1989.360000,hint,lora,180 +on8,0,0,28,1,0,1815,5040.000000,60,4,33443.001280,2144.095386,hint,lora,180 +on10,0,0,29,1,0,2302,5396.000000,60,8,43749.001280,2330.351181,hint,lora,180 +on12,0,0,26,1,0,1397,4680.000000,60,2,30245.001280,1969.312000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,60,0,-1.000000,2100.610458,hint,lora,180 +on3,0,0,26,1,0,1071,4680.000000,60,2,21284.001280,1903.679590,hint,lora,180 +on9,0,0,25,1,0,831,4500.000000,60,1,17534.001280,1828.863590,hint,lora,180 +on2,0,0,27,1,0,1331,4860.000000,60,3,24392.001280,2035.407590,hint,lora,180 +on1,0,0,26,1,0,1837,4680.000000,60,2,37936.001280,1931.487590,hint,lora,180 +on4,0,0,27,1,0,1848,4992.000000,60,5,41660.001280,2135.534976,hint,lora,180 +on6,0,0,31,1,0,3850,5580.000000,60,7,68125.001280,2340.303590,hint,lora,180 +on7,0,0,29,1,0,2289,5239.000000,60,7,48637.001280,2263.598976,hint,lora,180 +on5,0,0,26,1,0,512,4680.000000,60,2,11224.002560,1936.480205,hint,lora,180 +on9,0,0,32,1,0,2702,5875.000000,61,9,42539.001280,2424.878566,hint,lora,180 +on2,0,0,27,1,0,1351,4860.000000,61,3,25925.001280,2006.784000,hint,lora,180 +on4,0,0,24,1,0,362,4352.000000,61,1,13411.001280,1803.056205,hint,lora,180 +on1,0,0,29,1,0,1450,5323.000000,61,6,33875.001280,2278.367795,hint,lora,180 +on10,0,0,25,1,0,943,4500.000000,61,1,18371.001280,1858.351795,hint,lora,180 +on3,0,0,32,1,0,2520,5760.000000,61,9,44582.001280,2499.343386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,61,0,-1.000000,2103.970867,hint,lora,180 +on12,0,0,25,1,0,4028,4500.000000,61,2,82497.001280,1858.400000,hint,lora,180 +on7,0,0,30,1,0,2488,5640.000000,61,10,49242.001280,2420.782771,hint,lora,180 +on6,0,0,26,1,0,1129,4808.000000,61,3,25055.001280,2024.352000,hint,lora,180 +on11,0,0,28,1,0,1973,5040.000000,61,4,36172.001280,2074.943181,hint,lora,180 +on5,0,0,30,1,0,1375,5400.000000,61,6,30910.001280,2367.582976,hint,lora,180 +on8,0,0,26,1,0,986,4680.000000,61,2,15466.002560,1900.576000,hint,lora,180 +on6,0,0,29,1,0,1629,5220.000000,62,5,37207.001280,2260.078566,hint,lora,180 +on7,0,0,28,1,0,1204,5040.000000,62,4,21777.001280,2123.039590,hint,lora,180 +on3,0,0,32,1,0,2422,5769.000000,62,10,45612.001280,2454.111181,hint,lora,180 +on8,0,0,26,1,0,981,4680.000000,62,2,20440.001280,1934.031590,hint,lora,180 +on10,0,0,29,1,0,1708,5447.000000,62,7,29891.001280,2267.712000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,62,0,-1.000000,2117.570253,hint,lora,180 +on4,0,0,32,1,0,2073,5760.000000,62,9,32619.001280,2411.567181,hint,lora,180 +on1,0,0,25,1,0,405,4500.000000,62,1,10619.001280,1848.112000,hint,lora,180 +on2,0,0,27,1,0,2527,4860.000000,62,4,49636.001280,2007.839386,hint,lora,180 +on12,0,0,27,1,0,671,4860.000000,62,3,13273.001280,2021.150976,hint,lora,180 +on11,0,0,31,1,0,2300,5580.000000,62,8,41084.001280,2343.375181,hint,lora,180 +on5,0,0,24,1,0,9,4320.000000,62,0,3062.001280,1761.087795,hint,lora,180 +on9,0,0,28,1,0,985,5040.000000,62,4,14946.001280,2087.119795,hint,lora,180 +on6,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,hint,lora,180 +on5,0,0,27,1,0,4000,4860.000000,63,3,76665.002560,1975.359386,hint,lora,180 +on1,0,0,27,1,0,3826,5001.000000,63,5,80886.001280,2132.991590,hint,lora,180 +on2,0,0,24,1,0,3600,4320.000000,63,0,72960.001280,1756.640000,hint,lora,180 +on12,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,hint,lora,180 +on10,0,0,24,1,0,2944,4322.000000,63,1,62854.001280,1768.704410,hint,lora,180 +on11,0,0,24,0,0,3901,4320.000000,63,0,-1.000000,1813.600000,hint,lora,180 +on3,0,0,25,0,0,3993,4500.000000,63,1,-1.000000,1888.160000,hint,lora,180 +on4,0,0,27,0,0,4351,4860.000000,63,3,-1.000000,1994.974976,hint,lora,180 +on0,1,4,24,0,0,0,4320.000000,63,0,-1.000000,2102.368410,hint,lora,180 +on9,0,0,26,0,0,4348,4680.000000,63,2,-1.000000,1926.623590,hint,lora,180 +on7,0,0,24,0,0,4200,4320.000000,63,0,-1.000000,1756.800000,hint,lora,180 +on8,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,hint,lora,180 +on12,0,0,25,0,0,4382,4557.000000,64,3,-1.000000,1870.479590,hint,lora,180 +on8,0,0,24,0,0,4166,4320.000000,64,0,-1.000000,1763.200000,hint,lora,180 +on1,0,0,27,1,0,1955,4860.000000,64,4,39761.001280,2091.552205,hint,lora,180 +on10,0,0,25,1,0,1459,4516.000000,64,3,33236.001280,1914.560000,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,64,0,-1.000000,2072.773120,hint,lora,180 +on11,0,0,25,1,0,2907,4500.000000,64,1,62634.001280,1882.784205,hint,lora,180 +on6,0,0,25,1,0,543,4500.000000,64,1,12600.602560,1853.872614,hint,lora,180 +on7,0,0,25,1,0,2111,4500.000000,64,1,45014.001280,1853.984410,hint,lora,180 +on5,0,0,25,1,0,797,4500.000000,64,1,19423.001280,1894.992205,hint,lora,180 +on3,0,0,25,1,0,834,4500.000000,64,1,15197.001280,1838.688614,hint,lora,180 +on2,0,0,25,1,0,2411,4617.000000,64,2,55676.001280,1981.280410,hint,lora,180 +on4,0,0,27,1,0,1696,4860.000000,64,4,31938.001280,2001.488205,hint,lora,180 +on9,0,0,26,1,0,1192,4680.000000,64,2,28431.001280,1983.568410,hint,lora,180 +on8,0,0,33,0,0,4434,5940.000000,65,9,-1.000000,2575.022771,hint,lora,180 +on6,0,0,28,0,0,4388,5135.000000,65,5,-1.000000,2152.063181,hint,lora,180 +on1,0,0,27,1,0,1227,4860.000000,65,3,24842.001280,2054.527795,hint,lora,180 +on10,0,0,31,1,0,2026,5695.000000,65,8,34610.001280,2381.791386,hint,lora,180 +on5,0,0,26,1,0,586,4680.000000,65,2,13123.001280,1980.751386,hint,lora,180 +on9,0,0,28,1,0,1545,5040.000000,65,4,29234.001280,2082.270771,hint,lora,180 +on4,0,0,29,1,0,1497,5365.000000,65,6,36785.001280,2355.023590,hint,lora,180 +on7,0,0,26,1,0,1305,4680.000000,65,2,28724.001280,1936.480000,hint,lora,180 +on3,0,0,26,1,0,729,4680.000000,65,2,18998.001280,1996.544410,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,65,0,-1.000000,2095.426662,hint,lora,180 +on2,0,0,25,1,0,322,4500.000000,65,1,6909.001280,1856.448000,hint,lora,180 +on11,0,0,26,1,0,459,4680.000000,65,2,9979.001280,1907.152000,hint,lora,180 +on12,0,0,26,1,0,1999,4772.000000,65,3,43056.001280,1980.960000,hint,lora,180 +on4,0,0,27,0,0,4455,4860.000000,66,3,-1.000000,1991.742566,hint,lora,180 +on1,0,0,25,1,0,634,4544.000000,66,2,13310.001280,1884.655795,hint,lora,180 +on8,0,0,28,1,0,1206,5040.000000,66,4,19527.001280,2103.455795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,66,0,-1.000000,2044.673229,hint,lora,180 +on2,0,0,30,1,0,1992,5576.000000,66,7,39241.001280,2426.431795,hint,lora,180 +on6,0,0,27,1,0,1390,4860.000000,66,3,25113.002560,1978.527181,hint,lora,180 +on3,0,0,30,1,0,1671,5400.000000,66,6,30298.001280,2293.983181,hint,lora,180 +on11,0,0,24,1,0,180,4320.000000,66,0,4524.001280,1784.768205,hint,lora,180 +on5,0,0,34,1,0,2624,6120.000000,66,10,42247.001280,2621.869542,hint,lora,180 +on10,0,0,26,1,0,846,4680.000000,66,2,17653.001280,1931.391795,hint,lora,180 +on9,0,0,25,1,0,403,4500.000000,66,1,9599.001280,1829.760000,hint,lora,180 +on12,0,0,26,1,0,1607,4680.000000,66,2,34710.001280,1916.895795,hint,lora,180 +on7,0,0,26,1,0,997,4680.000000,66,2,26929.001280,2029.504000,hint,lora,180 +on5,0,0,26,1,0,2870,4721.000000,67,3,61157.001280,1987.663181,hint,lora,180 +on3,0,0,24,1,0,1967,4473.000000,67,1,44120.001280,1943.823590,hint,lora,180 +on7,0,0,29,1,0,3564,5220.000000,67,5,71202.001280,2221.086362,hint,lora,180 +on11,0,0,27,1,0,3697,4860.000000,67,3,73828.001280,2020.095386,hint,lora,180 +on1,0,0,25,1,0,739,4500.000000,67,1,14933.001280,1854.400205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,67,0,-1.000000,2274.113434,hint,lora,180 +on8,0,0,25,1,0,1712,4500.000000,67,1,36330.001280,1868.272205,hint,lora,180 +on6,0,0,27,1,0,2556,4860.000000,67,3,57566.001280,2087.216000,hint,lora,180 +on4,0,0,26,1,0,2416,4702.000000,67,4,50029.001280,1961.647386,hint,lora,180 +on10,0,0,28,1,0,3144,5040.000000,67,4,63480.001280,2125.775386,hint,lora,180 +on9,0,0,31,1,0,3237,5740.000000,67,9,65758.001280,2507.615590,hint,lora,180 +on12,0,0,25,1,0,1330,4637.000000,67,2,29371.001280,1909.040205,hint,lora,180 +on2,0,0,25,1,0,912,4542.000000,67,3,18200.001280,1858.880000,hint,lora,180 +on11,0,0,24,1,0,114,4405.000000,68,1,5579.001280,1801.040410,hint,lora,180 +on5,0,0,27,1,0,3199,4860.000000,68,4,66488.001280,2062.271590,hint,lora,180 +on4,0,0,26,1,0,2860,4691.000000,68,4,58935.001280,1968.622566,hint,lora,180 +on3,0,0,25,1,0,2366,4500.000000,68,2,54791.001280,1898.527590,hint,lora,180 +on8,0,0,24,1,0,2243,4320.000000,68,1,47313.001280,1789.760205,hint,lora,180 +on12,0,0,25,1,0,1710,4500.000000,68,1,35653.001280,1841.023795,hint,lora,180 +on10,0,0,25,1,0,1162,4500.000000,68,1,26443.002560,1866.719386,hint,lora,180 +on9,0,0,26,1,0,3048,4680.000000,68,2,63946.001280,1946.463590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,68,0,-1.000000,2176.225843,hint,lora,180 +on2,0,0,26,1,0,1113,4680.000000,68,2,21804.001280,1908.400000,hint,lora,180 +on1,0,0,26,1,0,1312,4745.000000,68,4,31288.001280,2020.352205,hint,lora,180 +on6,0,0,26,1,0,1960,4810.000000,68,4,40150.001280,2021.759590,hint,lora,180 +on7,0,0,29,1,0,1697,5379.000000,68,6,38511.001280,2302.622976,hint,lora,180 +on11,0,0,35,1,0,4111,6300.000000,69,11,71746.001280,2694.141952,hint,lora,180 +on6,0,0,30,1,0,2792,5400.000000,69,6,51184.001280,2238.399795,hint,lora,180 +on3,0,0,30,1,0,2418,5400.000000,69,6,50037.001280,2312.367181,hint,lora,180 +on10,0,0,34,1,0,3504,6120.000000,69,11,66480.001280,2705.950771,hint,lora,180 +on8,0,0,27,1,0,1810,4860.000000,69,3,35481.001280,1999.087590,hint,lora,180 +on9,0,0,31,1,0,3030,5580.000000,69,7,55875.001280,2374.062771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,69,0,-1.000000,2180.289843,hint,lora,180 +on4,0,0,25,1,0,1901,4500.000000,69,1,36180.001280,1870.447386,hint,lora,180 +on2,0,0,25,1,0,1928,4636.000000,69,2,39896.001280,1952.799181,hint,lora,180 +on5,0,0,28,1,0,2371,5040.000000,69,4,46414.001280,2121.439795,hint,lora,180 +on12,0,0,27,1,0,1527,4860.000000,69,3,31756.001280,2004.480205,hint,lora,180 +on1,0,0,26,1,0,2965,4807.000000,69,3,64016.001280,2044.831181,hint,lora,180 +on7,0,0,32,1,0,3296,5760.000000,69,8,60592.001280,2472.590157,hint,lora,180 +on2,0,0,25,1,0,870,4500.000000,70,1,20540.001280,1878.400205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,70,0,-1.000000,2121.859891,hint,lora,180 +on9,0,0,26,0,0,3936,4832.000000,70,4,-1.000000,2076.319590,hint,lora,180 +on8,0,0,26,1,0,1221,4680.000000,70,2,23318.001280,1960.799795,hint,lora,180 +on3,0,0,24,1,0,2880,4320.000000,70,0,59689.001280,1785.440410,hint,lora,180 +on5,0,0,25,1,0,566,4500.000000,70,1,13523.001280,1881.408000,hint,lora,180 +on11,0,0,26,1,0,642,4680.000000,70,2,14917.001280,1976.400000,hint,lora,180 +on7,0,0,26,1,0,3533,4680.000000,70,2,70987.001280,1916.800000,hint,lora,180 +on12,0,0,26,1,0,1277,4680.000000,70,2,28394.001280,1983.743795,hint,lora,180 +on6,0,0,29,1,0,2138,5220.000000,70,5,40616.001280,2211.246771,hint,lora,180 +on4,0,0,30,1,0,1761,5400.000000,70,7,32706.001280,2322.526976,hint,lora,180 +on1,0,0,33,1,0,2309,5940.000000,70,9,49727.001280,2666.350976,hint,lora,180 +on10,0,0,27,1,0,1865,4860.000000,70,3,38461.001280,2016.063795,hint,lora,180 +on5,0,0,26,1,0,300,4680.000000,71,2,5809.002560,1915.840205,hint,lora,180 +on8,0,0,25,1,0,470,4500.000000,71,1,13309.001280,1850.623795,hint,lora,180 +on7,0,0,26,1,0,1039,4680.000000,71,2,22942.001280,1962.624205,hint,lora,180 +on10,0,0,26,1,0,761,4680.000000,71,2,18698.001280,2041.279795,hint,lora,180 +on11,0,0,31,1,0,2204,5822.000000,71,9,41309.001280,2499.934157,hint,lora,180 +on2,0,0,26,1,0,1391,4680.000000,71,2,29361.001280,1940.032205,hint,lora,180 +on3,0,0,30,1,0,1647,5400.000000,71,7,27889.001280,2267.358771,hint,lora,180 +on4,0,0,34,1,0,2387,6120.000000,71,11,38914.001280,2619.597747,hint,lora,180 +on1,0,0,27,1,0,3303,4871.000000,71,4,71079.001280,2051.695590,hint,lora,180 +on6,0,0,25,1,0,271,4500.000000,71,1,8840.001280,1863.071386,hint,lora,180 +on12,0,0,27,1,0,1616,5022.000000,71,4,33816.001280,2117.246976,hint,lora,180 +on9,0,0,26,1,0,713,4680.000000,71,2,14561.001280,1940.831795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,71,0,-1.000000,2097.058662,hint,lora,180 +on2,0,0,32,1,0,3535,5777.000000,72,10,63460.001280,2396.125952,hint,lora,180 +on11,0,0,27,1,0,2785,5174.000000,72,6,59862.001280,2240.686771,hint,lora,180 +on9,0,0,30,1,0,2739,5400.000000,72,6,51063.001280,2265.758566,hint,lora,180 +on12,0,0,25,1,0,1690,4500.000000,72,1,41129.001280,1921.184000,hint,lora,180 +on6,0,0,25,1,0,1325,4500.000000,72,1,29441.001280,1875.167795,hint,lora,180 +on10,0,0,25,1,0,1080,4500.000000,72,2,27064.001280,1860.287590,hint,lora,180 +on1,0,0,28,1,0,2746,5040.000000,72,6,54720.001280,2156.430771,hint,lora,180 +on3,0,0,25,1,0,1580,4500.000000,72,1,34253.001280,1860.112000,hint,lora,180 +on8,0,0,24,1,0,1096,4320.000000,72,0,23144.001280,1753.600205,hint,lora,180 +on7,0,0,29,1,0,2209,5392.000000,72,6,47450.001280,2319.326771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,72,0,-1.000000,2106.049843,hint,lora,180 +on4,0,0,28,1,0,2459,5040.000000,72,4,46677.001280,2096.911181,hint,lora,180 +on5,0,0,25,1,0,1799,4615.000000,72,2,36481.001280,1920.655795,hint,lora,180 +on8,0,0,28,1,0,2011,5040.000000,73,4,40205.001280,2126.127795,hint,lora,180 +on6,0,0,27,1,0,1319,4860.000000,73,3,25546.001280,2027.311795,hint,lora,180 +on9,0,0,26,1,0,1743,4680.000000,73,2,32584.001280,1962.879795,hint,lora,180 +on10,0,0,26,1,0,651,4680.000000,73,2,13504.002560,1919.999795,hint,lora,180 +on1,0,0,31,1,0,2462,5580.000000,73,7,39089.001280,2279.405747,hint,lora,180 +on2,0,0,27,1,0,2658,4860.000000,73,3,52626.001280,2038.511181,hint,lora,180 +on7,0,0,26,1,0,713,4680.000000,73,3,14644.001280,1910.719386,hint,lora,180 +on11,0,0,30,1,0,2543,5402.000000,73,8,47638.001280,2263.933747,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,73,0,-1.000000,2134.144614,hint,lora,180 +on3,0,0,24,1,0,1458,4456.000000,73,1,31107.001280,1811.040000,hint,lora,180 +on5,0,0,28,1,0,2255,5040.000000,73,5,46730.001280,2112.494976,hint,lora,180 +on12,0,0,25,1,0,992,4600.000000,73,2,24882.001280,1916.319795,hint,lora,180 +on4,0,0,25,1,0,833,4500.000000,73,1,21182.001280,1857.328000,hint,lora,180 +on10,0,0,27,1,0,811,4860.000000,74,3,23102.001280,2099.376000,hint,lora,180 +on11,0,0,32,1,0,3284,5803.000000,74,9,62920.001280,2461.486157,hint,lora,180 +on2,0,0,28,1,0,2463,5040.000000,74,4,49053.001280,2112.862976,hint,lora,180 +on1,0,0,32,1,0,2700,5760.000000,74,8,52208.001280,2496.158362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,74,0,-1.000000,2162.848614,hint,lora,180 +on8,0,0,27,1,0,2185,4878.000000,74,4,44290.001280,2043.454771,hint,lora,180 +on4,0,0,27,1,0,1816,5120.000000,74,5,39144.001280,2176.191386,hint,lora,180 +on7,0,0,27,1,0,1776,4941.000000,74,4,34587.001280,2050.975590,hint,lora,180 +on3,0,0,29,1,0,2259,5321.000000,74,6,43004.001280,2255.646771,hint,lora,180 +on12,0,0,25,1,0,1211,4520.000000,74,2,28207.001280,1863.167590,hint,lora,180 +on5,0,0,30,1,0,3041,5551.000000,74,8,56155.001280,2340.638157,hint,lora,180 +on9,0,0,24,1,0,690,4367.000000,74,1,17156.001280,1775.392000,hint,lora,180 +on6,0,0,28,1,0,1646,5040.000000,74,4,31688.001280,2100.015590,hint,lora,180 +on1,0,0,30,1,0,2482,5400.000000,75,6,46612.001280,2256.254976,hint,lora,180 +on2,0,0,25,1,0,900,4500.000000,75,1,16854.001280,1878.400410,hint,lora,180 +on3,0,0,25,1,0,1915,4500.000000,75,1,41766.002560,1857.119795,hint,lora,180 +on9,0,0,26,1,0,1648,4680.000000,75,2,35748.001280,1994.240000,hint,lora,180 +on5,0,0,25,1,0,1013,4500.000000,75,1,21805.001280,1884.224000,hint,lora,180 +on7,0,0,28,1,0,1949,5040.000000,75,4,37356.001280,2127.007181,hint,lora,180 +on8,0,0,25,1,0,1068,4500.000000,75,1,25546.001280,1923.984205,hint,lora,180 +on11,0,0,31,1,0,2845,5580.000000,75,7,56013.001280,2446.078362,hint,lora,180 +on10,0,0,28,0,0,4266,5098.000000,75,5,-1.000000,2172.910976,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,75,0,-1.000000,2128.355686,hint,lora,180 +on4,0,0,29,1,0,2508,5220.000000,75,5,51615.001280,2237.631386,hint,lora,180 +on6,0,0,24,1,0,1323,4462.000000,75,1,29217.001280,1879.359795,hint,lora,180 +on12,0,0,27,1,0,798,4860.000000,75,4,19699.602560,2077.440410,hint,lora,180 +on2,0,0,27,0,0,4374,4860.000000,76,3,-1.000000,1996.847386,hint,lora,180 +on1,0,0,26,1,0,1155,4680.000000,76,3,22468.001280,1983.312000,hint,lora,180 +on9,0,0,26,1,0,916,4748.000000,76,3,18738.001280,1964.096410,hint,lora,180 +on10,0,0,30,1,0,2330,5400.000000,76,6,44727.001280,2297.102976,hint,lora,180 +on12,0,0,25,1,0,1334,4500.000000,76,1,28382.001280,1902.400410,hint,lora,180 +on3,0,0,29,1,0,2604,5220.000000,76,6,47591.001280,2229.839181,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,76,0,-1.000000,2110.500506,hint,lora,180 +on8,0,0,26,1,0,748,4680.000000,76,2,17605.001280,1932.512000,hint,lora,180 +on7,0,0,26,1,0,1843,4680.000000,76,2,36445.001280,1970.047795,hint,lora,180 +on5,0,0,27,1,0,1979,4860.000000,76,4,41077.001280,2026.479795,hint,lora,180 +on6,0,0,24,1,0,180,4320.000000,76,0,6450.001280,1753.600205,hint,lora,180 +on4,0,0,25,1,0,1446,4631.000000,76,2,30491.001280,1957.695795,hint,lora,180 +on11,0,0,24,1,0,1485,4426.000000,76,1,35553.001280,1925.184410,hint,lora,180 +on11,0,0,30,1,0,1556,5400.000000,77,6,34428.001280,2346.240205,hint,lora,180 +on7,0,0,29,1,0,1470,5220.000000,77,5,27119.001280,2156.430976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,77,0,-1.000000,2140.612301,hint,lora,180 +on10,0,0,26,1,0,1143,4774.000000,77,4,25048.001280,1986.031590,hint,lora,180 +on12,0,0,25,1,0,587,4586.000000,77,3,11125.001280,1907.248000,hint,lora,180 +on9,0,0,30,1,0,4097,5400.000000,77,7,78140.001280,2262.367795,hint,lora,180 +on4,0,0,25,1,0,234,4500.000000,77,1,7505.001280,1882.160205,hint,lora,180 +on5,0,0,29,1,0,3890,5220.000000,77,6,81742.001280,2240.046976,hint,lora,180 +on8,0,0,26,1,0,1029,4680.000000,77,2,21564.001280,1956.959795,hint,lora,180 +on6,0,0,24,1,0,736,4320.000000,77,0,16396.001280,1811.200205,hint,lora,180 +on2,0,0,33,1,0,2587,5940.000000,77,10,44597.001280,2525.503795,hint,lora,180 +on1,0,0,30,1,0,2540,5400.000000,77,6,49441.001280,2315.328205,hint,lora,180 +on3,0,0,32,1,0,2315,5800.000000,77,9,43005.001280,2477.423386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,78,0,-1.000000,2178.273024,hint,lora,180 +on7,0,0,28,1,0,1732,5192.000000,78,5,33961.001280,2197.471181,hint,lora,180 +on12,0,0,25,1,0,500,4500.000000,78,1,11043.001280,1858.527795,hint,lora,180 +on6,0,0,28,1,0,1493,5040.000000,78,4,27145.001280,2052.735386,hint,lora,180 +on8,0,0,35,1,0,3000,6300.000000,78,11,51778.001280,2710.926362,hint,lora,180 +on10,0,0,30,1,0,2211,5519.000000,78,7,42894.001280,2345.247386,hint,lora,180 +on1,0,0,33,1,0,3478,5940.000000,78,9,64317.001280,2549.869952,hint,lora,180 +on2,0,0,32,1,0,3004,5764.000000,78,10,55187.001280,2472.014362,hint,lora,180 +on3,0,0,32,1,0,2590,5760.000000,78,9,50204.001280,2456.990362,hint,lora,180 +on11,0,0,26,1,0,1616,4736.000000,78,3,32175.001280,1928.223590,hint,lora,180 +on5,0,0,25,1,0,867,4500.000000,78,1,24073.001280,1852.000000,hint,lora,180 +on9,0,0,29,1,0,2175,5220.000000,78,5,37071.001280,2145.471590,hint,lora,180 +on4,0,0,31,1,0,2433,5692.000000,78,8,46081.001280,2441.198976,hint,lora,180 +on6,0,0,24,0,0,4303,4320.000000,79,0,-1.000000,1730.880000,hint,lora,180 +on10,0,0,25,1,0,474,4500.000000,79,1,11759.001280,1854.448205,hint,lora,180 +on1,0,0,24,0,0,4131,4320.000000,79,0,-1.000000,1758.720000,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,79,0,-1.000000,2115.908506,hint,lora,180 +on3,0,0,28,1,0,1141,5040.000000,79,6,23268.001280,2085.103590,hint,lora,180 +on9,0,0,24,1,0,3328,4320.000000,79,0,69827.001280,1771.680000,hint,lora,180 +on2,0,0,25,1,0,79,4500.000000,79,1,4869.001280,1882.880614,hint,lora,180 +on5,0,0,25,1,0,773,4513.000000,79,2,20415.001280,1892.079386,hint,lora,180 +on8,0,0,25,1,0,2436,4500.000000,79,1,53596.001280,1886.400205,hint,lora,180 +on7,0,0,24,0,0,4087,4320.000000,79,0,-1.000000,1795.680000,hint,lora,180 +on12,0,0,25,1,0,851,4500.000000,79,1,17080.002560,1825.920000,hint,lora,180 +on4,0,0,27,1,0,3645,4906.000000,79,4,79892.001280,2078.127590,hint,lora,180 +on11,0,0,25,1,0,253,4500.000000,79,2,8023.001280,1889.408614,hint,lora,180 +on11,0,0,25,1,0,1029,4532.000000,80,2,22191.001280,1910.303795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,80,0,-1.000000,2124.931072,hint,lora,180 +on12,0,0,26,1,0,3251,4775.000000,80,3,71701.001280,2012.655386,hint,lora,180 +on4,0,0,27,1,0,1135,4860.000000,80,3,21578.001280,1995.039386,hint,lora,180 +on1,0,0,28,1,0,1847,5043.000000,80,5,33216.001280,2112.526976,hint,lora,180 +on8,0,0,26,1,0,700,4680.000000,80,2,15129.001280,2064.512410,hint,lora,180 +on7,0,0,25,1,0,1232,4500.000000,80,1,28053.001280,1833.023795,hint,lora,180 +on3,0,0,28,1,0,2034,5040.000000,80,5,40644.001280,2097.071590,hint,lora,180 +on5,0,0,25,1,0,275,4500.000000,80,1,7812.001280,1867.424205,hint,lora,180 +on6,0,0,25,1,0,2573,4500.000000,80,1,54818.001280,1862.080205,hint,lora,180 +on10,0,0,34,1,0,2831,6120.000000,80,11,45370.001280,2569.406362,hint,lora,180 +on9,0,0,26,1,0,1534,4680.000000,80,2,30967.001280,1932.479795,hint,lora,180 +on2,0,0,29,1,0,2053,5338.000000,80,6,36670.001280,2264.400000,hint,lora,180 +on3,0,0,31,1,0,1886,5580.000000,81,7,29374.001280,2294.335386,hint,lora,180 +on9,0,0,26,1,0,1254,4680.000000,81,2,26639.001280,1951.055590,hint,lora,180 +on5,0,0,32,1,0,2726,5794.000000,81,10,60044.001280,2586.894362,hint,lora,180 +on8,0,0,35,1,0,2383,6300.000000,81,11,41023.001280,2729.885747,hint,lora,180 +on12,0,0,27,1,0,1090,4860.000000,81,3,20631.001280,2044.640000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,81,0,-1.000000,2139.233638,hint,lora,180 +on2,0,0,28,1,0,1004,5040.000000,81,4,15770.001280,2137.567386,hint,lora,180 +on6,0,0,32,1,0,2115,5760.000000,81,8,36382.001280,2477.166362,hint,lora,180 +on7,0,0,33,1,0,2329,5940.000000,81,9,47385.001280,2605.182771,hint,lora,180 +on4,0,0,30,1,0,1788,5450.000000,81,7,33735.001280,2325.710976,hint,lora,180 +on10,0,0,24,1,0,108,4459.000000,81,1,6366.001280,1836.288000,hint,lora,180 +on11,0,0,25,1,0,424,4598.000000,81,2,9465.001280,1886.495795,hint,lora,180 +on1,0,0,27,1,0,774,4860.000000,81,3,14240.001280,1979.087590,hint,lora,180 +on9,0,0,26,1,0,393,4680.000000,82,2,9586.001280,1925.343795,hint,lora,180 +on4,0,0,28,1,0,1379,5138.000000,82,5,24500.001280,2125.087590,hint,lora,180 +on11,0,0,32,1,0,2514,5828.000000,82,9,42668.001280,2484.589952,hint,lora,180 +on8,0,0,33,1,0,2109,5940.000000,82,9,34551.001280,2519.966771,hint,lora,180 +on2,0,0,27,1,0,1381,4860.000000,82,3,32249.001280,2067.711386,hint,lora,180 +on12,0,0,31,1,0,2271,5580.000000,82,7,36771.001280,2340.239181,hint,lora,180 +on6,0,0,34,1,0,3981,6369.000000,82,12,79017.001280,2790.318771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,82,0,-1.000000,2176.225434,hint,lora,180 +on1,0,0,31,1,0,4237,5580.000000,82,9,82700.001280,2363.327181,hint,lora,180 +on5,0,0,29,1,0,1660,5372.000000,82,6,26117.001280,2306.990976,hint,lora,180 +on7,0,0,24,1,0,199,4384.000000,82,1,6827.001280,1810.464000,hint,lora,180 +on10,0,0,27,1,0,912,4860.000000,82,3,17385.001280,2034.496205,hint,lora,180 +on3,0,0,27,1,0,703,4860.000000,82,3,12133.001280,1976.944000,hint,lora,180 +on6,0,0,26,1,0,746,4680.000000,83,2,16200.001280,1963.952205,hint,lora,180 +on3,0,0,31,1,0,1910,5618.000000,83,8,37799.001280,2448.446976,hint,lora,180 +on1,0,0,28,1,0,2550,5040.000000,83,6,52030.001280,2104.543181,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,83,0,-1.000000,2167.298662,hint,lora,180 +on9,0,0,26,1,0,1174,4680.000000,83,2,22123.001280,1928.320000,hint,lora,180 +on12,0,0,25,1,0,947,4500.000000,83,1,21328.001280,1828.896410,hint,lora,180 +on11,0,0,25,1,0,2296,4500.000000,83,1,45121.001280,1887.104000,hint,lora,180 +on2,0,0,26,1,0,2207,4733.000000,83,3,47982.001280,2009.199386,hint,lora,180 +on10,0,0,26,1,0,720,4694.000000,83,3,13292.001280,1939.312205,hint,lora,180 +on7,0,0,30,1,0,2131,5400.000000,83,6,33651.001280,2225.487590,hint,lora,180 +on8,0,0,29,1,0,1435,5231.000000,83,6,25839.001280,2246.238771,hint,lora,180 +on5,0,0,32,1,0,2829,5940.000000,83,10,54831.001280,2553.007590,hint,lora,180 +on4,0,0,25,0,0,4230,4500.000000,83,2,-1.000000,1839.679795,hint,lora,180 +on3,0,0,35,1,0,3210,6300.000000,84,12,56387.001280,2691.725542,hint,lora,180 +on2,0,0,25,1,0,625,4500.000000,84,1,14055.001280,1856.880205,hint,lora,180 +on5,0,0,28,1,0,2602,5040.000000,84,4,53909.001280,2128.767590,hint,lora,180 +on12,0,0,26,1,0,1007,4680.000000,84,2,20597.001280,1965.008000,hint,lora,180 +on11,0,0,29,1,0,1661,5370.000000,84,7,33635.001280,2301.391386,hint,lora,180 +on10,0,0,32,1,0,2595,5760.000000,84,8,45152.001280,2463.406362,hint,lora,180 +on1,0,0,25,1,0,1724,4500.000000,84,1,38546.001280,1867.744205,hint,lora,180 +on6,0,0,25,1,0,3718,4500.000000,84,2,85116.000000,1908.832000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,84,0,-1.000000,2182.307891,hint,lora,180 +on8,0,0,24,1,0,118,4416.000000,84,1,7070.001280,1817.328614,hint,lora,180 +on7,0,0,27,1,0,1186,4860.000000,84,3,24471.001280,2058.143590,hint,lora,180 +on4,0,0,28,1,0,2601,5040.000000,84,4,49000.001280,2087.790976,hint,lora,180 +on9,0,0,28,1,0,1029,5040.000000,84,5,17343.001280,2117.391590,hint,lora,180 +on5,0,0,27,1,0,1399,4860.000000,85,3,28173.001280,2048.351795,hint,lora,180 +on11,0,0,25,1,0,32,4500.000000,85,1,4030.001280,1855.840410,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,85,0,-1.000000,2057.092915,hint,lora,180 +on4,0,0,28,1,0,1574,5040.000000,85,5,29439.001280,2129.294976,hint,lora,180 +on6,0,0,27,1,0,1305,4860.000000,85,3,22662.001280,1986.559795,hint,lora,180 +on7,0,0,29,1,0,2752,5220.000000,85,6,48426.001280,2147.407386,hint,lora,180 +on10,0,0,24,1,0,370,4320.000000,85,0,7760.001280,1775.680614,hint,lora,180 +on2,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,hint,lora,180 +on12,0,0,28,1,0,1195,5040.000000,85,4,21063.001280,2087.775795,hint,lora,180 +on8,0,0,26,1,0,576,4680.000000,85,2,12962.001280,1928.528000,hint,lora,180 +on1,0,0,29,1,0,1362,5220.000000,85,5,33488.001280,2261.390976,hint,lora,180 +on9,0,0,26,1,0,880,4680.000000,85,2,17576.001280,1977.008410,hint,lora,180 +on3,0,0,28,1,0,1924,5040.000000,85,4,38937.001280,2169.567386,hint,lora,180 +on3,0,0,27,1,0,2400,4860.000000,86,3,47523.001280,2004.687795,hint,lora,180 +on5,0,0,28,1,0,3103,5040.000000,86,4,61651.002560,2094.111590,hint,lora,180 +on11,0,0,26,1,0,3091,4805.000000,86,3,60513.001280,1968.607795,hint,lora,180 +on12,0,0,32,1,0,3691,5760.000000,86,8,73667.001280,2516.190771,hint,lora,180 +on2,0,0,34,1,0,4040,6120.000000,86,10,76958.001280,2631.822976,hint,lora,180 +on4,0,0,30,1,0,4026,5400.000000,86,6,81010.001280,2340.143590,hint,lora,180 +on7,0,0,29,1,0,3593,5342.000000,86,6,70750.001280,2232.686566,hint,lora,180 +on6,0,0,25,1,0,2479,4504.000000,86,2,53206.001280,1853.359590,hint,lora,180 +on1,0,0,26,1,0,3021,4680.000000,86,3,65452.001280,1955.935386,hint,lora,180 +on9,0,0,25,1,0,1819,4612.000000,86,2,42850.001280,1931.104000,hint,lora,180 +on10,0,0,32,0,0,4535,5822.000000,86,9,-1.000000,2477.871181,hint,lora,180 +on8,0,0,31,1,0,4423,5580.000000,86,7,86247.000000,2371.757952,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,86,0,-1.000000,2208.384205,hint,lora,180 +on12,0,0,29,1,0,2255,5220.000000,87,6,44740.001280,2242.287386,hint,lora,180 +on3,0,0,28,1,0,2473,5040.000000,87,4,53677.001280,2175.791590,hint,lora,180 +on1,0,0,33,1,0,3202,5940.000000,87,9,54885.001280,2499.118362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,87,0,-1.000000,2168.161024,hint,lora,180 +on7,0,0,29,1,0,2471,5220.000000,87,5,49550.001280,2204.606976,hint,lora,180 +on2,0,0,25,1,0,473,4500.000000,87,1,12163.001280,1834.784205,hint,lora,180 +on4,0,0,25,1,0,1786,4500.000000,87,1,39044.001280,1838.144000,hint,lora,180 +on8,0,0,31,1,0,3063,5580.000000,87,8,59347.001280,2387.358566,hint,lora,180 +on9,0,0,28,1,0,1842,5040.000000,87,4,32773.001280,2110.127590,hint,lora,180 +on10,0,0,26,1,0,1897,4680.000000,87,2,40103.001280,1955.615795,hint,lora,180 +on11,0,0,27,1,0,1543,4860.000000,87,3,30198.001280,2012.384000,hint,lora,180 +on6,0,0,25,1,0,209,4500.000000,87,1,7485.001280,1854.624205,hint,lora,180 +on5,0,0,26,1,0,1267,4680.000000,87,2,26602.001280,1900.640000,hint,lora,180 +on9,0,0,27,1,0,843,4860.000000,88,3,18163.001280,2036.063590,hint,lora,180 +on10,0,0,31,1,0,1388,5580.000000,88,7,28191.001280,2415.519386,hint,lora,180 +on1,0,0,27,1,0,1532,4860.000000,88,3,31968.001280,2058.368410,hint,lora,180 +on7,0,0,29,0,0,4360,5220.000000,88,5,-1.000000,2192.158362,hint,lora,180 +on5,0,0,29,1,0,2154,5220.000000,88,6,40521.001280,2232.318566,hint,lora,180 +on6,0,0,27,1,0,1906,4860.000000,88,3,35731.001280,1999.775795,hint,lora,180 +on2,0,0,30,1,0,1932,5429.000000,88,7,37494.001280,2315.615386,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,88,0,-1.000000,2063.844301,hint,lora,180 +on8,0,0,25,1,0,1035,4500.000000,88,1,24392.001280,1888.272000,hint,lora,180 +on4,0,0,26,1,0,703,4680.000000,88,2,17916.001280,1942.655590,hint,lora,180 +on12,0,0,25,1,0,610,4500.000000,88,1,13080.002560,1890.560205,hint,lora,180 +on3,0,0,25,1,0,6,4500.000000,88,1,5731.001280,1963.904410,hint,lora,180 +on11,0,0,25,1,0,559,4651.000000,88,2,7725.001280,1891.360205,hint,lora,180 +on4,0,0,27,1,0,1838,5039.000000,89,4,37355.001280,2113.630976,hint,lora,180 +on2,0,0,24,1,0,867,4356.000000,89,1,20477.001280,1799.280000,hint,lora,180 +on10,0,0,28,1,0,1737,5040.000000,89,4,35150.001280,2108.159386,hint,lora,180 +on5,0,0,31,1,0,2403,5580.000000,89,7,44860.001280,2366.734362,hint,lora,180 +on6,0,0,26,1,0,1028,4680.000000,89,2,22723.001280,1953.567795,hint,lora,180 +on12,0,0,27,1,0,2149,4860.000000,89,3,43124.001280,2007.534976,hint,lora,180 +on3,0,0,25,1,0,180,4500.000000,89,1,6338.602560,1838.608000,hint,lora,180 +on11,0,0,24,1,0,0,4330.000000,89,1,3127.602560,1818.416614,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,89,0,-1.000000,2088.322048,hint,lora,180 +on9,0,0,25,1,0,718,4500.000000,89,1,14312.001280,1857.183795,hint,lora,180 +on7,0,0,29,1,0,1558,5295.000000,89,6,30108.001280,2222.558976,hint,lora,180 +on1,0,0,26,1,0,1354,4680.000000,89,3,26330.001280,1932.063590,hint,lora,180 +on8,0,0,25,1,0,531,4500.000000,89,1,10629.001280,1857.183795,hint,lora,180 +on2,0,0,30,1,0,1611,5400.000000,90,6,25919.001280,2264.831590,hint,lora,180 +on3,0,0,26,1,0,678,4680.000000,90,2,15263.001280,1963.040000,hint,lora,180 +on7,0,0,24,1,0,364,4320.000000,90,0,10635.001280,1755.744000,hint,lora,180 +on1,0,0,28,1,0,2486,5040.000000,90,4,53903.001280,2148.030566,hint,lora,180 +on5,0,0,26,1,0,1550,4780.000000,90,4,30753.001280,2034.032000,hint,lora,180 +on11,0,0,28,1,0,3644,5040.000000,90,4,75235.001280,2103.311590,hint,lora,180 +on12,0,0,29,1,0,1904,5220.000000,90,5,36572.001280,2189.486976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,90,0,-1.000000,2142.817638,hint,lora,180 +on6,0,0,32,1,0,2512,5821.000000,90,9,45473.001280,2464.765747,hint,lora,180 +on10,0,0,33,1,0,2487,5940.000000,90,9,47566.001280,2595.710362,hint,lora,180 +on9,0,0,27,1,0,1152,4965.000000,90,4,19412.001280,2098.655590,hint,lora,180 +on8,0,0,33,1,0,2493,5951.000000,90,10,42638.001280,2562.894157,hint,lora,180 +on4,0,0,27,1,0,1612,5036.000000,90,4,34237.001280,2146.544000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,91,0,-1.000000,2177.987277,hint,lora,180 +on7,0,0,25,1,0,1060,4601.000000,91,2,20754.001280,1874.287795,hint,lora,180 +on11,0,0,27,1,0,1750,4860.000000,91,4,34164.001280,2041.823590,hint,lora,180 +on12,0,0,27,1,0,2600,4860.000000,91,3,48875.001280,2030.670976,hint,lora,180 +on2,0,0,26,1,0,3135,4680.000000,91,2,64734.001280,1934.336000,hint,lora,180 +on4,0,0,35,1,0,3291,6300.000000,91,12,53584.001280,2623.454157,hint,lora,180 +on6,0,0,28,1,0,1957,5040.000000,91,4,37481.001280,2053.615795,hint,lora,180 +on3,0,0,26,1,0,1073,4680.000000,91,2,24500.001280,1993.312000,hint,lora,180 +on8,0,0,26,1,0,1354,4680.000000,91,2,26378.001280,1970.608000,hint,lora,180 +on9,0,0,26,1,0,2969,4680.000000,91,3,67000.001280,1973.728000,hint,lora,180 +on5,0,0,27,1,0,2474,4991.000000,91,4,46366.001280,2062.751181,hint,lora,180 +on10,0,0,26,1,0,1531,4680.000000,91,2,31877.002560,1958.718976,hint,lora,180 +on1,0,0,31,1,0,3776,5580.000000,91,8,76739.001280,2420.286362,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,92,0,-1.000000,2180.642662,hint,lora,180 +on12,0,0,30,1,0,3386,5400.000000,92,7,63643.001280,2283.584000,hint,lora,180 +on6,0,0,27,1,0,2909,4860.000000,92,5,60698.001280,2032.863386,hint,lora,180 +on11,0,0,26,1,0,1481,4804.000000,92,3,32760.001280,2051.839795,hint,lora,180 +on8,0,0,35,1,0,3929,6554.000000,92,13,74117.001280,2849.853952,hint,lora,180 +on7,0,0,25,1,0,1348,4606.000000,92,2,27050.001280,1871.040000,hint,lora,180 +on10,0,0,25,1,0,1790,4507.000000,92,2,37211.001280,1886.064000,hint,lora,180 +on1,0,0,26,1,0,2231,4793.000000,92,3,45398.001280,2004.432000,hint,lora,180 +on5,0,0,25,0,0,4299,4574.000000,92,2,-1.000000,1863.807795,hint,lora,180 +on9,0,0,31,1,0,2988,5580.000000,92,7,57139.001280,2386.574976,hint,lora,180 +on2,0,0,28,1,0,2223,5040.000000,92,4,41608.001280,2089.919590,hint,lora,180 +on3,0,0,32,1,0,2932,5760.000000,92,8,47849.001280,2407.710771,hint,lora,180 +on4,0,0,31,1,0,3524,5653.000000,92,8,66379.001280,2380.174362,hint,lora,180 +on10,0,0,32,1,0,3245,5760.000000,93,8,62110.001280,2458.414771,hint,lora,180 +on3,0,0,33,1,0,3124,5940.000000,93,10,60267.001280,2570.062157,hint,lora,180 +on1,0,0,27,1,0,1183,4860.000000,93,4,24527.001280,2003.615590,hint,lora,180 +on4,0,0,26,1,0,1623,4680.000000,93,3,35674.001280,1957.248000,hint,lora,180 +on6,0,0,28,1,0,2723,5040.000000,93,4,53046.001280,2104.590976,hint,lora,180 +on7,0,0,31,1,0,2904,5600.000000,93,8,57395.001280,2380.270771,hint,lora,180 +on8,0,0,26,1,0,1959,4821.000000,93,4,45904.001280,2060.784000,hint,lora,180 +on11,0,0,27,1,0,3187,4860.000000,93,4,65087.001280,2057.967795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,93,0,-1.000000,2200.706048,hint,lora,180 +on9,0,0,25,1,0,1858,4653.000000,93,4,37781.001280,1899.583590,hint,lora,180 +on12,0,0,26,1,0,1028,4680.000000,93,2,19021.001280,1940.591795,hint,lora,180 +on2,0,0,26,1,0,593,4680.000000,93,2,14916.001280,1939.263795,hint,lora,180 +on5,0,0,25,1,0,3230,4500.000000,93,2,70710.001280,1869.280000,hint,lora,180 +on5,0,0,24,1,0,1194,4339.000000,94,1,28034.201280,1773.792205,hint,lora,180 +on1,0,0,24,1,0,2693,4455.000000,94,2,55168.001280,1825.103590,hint,lora,180 +on6,0,0,27,1,0,3350,4942.000000,94,5,69485.001280,2105.295181,hint,lora,180 +on11,0,0,25,1,0,2320,4500.000000,94,1,46508.001280,1836.800410,hint,lora,180 +on8,0,0,25,1,0,2454,4500.000000,94,1,49435.001280,1867.888000,hint,lora,180 +on12,0,0,24,0,0,4264,4320.000000,94,0,-1.000000,1756.800000,hint,lora,180 +on9,0,0,25,1,0,2634,4500.000000,94,1,60847.001280,1912.639795,hint,lora,180 +on3,0,0,24,1,0,1997,4320.000000,94,0,40400.001280,1782.144205,hint,lora,180 +on7,0,0,25,1,0,3161,4500.000000,94,1,62573.001280,1840.704000,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,94,0,-1.000000,2060.611072,hint,lora,180 +on4,0,0,26,1,0,2613,4680.000000,94,3,50642.001280,1958.080000,hint,lora,180 +on2,0,0,24,0,0,4192,4320.000000,94,1,-1.000000,1743.200000,hint,lora,180 +on10,0,0,27,1,0,3198,4860.000000,94,3,67360.001280,2047.471590,hint,lora,180 +on7,0,0,24,1,0,439,4389.000000,95,1,12717.001280,1809.152000,hint,lora,180 +on9,0,0,29,1,0,2596,5220.000000,95,5,52695.001280,2202.431795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,95,0,-1.000000,2123.876506,hint,lora,180 +on2,0,0,27,1,0,986,4860.000000,95,4,19672.001280,2039.727795,hint,lora,180 +on1,0,0,25,1,0,1390,4659.000000,95,2,27067.001280,1940.479795,hint,lora,180 +on4,0,0,25,1,0,1084,4500.000000,95,1,24232.001280,1861.440000,hint,lora,180 +on5,0,0,32,1,0,2515,5760.000000,95,10,48536.001280,2479.119386,hint,lora,180 +on11,0,0,29,1,0,2041,5242.000000,95,6,38775.001280,2206.032614,hint,lora,180 +on12,0,0,26,1,0,2463,4803.000000,95,5,56140.001280,2092.719795,hint,lora,180 +on10,0,0,25,1,0,2033,4500.000000,95,1,45470.001280,1835.744205,hint,lora,180 +on3,0,0,26,1,0,1717,4680.000000,95,2,35506.001280,1932.063795,hint,lora,180 +on8,0,0,28,1,0,1645,5040.000000,95,4,30760.001280,2138.751590,hint,lora,180 +on6,0,0,26,0,0,4264,4680.000000,95,2,-1.000000,1926.895181,hint,lora,180 +on9,0,0,27,1,0,4051,5023.000000,96,4,81492.001280,2102.319181,hint,lora,180 +on6,0,0,27,1,0,3565,4860.000000,96,3,72289.001280,2046.527795,hint,lora,180 +on4,0,0,26,1,0,2272,4680.000000,96,2,47896.001280,1980.704205,hint,lora,180 +on7,0,0,26,1,0,2503,4680.000000,96,2,57942.001280,2039.648000,hint,lora,180 +on10,0,0,26,1,0,3180,4859.000000,96,3,61877.001280,2006.847590,hint,lora,180 +on12,0,0,24,1,0,2455,4378.000000,96,1,56278.001280,1817.872000,hint,lora,180 +on3,0,0,30,1,0,3669,5502.000000,96,8,77936.001280,2412.654771,hint,lora,180 +on8,0,0,30,1,0,3573,5400.000000,96,7,67263.001280,2255.471181,hint,lora,180 +on1,0,0,29,0,0,4435,5311.000000,96,6,-1.000000,2245.118566,hint,lora,180 +on5,0,0,27,0,0,4482,4860.000000,96,3,-1.000000,1979.888000,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,96,0,-1.000000,2187.137229,hint,lora,180 +on2,0,0,27,1,0,4250,4922.000000,96,4,86192.000000,2048.383386,hint,lora,180 +on11,0,0,26,0,0,4385,4856.000000,96,3,-1.000000,2016.959590,hint,lora,180 +on2,0,0,33,1,0,2751,5940.000000,97,9,50180.001280,2525.005952,hint,lora,180 +on6,0,0,31,1,0,2316,5580.000000,97,7,41398.001280,2359.791795,hint,lora,180 +on3,0,0,28,1,0,1457,5040.000000,97,4,28220.001280,2086.878976,hint,lora,180 +on5,0,0,25,1,0,360,4500.000000,97,1,8775.602560,1834.832410,hint,lora,180 +on4,0,0,26,1,0,869,4680.000000,97,2,19057.001280,1923.584000,hint,lora,180 +on10,0,0,24,1,0,910,4395.000000,97,1,23727.001280,1847.792000,hint,lora,180 +on7,0,0,29,1,0,1652,5220.000000,97,5,30020.001280,2161.887386,hint,lora,180 +on1,0,0,32,1,0,2700,5818.000000,97,10,50596.001280,2471.517542,hint,lora,180 +on11,0,0,28,1,0,2779,5184.000000,97,5,56089.001280,2237.070976,hint,lora,180 +on8,0,0,31,1,0,1903,5653.000000,97,8,36677.002560,2463.470771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,97,0,-1.000000,2154.689434,hint,lora,180 +on9,0,0,28,1,0,2469,5179.000000,97,5,45175.002560,2169.679386,hint,lora,180 +on12,0,0,25,1,0,697,4500.000000,97,1,14098.001280,1828.640000,hint,lora,180 +on12,0,0,32,1,0,2827,5760.000000,98,9,53031.001280,2457.102976,hint,lora,180 +on9,0,0,30,1,0,2742,5400.000000,98,6,48249.001280,2219.118976,hint,lora,180 +on10,0,0,28,1,0,2179,5040.000000,98,4,44600.001280,2124.910566,hint,lora,180 +on5,0,0,26,1,0,462,4680.000000,98,2,9747.001280,1951.120000,hint,lora,180 +on6,0,0,31,1,0,1856,5580.000000,98,8,32619.001280,2383.918566,hint,lora,180 +on7,0,0,29,1,0,1353,5325.000000,98,6,24424.001280,2237.247181,hint,lora,180 +on3,0,0,33,1,0,2700,5960.000000,98,10,37422.001280,2461.999795,hint,lora,180 +on1,0,0,25,1,0,737,4566.000000,98,2,14301.001280,1857.759795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,98,0,-1.000000,2146.528614,hint,lora,180 +on11,0,0,30,1,0,1578,5400.000000,98,6,31327.001280,2305.903181,hint,lora,180 +on8,0,0,30,1,0,1804,5400.000000,98,6,28450.001280,2209.935181,hint,lora,180 +on2,0,0,26,1,0,825,4680.000000,98,2,16829.001280,1940.592000,hint,lora,180 +on4,0,0,33,1,0,2440,5940.000000,98,9,43065.001280,2552.846362,hint,lora,180 +on5,0,0,25,0,0,3965,4575.000000,99,3,-1.000000,1916.239795,hint,lora,180 +on4,0,0,24,0,0,4124,4405.000000,99,1,-1.000000,1802.640410,hint,lora,180 +on6,0,0,25,1,0,1194,4500.000000,99,1,22629.001280,1880.288410,hint,lora,180 +on8,0,0,24,1,0,911,4320.000000,99,0,20343.001280,1758.464410,hint,lora,180 +on2,0,0,28,1,0,4176,5040.000000,99,4,81284.001280,2108.863181,hint,lora,180 +on9,0,0,28,1,0,2948,5166.000000,99,5,56776.001280,2148.142771,hint,lora,180 +on3,0,0,27,1,0,1671,4979.000000,99,4,33781.001280,2129.248410,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,99,0,-1.000000,2091.362048,hint,lora,180 +on7,0,0,29,1,0,2298,5220.000000,99,5,41793.001280,2171.648614,hint,lora,180 +on10,0,0,26,1,0,1283,4680.000000,99,2,28317.001280,1983.536205,hint,lora,180 +on11,0,0,29,1,0,1678,5220.000000,99,5,38538.001280,2252.335590,hint,lora,180 +on1,0,0,29,1,0,2751,5220.000000,99,5,49724.001280,2161.919590,hint,lora,180 +on12,0,0,28,1,0,2114,5040.000000,99,5,45425.001280,2141.774976,hint,lora,180 +on2,0,0,25,1,0,1936,4613.000000,100,2,37192.001280,1895.008000,hint,lora,180 +on1,0,0,25,1,0,720,4500.000000,100,1,12681.001280,1854.080205,hint,lora,180 +on10,0,0,25,1,0,867,4500.000000,100,1,17358.001280,1873.440205,hint,lora,180 +on7,0,0,28,1,0,2193,5040.000000,100,4,44178.001280,2124.959590,hint,lora,180 +on4,0,0,25,1,0,994,4500.000000,100,1,22664.001280,1850.319590,hint,lora,180 +on6,0,0,27,1,0,878,4865.000000,100,5,18452.001280,2036.079590,hint,lora,180 +on3,0,0,25,1,0,1387,4500.000000,100,1,32233.001280,1857.024205,hint,lora,180 +on11,0,0,29,1,0,2452,5316.000000,100,8,52489.001280,2315.856000,hint,lora,180 +on9,0,0,30,1,0,1882,5400.000000,100,6,34701.001280,2292.047181,hint,lora,180 +on5,0,0,24,0,0,4320,4320.000000,100,0,-1.000000,1728.000000,hint,lora,180 +on12,0,0,33,1,0,2687,5940.000000,100,9,49628.001280,2600.032614,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,100,0,-1.000000,2096.612096,hint,lora,180 +on8,0,0,30,1,0,2142,5400.000000,100,6,42864.001280,2301.214771,hint,lora,180 +on4,0,0,25,1,0,160,4500.000000,101,1,4362.001280,1857.296205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,101,0,-1.000000,2089.314253,hint,lora,180 +on8,0,0,28,1,0,1864,5040.000000,101,4,37778.001280,2147.855590,hint,lora,180 +on3,0,0,26,1,0,1725,4680.000000,101,2,33119.001280,1904.816000,hint,lora,180 +on6,0,0,26,1,0,674,4680.000000,101,2,10962.001280,1925.951590,hint,lora,180 +on12,0,0,27,1,0,1140,4860.000000,101,3,22381.001280,2027.423590,hint,lora,180 +on7,0,0,27,1,0,1657,4860.000000,101,3,30844.001280,1996.751181,hint,lora,180 +on11,0,0,25,1,0,796,4500.000000,101,1,17845.001280,1855.359590,hint,lora,180 +on9,0,0,29,1,0,1430,5220.000000,101,5,28204.001280,2192.158976,hint,lora,180 +on1,0,0,32,1,0,2676,5760.000000,101,8,39968.001280,2384.638566,hint,lora,180 +on2,0,0,26,1,0,2035,4683.000000,101,5,45629.001280,1976.127795,hint,lora,180 +on10,0,0,25,1,0,198,4500.000000,101,2,8149.001280,1854.559795,hint,lora,180 +on5,0,0,31,1,0,2503,5673.000000,101,9,47394.001280,2481.455590,hint,lora,180 +on3,0,0,27,1,0,1983,4860.000000,102,3,44377.001280,2066.351795,hint,lora,180 +on1,0,0,27,1,0,2638,4860.000000,102,3,55069.001280,2033.503386,hint,lora,180 +on2,0,0,26,1,0,3267,4680.000000,102,2,67491.001280,1903.999590,hint,lora,180 +on6,0,0,26,1,0,2049,4680.000000,102,2,41722.001280,1983.311795,hint,lora,180 +on9,0,0,28,1,0,2657,5040.000000,102,4,50683.001280,2158.655590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,102,0,-1.000000,2194.626662,hint,lora,180 +on10,0,0,27,1,0,1428,4967.000000,102,4,27202.001280,2058.640205,hint,lora,180 +on8,0,0,25,1,0,746,4500.000000,102,1,17375.001280,1843.968000,hint,lora,180 +on11,0,0,31,1,0,2158,5759.000000,102,9,33904.001280,2442.655181,hint,lora,180 +on7,0,0,27,1,0,2208,4860.000000,102,4,47658.001280,2023.455181,hint,lora,180 +on12,0,0,31,1,0,1689,5580.000000,102,7,30083.001280,2379.455795,hint,lora,180 +on4,0,0,25,1,0,691,4500.000000,102,1,12961.001280,1828.384000,hint,lora,180 +on5,0,0,30,1,0,3093,5400.000000,102,7,60203.001280,2294.893952,hint,lora,180 +on1,0,0,28,1,0,784,5040.000000,103,5,15532.001280,2127.695590,hint,lora,180 +on7,0,0,26,1,0,646,4792.000000,103,3,13092.001280,1990.575590,hint,lora,180 +on5,0,0,27,1,0,3893,4860.000000,103,3,80984.001280,2076.414771,hint,lora,180 +on3,0,0,25,1,0,251,4500.000000,103,1,4646.001280,1874.720205,hint,lora,180 +on12,0,0,27,1,0,1146,4860.000000,103,3,24336.001280,2098.159590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,103,0,-1.000000,2084.386867,hint,lora,180 +on4,0,0,33,1,0,2077,5940.000000,103,9,32720.001280,2532.063181,hint,lora,180 +on6,0,0,29,1,0,1485,5220.000000,103,5,30627.001280,2269.551181,hint,lora,180 +on9,0,0,25,1,0,0,4500.000000,103,1,1101.602560,1852.816614,hint,lora,180 +on11,0,0,27,1,0,1341,5022.000000,103,4,19458.001280,2055.727386,hint,lora,180 +on2,0,0,26,1,0,567,4680.000000,103,2,10024.001280,1903.359795,hint,lora,180 +on10,0,0,26,1,0,2350,4680.000000,103,2,45938.001280,1950.608000,hint,lora,180 +on8,0,0,30,1,0,1532,5400.000000,103,6,25398.001280,2284.303386,hint,lora,180 +on12,0,0,27,1,0,825,4860.000000,104,3,19209.001280,2017.984205,hint,lora,180 +on3,0,0,26,1,0,2242,4680.000000,104,2,44587.001280,1929.488000,hint,lora,180 +on2,0,0,25,1,0,2202,4613.000000,104,2,49490.001280,1947.183590,hint,lora,180 +on9,0,0,30,1,0,3304,5400.000000,104,6,59898.001280,2198.766976,hint,lora,180 +on6,0,0,24,1,0,197,4320.000000,104,0,3881.001280,1753.600205,hint,lora,180 +on5,0,0,25,1,0,278,4500.000000,104,2,7562.001280,1869.439795,hint,lora,180 +on7,0,0,26,1,0,3408,4680.000000,104,2,70488.001280,1921.183590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,104,0,-1.000000,2196.865434,hint,lora,180 +on4,0,0,27,1,0,2658,4860.000000,104,3,50978.001280,2036.207386,hint,lora,180 +on10,0,0,25,1,0,1813,4500.000000,104,1,40787.001280,1845.168000,hint,lora,180 +on11,0,0,32,1,0,3587,5760.000000,104,9,67713.001280,2437.902566,hint,lora,180 +on8,0,0,26,1,0,2838,4700.000000,104,3,56401.001280,1940.591386,hint,lora,180 +on1,0,0,27,1,0,2950,4860.000000,104,3,62713.001280,2079.311386,hint,lora,180 +on7,0,0,31,1,0,3116,5580.000000,105,7,56245.001280,2311.470566,hint,lora,180 +on11,0,0,33,1,0,3299,5940.000000,105,10,58219.001280,2567.118566,hint,lora,180 +on2,0,0,27,1,0,1879,4986.000000,105,4,35576.001280,2056.367386,hint,lora,180 +on9,0,0,25,1,0,1410,4569.000000,105,2,26249.001280,1856.400000,hint,lora,180 +on1,0,0,25,1,0,1077,4500.000000,105,1,25159.001280,1869.984000,hint,lora,180 +on3,0,0,26,1,0,1960,4680.000000,105,2,37887.001280,1960.863795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,105,0,-1.000000,2143.585024,hint,lora,180 +on5,0,0,28,1,0,2286,5040.000000,105,4,44735.001280,2105.119795,hint,lora,180 +on6,0,0,29,1,0,2092,5220.000000,105,5,41283.001280,2253.215795,hint,lora,180 +on8,0,0,25,1,0,1432,4568.000000,105,2,30691.001280,1890.399795,hint,lora,180 +on10,0,0,30,1,0,2818,5400.000000,105,6,48688.001280,2216.527181,hint,lora,180 +on4,0,0,31,1,0,3678,5580.000000,105,7,66844.001280,2343.518976,hint,lora,180 +on12,0,0,30,1,0,2764,5490.000000,105,7,52747.001280,2342.431590,hint,lora,180 +on4,0,0,26,1,0,56,4680.000000,106,2,3982.602560,1919.952410,hint,lora,180 +on7,0,0,31,1,0,1376,5585.000000,106,10,35051.001280,2488.894566,hint,lora,180 +on12,0,0,25,1,0,473,4500.000000,106,1,10396.001280,1862.144205,hint,lora,180 +on8,0,0,25,1,0,776,4653.000000,106,2,15781.001280,1940.672205,hint,lora,180 +on6,0,0,26,1,0,1878,4680.000000,106,2,37238.001280,1951.263795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,106,0,-1.000000,2151.715891,hint,lora,180 +on3,0,0,30,1,0,2468,5400.000000,106,6,45511.001280,2283.119590,hint,lora,180 +on11,0,0,26,1,0,1321,4748.000000,106,3,29425.001280,2053.712205,hint,lora,180 +on1,0,0,24,1,0,559,4320.000000,106,0,13870.001280,1753.600410,hint,lora,180 +on2,0,0,26,1,0,878,4680.000000,106,2,19457.001280,1936.367181,hint,lora,180 +on9,0,0,32,1,0,2847,5849.000000,106,10,58415.001280,2553.117952,hint,lora,180 +on10,0,0,28,1,0,3283,5040.000000,106,4,66830.001280,2128.383590,hint,lora,180 +on5,0,0,26,1,0,1890,4680.000000,106,3,43157.002560,2007.904000,hint,lora,180 +on10,0,0,32,1,0,4103,5760.000000,107,8,77882.001280,2513.053747,hint,lora,180 +on4,0,0,25,1,0,3594,4593.000000,107,2,72592.001280,1929.135795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,107,0,-1.000000,2144.672614,hint,lora,180 +on9,0,0,29,1,0,4299,5220.000000,107,5,83526.000000,2181.678157,hint,lora,180 +on7,0,0,24,1,0,2694,4320.000000,107,0,55653.001280,1762.399590,hint,lora,180 +on6,0,0,26,1,0,2947,4680.000000,107,2,61983.001280,1948.223386,hint,lora,180 +on11,0,0,24,1,0,3174,4320.000000,107,0,67817.001280,1782.048000,hint,lora,180 +on5,0,0,24,1,0,363,4320.000000,107,0,8766.001280,1760.384410,hint,lora,180 +on3,0,0,27,1,0,3026,4860.000000,107,3,58477.001280,2003.151181,hint,lora,180 +on2,0,0,25,1,0,3880,4565.000000,107,2,82292.001280,1890.543590,hint,lora,180 +on8,0,0,24,1,0,2160,4320.000000,107,0,46046.001280,1753.600205,hint,lora,180 +on1,0,0,25,1,0,2620,4500.000000,107,1,52451.001280,1832.544000,hint,lora,180 +on12,0,0,29,1,0,3733,5329.000000,107,6,71606.001280,2233.151590,hint,lora,180 +on1,0,0,29,1,0,1032,5220.000000,108,5,20458.001280,2231.903795,hint,lora,180 +on11,0,0,33,1,0,2393,6195.000000,108,11,46060.001280,2713.837952,hint,lora,180 +on2,0,0,32,1,0,1906,5763.000000,108,9,33337.001280,2463.342976,hint,lora,180 +on9,0,0,29,1,0,1849,5220.000000,108,6,38102.001280,2231.246157,hint,lora,180 +on12,0,0,28,1,0,835,5040.000000,108,4,17885.001280,2133.184000,hint,lora,180 +on6,0,0,26,1,0,581,4680.000000,108,2,11197.001280,1955.360000,hint,lora,180 +on8,0,0,25,1,0,89,4500.000000,108,1,3782.001280,1844.640000,hint,lora,180 +on10,0,0,28,1,0,1081,5086.000000,108,5,24538.001280,2147.007795,hint,lora,180 +on5,0,0,29,1,0,2315,5289.000000,108,6,40670.001280,2210.222362,hint,lora,180 +on7,0,0,30,1,0,1733,5483.000000,108,7,29393.001280,2339.968000,hint,lora,180 +on4,0,0,26,1,0,432,4680.000000,108,2,9370.001280,1903.679590,hint,lora,180 +on3,0,0,28,1,0,1451,5040.000000,108,4,26867.001280,2091.823795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,108,0,-1.000000,2073.472205,hint,lora,180 +on10,0,0,26,1,0,652,4680.000000,109,2,9798.001280,1925.567590,hint,lora,180 +on5,0,0,26,1,0,746,4680.000000,109,2,13358.001280,1904.047795,hint,lora,180 +on7,0,0,27,1,0,778,4860.000000,109,4,14979.001280,2037.438976,hint,lora,180 +on6,0,0,31,1,0,2190,5743.000000,109,9,48646.001280,2544.926976,hint,lora,180 +on2,0,0,27,1,0,2039,4860.000000,109,3,37837.001280,1988.479386,hint,lora,180 +on8,0,0,25,1,0,772,4500.000000,109,2,20536.001280,1838.192000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,109,0,-1.000000,2151.714048,hint,lora,180 +on11,0,0,28,1,0,1186,5129.000000,109,5,22019.001280,2150.703386,hint,lora,180 +on3,0,0,25,1,0,2913,4500.000000,109,1,63127.001280,1881.600000,hint,lora,180 +on4,0,0,27,1,0,2556,4860.000000,109,4,52460.001280,2059.104000,hint,lora,180 +on9,0,0,28,1,0,1399,5040.000000,109,4,26504.001280,2187.342566,hint,lora,180 +on1,0,0,26,1,0,2033,4680.000000,109,2,42697.001280,1977.535590,hint,lora,180 +on12,0,0,26,1,0,1580,4680.000000,109,2,31930.001280,1903.583386,hint,lora,180 +on10,0,0,28,1,0,1896,5040.000000,110,4,36198.001280,2112.079590,hint,lora,180 +on1,0,0,26,1,0,1098,4680.000000,110,2,24353.001280,1943.088000,hint,lora,180 +on12,0,0,27,1,0,1589,4992.000000,110,4,26076.001280,2075.295590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,110,0,-1.000000,2198.592614,hint,lora,180 +on5,0,0,29,1,0,2509,5379.000000,110,6,52525.001280,2319.566157,hint,lora,180 +on8,0,0,33,1,0,3066,5940.000000,110,9,55895.001280,2529.918771,hint,lora,180 +on7,0,0,27,1,0,1785,5141.000000,110,5,31927.001280,2120.767590,hint,lora,180 +on3,0,0,24,1,0,747,4470.000000,110,1,17630.001280,1845.072000,hint,lora,180 +on6,0,0,37,1,0,3815,6660.000000,110,14,60094.001280,2825.950157,hint,lora,180 +on4,0,0,30,1,0,2331,5549.000000,110,8,42607.001280,2360.942157,hint,lora,180 +on2,0,0,29,1,0,2546,5220.000000,110,5,46132.001280,2177.599181,hint,lora,180 +on11,0,0,32,1,0,2712,5929.000000,110,9,50244.001280,2546.959795,hint,lora,180 +on9,0,0,27,1,0,1677,4860.000000,110,3,33525.001280,2033.759795,hint,lora,180 +on2,0,0,25,1,0,1507,4500.000000,111,1,30661.002560,1864.703795,hint,lora,180 +on8,0,0,28,1,0,2770,5040.000000,111,4,54615.001280,2134.015590,hint,lora,180 +on7,0,0,26,1,0,2587,4680.000000,111,2,50657.001280,1921.919795,hint,lora,180 +on4,0,0,26,1,0,3497,4680.000000,111,3,74987.001280,1992.959590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,111,0,-1.000000,2213.761024,hint,lora,180 +on6,0,0,25,1,0,2131,4500.000000,111,1,42667.001280,1828.592000,hint,lora,180 +on10,0,0,28,1,0,2423,5040.000000,111,4,47687.001280,2102.366976,hint,lora,180 +on9,0,0,32,1,0,3419,5760.000000,111,8,71360.001280,2541.149747,hint,lora,180 +on5,0,0,33,1,0,3329,6001.000000,111,12,67848.001280,2601.886566,hint,lora,180 +on11,0,0,24,1,0,905,4320.000000,111,0,18774.001280,1753.600205,hint,lora,180 +on3,0,0,28,1,0,2623,5123.000000,111,5,58984.001280,2228.478976,hint,lora,180 +on1,0,0,27,1,0,2469,4860.000000,111,3,44310.001280,2002.128205,hint,lora,180 +on12,0,0,24,1,0,1128,4320.000000,111,0,27786.001280,1783.583795,hint,lora,180 +on4,0,0,35,1,0,2462,6300.000000,112,11,48752.001280,2757.199181,hint,lora,180 +on5,0,0,33,1,0,2189,5940.000000,112,9,42985.001280,2651.983386,hint,lora,180 +on1,0,0,34,1,0,2844,6120.000000,112,10,53057.001280,2662.446362,hint,lora,180 +on11,0,0,27,1,0,1219,4860.000000,112,3,21878.001280,2031.680410,hint,lora,180 +on10,0,0,29,0,0,4486,5220.000000,112,5,-1.000000,2184.478566,hint,lora,180 +on6,0,0,35,1,0,3211,6349.000000,112,13,57409.001280,2686.205952,hint,lora,180 +on2,0,0,27,1,0,991,4860.000000,112,3,18932.001280,1994.767590,hint,lora,180 +on7,0,0,26,1,0,1444,4680.000000,112,2,32084.001280,1946.319795,hint,lora,180 +on12,0,0,24,1,0,1228,4557.000000,112,2,28589.001280,1878.480000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,112,0,-1.000000,2137.730662,hint,lora,180 +on8,0,0,33,1,0,2532,5940.000000,112,9,45262.001280,2538.734771,hint,lora,180 +on9,0,0,31,1,0,2342,5580.000000,112,7,39401.002560,2355.472000,hint,lora,180 +on3,0,0,27,1,0,1564,5017.000000,112,4,35635.001280,2165.983386,hint,lora,180 +on8,0,0,26,1,0,720,4856.000000,113,3,15737.001280,2050.287795,hint,lora,180 +on12,0,0,32,1,0,2501,5892.000000,113,9,38293.001280,2431.600000,hint,lora,180 +on11,0,0,32,1,0,2449,5760.000000,113,8,55034.001280,2547.309747,hint,lora,180 +on10,0,0,28,1,0,1386,5040.000000,113,4,30355.001280,2191.487386,hint,lora,180 +on3,0,0,29,1,0,1452,5220.000000,113,5,28297.001280,2149.855590,hint,lora,180 +on7,0,0,30,1,0,2485,5500.000000,113,7,40243.001280,2242.751386,hint,lora,180 +on5,0,0,28,1,0,1202,5040.000000,113,4,21931.001280,2075.263795,hint,lora,180 +on6,0,0,33,1,0,2734,5940.000000,113,9,44979.001280,2497.695795,hint,lora,180 +on1,0,0,26,1,0,1817,4784.000000,113,3,35560.001280,1946.127795,hint,lora,180 +on9,0,0,32,1,0,2604,5760.000000,113,8,48730.001280,2474.542362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,113,0,-1.000000,2213.792205,hint,lora,180 +on4,0,0,32,1,0,3341,5760.000000,113,8,60231.001280,2454.541747,hint,lora,180 +on2,0,0,35,1,0,3069,6300.000000,113,11,50926.001280,2676.574771,hint,lora,180 +on5,0,0,28,1,0,1125,5040.000000,114,4,20600.001280,2085.647590,hint,lora,180 +on11,0,0,30,1,0,1418,5400.000000,114,7,25360.001280,2262.047181,hint,lora,180 +on8,0,0,24,1,0,326,4404.000000,114,1,10117.001280,1823.503590,hint,lora,180 +on7,0,0,29,1,0,2122,5220.000000,114,5,35745.001280,2155.183386,hint,lora,180 +on3,0,0,28,1,0,2678,5040.000000,114,4,52938.001280,2114.527386,hint,lora,180 +on10,0,0,29,1,0,2079,5220.000000,114,5,39451.001280,2180.271181,hint,lora,180 +on9,0,0,31,1,0,2313,5580.000000,114,7,39778.001280,2333.150566,hint,lora,180 +on12,0,0,28,1,0,1494,5040.000000,114,4,24297.001280,2048.575795,hint,lora,180 +on6,0,0,26,1,0,674,4680.000000,114,2,17370.001280,1952.207795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,114,0,-1.000000,2142.433229,hint,lora,180 +on4,0,0,30,1,0,2491,5400.000000,114,8,47148.001280,2293.614771,hint,lora,180 +on1,0,0,28,1,0,1600,5040.000000,114,4,30668.001280,2088.639181,hint,lora,180 +on2,0,0,27,1,0,2287,4970.000000,114,4,44702.001280,2095.887590,hint,lora,180 +on2,0,0,27,1,0,1595,4860.000000,115,3,33581.001280,2045.919590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,115,0,-1.000000,2152.064205,hint,lora,180 +on12,0,0,30,1,0,3093,5473.000000,115,7,54674.001280,2282.957952,hint,lora,180 +on4,0,0,29,1,0,2736,5332.000000,115,6,49866.001280,2202.383181,hint,lora,180 +on9,0,0,25,1,0,856,4500.000000,115,1,15897.001280,1828.543795,hint,lora,180 +on8,0,0,25,1,0,927,4515.000000,115,2,20674.001280,1849.999795,hint,lora,180 +on1,0,0,27,1,0,2164,4860.000000,115,3,45456.001280,2037.982566,hint,lora,180 +on10,0,0,30,1,0,2074,5400.000000,115,6,36187.001280,2280.127386,hint,lora,180 +on7,0,0,27,1,0,2134,4860.000000,115,3,42434.001280,2039.839795,hint,lora,180 +on11,0,0,32,1,0,2699,5760.000000,115,8,52712.001280,2507.710157,hint,lora,180 +on6,0,0,25,1,0,1581,4555.000000,115,2,29096.001280,1850.640000,hint,lora,180 +on3,0,0,25,1,0,1205,4500.000000,115,1,28135.001280,1860.384000,hint,lora,180 +on5,0,0,28,1,0,2874,5040.000000,115,4,58157.001280,2160.926976,hint,lora,180 +on4,0,0,27,1,0,1437,4914.000000,116,4,33591.001280,2084.959590,hint,lora,180 +on9,0,0,27,1,0,1286,4860.000000,116,3,25148.001280,2008.367795,hint,lora,180 +on6,0,0,26,1,0,1929,4680.000000,116,2,45920.001280,1973.919386,hint,lora,180 +on3,0,0,28,1,0,1972,5040.000000,116,4,40931.001280,2135.727181,hint,lora,180 +on7,0,0,24,1,0,505,4468.000000,116,1,15693.001280,1885.536000,hint,lora,180 +on8,0,0,37,1,0,2936,6660.000000,116,14,48749.001280,2824.574157,hint,lora,180 +on1,0,0,26,1,0,1372,4680.000000,116,2,25395.001280,1903.583386,hint,lora,180 +on12,0,0,29,1,0,984,5220.000000,116,5,19976.001280,2228.799590,hint,lora,180 +on10,0,0,31,1,0,2556,5580.000000,116,8,53937.001280,2426.270976,hint,lora,180 +on2,0,0,29,1,0,1808,5293.000000,116,6,29178.001280,2185.599386,hint,lora,180 +on5,0,0,26,1,0,412,4680.000000,116,2,11022.001280,1936.719590,hint,lora,180 +on11,0,0,27,1,0,1916,4860.000000,116,3,37793.001280,2009.279181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,116,0,-1.000000,2153.344410,hint,lora,180 +on4,0,0,25,1,0,699,4500.000000,117,1,17115.001280,1857.024000,hint,lora,180 +on11,0,0,27,1,0,1439,4860.000000,117,3,26802.001280,2018.655386,hint,lora,180 +on10,0,0,27,1,0,1856,4914.000000,117,4,38074.001280,2081.008614,hint,lora,180 +on3,0,0,27,1,0,1474,4860.000000,117,3,29428.001280,2001.631795,hint,lora,180 +on8,0,0,25,1,0,992,4500.000000,117,1,23525.001280,1834.032000,hint,lora,180 +on12,0,0,28,1,0,2149,5279.000000,117,6,40507.001280,2205.870976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,117,0,-1.000000,2175.873229,hint,lora,180 +on5,0,0,25,1,0,1620,4601.000000,117,2,33319.001280,1962.959590,hint,lora,180 +on1,0,0,32,1,0,2875,5760.000000,117,8,47220.001280,2413.518362,hint,lora,180 +on2,0,0,33,1,0,3939,5940.000000,117,9,69783.001280,2506.382362,hint,lora,180 +on6,0,0,27,1,0,943,4860.000000,117,3,19435.001280,1991.200205,hint,lora,180 +on9,0,0,31,1,0,2489,5580.000000,117,7,43691.001280,2354.606566,hint,lora,180 +on7,0,0,31,1,0,2851,5580.000000,117,7,57499.001280,2374.894976,hint,lora,180 +on1,0,0,24,1,0,1030,4397.000000,118,1,22516.001280,1832.400410,hint,lora,180 +on6,0,0,30,1,0,2524,5400.000000,118,6,46547.001280,2293.327181,hint,lora,180 +on4,0,0,26,0,0,4489,4680.000000,118,2,-1.000000,1884.046771,hint,lora,180 +on9,0,0,26,1,0,993,4680.000000,118,3,20171.001280,1932.224205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,118,0,-1.000000,2194.498458,hint,lora,180 +on5,0,0,30,1,0,2170,5400.000000,118,6,38298.001280,2379.599590,hint,lora,180 +on8,0,0,28,1,0,2595,5040.000000,118,4,53713.001280,2108.398976,hint,lora,180 +on7,0,0,31,1,0,2970,5831.000000,118,10,58325.001280,2516.543590,hint,lora,180 +on10,0,0,27,1,0,2433,4860.000000,118,3,48434.001280,2010.191386,hint,lora,180 +on3,0,0,28,1,0,2728,5040.000000,118,4,56718.001280,2136.607181,hint,lora,180 +on11,0,0,26,1,0,728,4680.000000,118,2,17741.001280,1953.408205,hint,lora,180 +on12,0,0,28,1,0,1612,5040.000000,118,4,31272.001280,2079.807386,hint,lora,180 +on2,0,0,27,1,0,2104,4996.000000,118,4,41557.001280,2099.727795,hint,lora,180 +on7,0,0,28,1,0,1167,5040.000000,119,4,22513.001280,2090.847590,hint,lora,180 +on1,0,0,29,1,0,1858,5315.000000,119,7,38978.001280,2315.663795,hint,lora,180 +on5,0,0,25,1,0,1199,4500.000000,119,1,26415.001280,1833.040000,hint,lora,180 +on2,0,0,28,0,0,4321,5051.000000,119,5,-1.000000,2130.846976,hint,lora,180 +on9,0,0,25,1,0,1784,4719.000000,119,3,34435.001280,1963.935590,hint,lora,180 +on6,0,0,30,1,0,1707,5555.000000,119,8,31992.001280,2371.807386,hint,lora,180 +on3,0,0,29,1,0,2111,5220.000000,119,5,41738.001280,2213.103590,hint,lora,180 +on8,0,0,25,1,0,329,4500.000000,119,1,6155.001280,1859.040205,hint,lora,180 +on12,0,0,29,1,0,1149,5220.000000,119,5,20355.001280,2154.752614,hint,lora,180 +on4,0,0,32,1,0,2527,5936.000000,119,10,49621.001280,2601.661952,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,119,0,-1.000000,2159.393434,hint,lora,180 +on11,0,0,31,1,0,2563,5713.000000,119,8,45563.001280,2397.150157,hint,lora,180 +on10,0,0,30,1,0,2787,5400.000000,119,6,52807.001280,2259.278566,hint,lora,180 +on2,0,0,25,1,0,3630,4500.000000,120,2,76276.001280,1878.240000,hint,lora,180 +on5,0,0,24,0,0,3992,4431.000000,120,1,-1.000000,1826.208000,hint,lora,180 +on10,0,0,25,1,0,2173,4500.000000,120,1,48075.001280,1883.552000,hint,lora,180 +on7,0,0,25,1,0,1020,4500.000000,120,1,21954.001280,1862.400205,hint,lora,180 +on8,0,0,25,1,0,1257,4500.000000,120,1,26119.001280,1861.872410,hint,lora,180 +on1,0,0,26,1,0,1770,4680.000000,120,2,36313.001280,1994.112000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,120,0,-1.000000,2122.723686,hint,lora,180 +on4,0,0,28,1,0,1929,5040.000000,120,5,43640.001280,2224.367590,hint,lora,180 +on11,0,0,25,1,0,1444,4500.000000,120,2,31688.001280,1839.423795,hint,lora,180 +on9,0,0,25,1,0,3221,4500.000000,120,1,68318.001280,1849.728205,hint,lora,180 +on12,0,0,25,1,0,1554,4500.000000,120,1,35829.001280,1857.183795,hint,lora,180 +on6,0,0,26,1,0,2421,4680.000000,120,2,51830.001280,1952.863590,hint,lora,180 +on3,0,0,28,1,0,3463,5139.000000,120,6,72543.001280,2188.047795,hint,lora,180 +on10,0,0,30,1,0,2854,5400.000000,121,6,54820.001280,2362.255386,hint,lora,180 +on2,0,0,28,1,0,2778,5040.000000,121,4,52127.001280,2088.446566,hint,lora,180 +on7,0,0,30,1,0,3039,5400.000000,121,7,58984.001280,2316.527386,hint,lora,180 +on9,0,0,25,1,0,539,4500.000000,121,1,12843.001280,1861.920205,hint,lora,180 +on3,0,0,24,1,0,1748,4441.000000,121,1,39103.001280,1832.463795,hint,lora,180 +on4,0,0,25,1,0,3700,4500.000000,121,1,73644.001280,1844.128000,hint,lora,180 +on8,0,0,28,1,0,2544,5040.000000,121,4,47512.001280,2114.319181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,121,0,-1.000000,2155.298458,hint,lora,180 +on12,0,0,26,1,0,1937,4680.000000,121,2,43088.001280,1966.383795,hint,lora,180 +on6,0,0,25,1,0,2929,4500.000000,121,1,62377.001280,1867.615795,hint,lora,180 +on1,0,0,26,1,0,1423,4680.000000,121,3,34841.001280,2004.655386,hint,lora,180 +on5,0,0,29,1,0,2557,5220.000000,121,5,45739.001280,2179.151386,hint,lora,180 +on11,0,0,25,1,0,1168,4500.000000,121,1,28049.001280,1834.559795,hint,lora,180 +on1,0,0,29,1,0,2030,5319.000000,122,6,35542.001280,2203.774976,hint,lora,180 +on6,0,0,26,1,0,1098,4680.000000,122,2,22710.001280,1956.543590,hint,lora,180 +on5,0,0,31,1,0,2584,5758.000000,122,9,46282.001280,2400.302771,hint,lora,180 +on9,0,0,34,1,0,2837,6120.000000,122,11,49351.001280,2646.094157,hint,lora,180 +on11,0,0,25,1,0,512,4500.000000,122,1,11366.001280,1848.063590,hint,lora,180 +on10,0,0,25,1,0,1235,4500.000000,122,1,27529.001280,1838.303795,hint,lora,180 +on12,0,0,32,1,0,2287,5760.000000,122,8,39823.001280,2480.862157,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,122,0,-1.000000,2120.833434,hint,lora,180 +on3,0,0,25,1,0,73,4500.000000,122,1,4278.001280,1839.791795,hint,lora,180 +on4,0,0,24,1,0,898,4367.000000,122,1,20808.001280,1784.240205,hint,lora,180 +on8,0,0,28,1,0,1439,5040.000000,122,4,29203.001280,2105.647386,hint,lora,180 +on7,0,0,33,1,0,2231,5940.000000,122,9,37528.001280,2524.446362,hint,lora,180 +on2,0,0,26,1,0,814,4680.000000,122,2,15245.001280,1932.063590,hint,lora,180 +on12,0,0,28,1,0,3441,5040.000000,123,5,66556.001280,2079.839386,hint,lora,180 +on8,0,0,26,1,0,2837,4680.000000,123,2,59382.001280,1914.943795,hint,lora,180 +on4,0,0,24,0,0,4074,4320.000000,123,0,-1.000000,1779.360000,hint,lora,180 +on9,0,0,28,1,0,4088,5186.000000,123,5,81924.001280,2182.895795,hint,lora,180 +on11,0,0,25,0,0,3917,4500.000000,123,1,-1.000000,1889.375590,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,123,0,-1.000000,2185.312819,hint,lora,180 +on5,0,0,24,0,0,4159,4320.000000,123,0,-1.000000,1754.240000,hint,lora,180 +on3,0,0,24,1,0,370,4320.000000,123,0,8100.001280,1753.600410,hint,lora,180 +on1,0,0,26,1,0,3821,4694.000000,123,3,75271.001280,1914.462976,hint,lora,180 +on10,0,0,28,1,0,4148,5040.000000,123,4,85123.000000,2118.143181,hint,lora,180 +on2,0,0,28,1,0,4085,5040.000000,123,4,78887.001280,2073.390976,hint,lora,180 +on7,0,0,25,1,0,3538,4500.000000,123,1,70447.001280,1857.440000,hint,lora,180 +on6,0,0,27,1,0,2979,4860.000000,123,3,61970.001280,2089.584000,hint,lora,180 +on2,0,0,25,1,0,2789,4500.000000,124,1,55745.001280,1833.760410,hint,lora,180 +on12,0,0,24,1,0,1933,4320.000000,124,0,42101.001280,1791.680410,hint,lora,180 +on8,0,0,24,1,0,2160,4320.000000,124,0,44422.001280,1790.304000,hint,lora,180 +on1,0,0,26,1,0,3647,4680.000000,124,2,80259.001280,2007.152000,hint,lora,180 +on10,0,0,24,1,0,1036,4472.000000,124,1,23135.001280,1814.400205,hint,lora,180 +on11,0,0,24,0,0,4292,4320.000000,124,0,-1.000000,1732.640000,hint,lora,180 +on3,0,0,24,1,0,1129,4385.000000,124,2,26068.601280,1835.760205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,124,0,-1.000000,2098.243482,hint,lora,180 +on4,0,0,25,1,0,2507,4500.000000,124,1,50107.001280,1828.543795,hint,lora,180 +on7,0,0,28,1,0,2770,5040.000000,124,6,59634.001280,2181.071181,hint,lora,180 +on5,0,0,25,1,0,870,4500.000000,124,1,19536.001280,1858.896410,hint,lora,180 +on6,0,0,26,1,0,2727,4680.000000,124,2,52304.001280,1932.127590,hint,lora,180 +on9,0,0,24,1,0,3060,4320.000000,124,0,62008.001280,1753.600205,hint,lora,180 +on1,0,0,28,1,0,1204,5213.000000,125,5,21474.001280,2156.990976,hint,lora,180 +on2,0,0,26,1,0,744,4811.000000,125,3,15838.001280,2004.255386,hint,lora,180 +on4,0,0,27,1,0,1397,4979.000000,125,4,31660.001280,2134.592819,hint,lora,180 +on7,0,0,26,1,0,979,4889.000000,125,4,22553.001280,2058.207590,hint,lora,180 +on8,0,0,24,1,0,192,4320.000000,125,0,6596.001280,1754.623795,hint,lora,180 +on3,0,0,28,1,0,2001,5198.000000,125,5,35928.001280,2142.431181,hint,lora,180 +on9,0,0,31,1,0,2133,5580.000000,125,7,36797.001280,2360.878362,hint,lora,180 +on5,0,0,31,1,0,2562,5587.000000,125,9,46568.001280,2359.918157,hint,lora,180 +on10,0,0,26,1,0,360,4680.000000,125,2,8699.001280,1941.247795,hint,lora,180 +on11,0,0,26,1,0,480,4680.000000,125,2,11417.001280,1937.072000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,125,0,-1.000000,2095.392614,hint,lora,180 +on12,0,0,27,1,0,1315,4860.000000,125,3,27397.001280,2059.391181,hint,lora,180 +on6,0,0,29,1,0,2216,5220.000000,125,5,43016.001280,2200.126771,hint,lora,180 +on5,0,0,25,1,0,883,4500.000000,126,1,17665.001280,1857.280000,hint,lora,180 +on4,0,0,29,1,0,1807,5220.000000,126,5,31925.001280,2141.167386,hint,lora,180 +on6,0,0,26,1,0,1346,4680.000000,126,2,27969.001280,1938.782771,hint,lora,180 +on9,0,0,34,1,0,2724,6137.000000,126,12,47754.001280,2651.406566,hint,lora,180 +on7,0,0,26,1,0,1501,4680.000000,126,2,32887.001280,2015.695386,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,126,0,-1.000000,2088.036096,hint,lora,180 +on2,0,0,24,1,0,911,4320.000000,126,0,21075.001280,1803.104205,hint,lora,180 +on1,0,0,27,1,0,2026,5038.000000,126,4,39988.001280,2111.887386,hint,lora,180 +on11,0,0,28,1,0,2146,5040.000000,126,4,38934.001280,2095.471181,hint,lora,180 +on8,0,0,25,1,0,709,4500.000000,126,1,13697.001280,1828.848205,hint,lora,180 +on10,0,0,24,0,0,4319,4320.000000,126,0,-1.000000,1728.480000,hint,lora,180 +on12,0,0,27,1,0,2350,4860.000000,126,4,46098.001280,1986.815795,hint,lora,180 +on3,0,0,29,1,0,1218,5220.000000,126,5,24313.001280,2245.072000,hint,lora,180 +on6,0,0,25,1,0,485,4500.000000,127,1,11364.001280,1863.216000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,127,0,-1.000000,2140.034867,hint,lora,180 +on4,0,0,25,1,0,645,4500.000000,127,1,15287.001280,1831.631590,hint,lora,180 +on3,0,0,25,1,0,225,4500.000000,127,1,4536.001280,1891.423795,hint,lora,180 +on7,0,0,31,1,0,2111,5760.000000,127,10,46314.001280,2563.247590,hint,lora,180 +on10,0,0,25,1,0,1912,4500.000000,127,4,50234.001280,1919.456000,hint,lora,180 +on2,0,0,26,1,0,1632,4680.000000,127,2,33098.001280,1946.239795,hint,lora,180 +on5,0,0,29,1,0,1472,5220.000000,127,5,26366.001280,2211.631181,hint,lora,180 +on1,0,0,28,1,0,3660,5040.000000,127,4,71734.001280,2079.406976,hint,lora,180 +on8,0,0,26,1,0,826,4680.000000,127,2,19984.001280,1960.768000,hint,lora,180 +on9,0,0,31,1,0,1737,5622.000000,127,8,30505.001280,2389.727181,hint,lora,180 +on12,0,0,27,1,0,1942,4948.000000,127,4,42297.001280,2085.775590,hint,lora,180 +on11,0,0,27,1,0,1059,4860.000000,127,3,23125.001280,2034.928000,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,128,0,-1.000000,2094.754662,hint,lora,180 +on4,0,0,24,0,0,4223,4320.000000,128,1,-1.000000,1756.800000,hint,lora,180 +on1,0,0,29,1,0,2882,5309.000000,128,6,57286.001280,2231.582771,hint,lora,180 +on2,0,0,27,1,0,1822,4860.000000,128,3,35966.001280,2041.872205,hint,lora,180 +on8,0,0,26,1,0,1327,4680.000000,128,2,28286.001280,1907.408205,hint,lora,180 +on7,0,0,25,1,0,1160,4500.000000,128,1,24756.001280,1869.024410,hint,lora,180 +on6,0,0,26,1,0,1721,4680.000000,128,2,38494.001280,1954.927795,hint,lora,180 +on11,0,0,24,1,0,2129,4370.000000,128,1,43548.001280,1784.544000,hint,lora,180 +on5,0,0,25,1,0,3372,4500.000000,128,1,72307.001280,1903.408410,hint,lora,180 +on10,0,0,26,1,0,1481,4680.000000,128,2,29982.001280,1936.495181,hint,lora,180 +on3,0,0,30,1,0,2627,5400.000000,128,7,51012.001280,2305.471590,hint,lora,180 +on9,0,0,28,1,0,2398,5040.000000,128,4,48261.001280,2137.023386,hint,lora,180 +on12,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,hint,lora,180 +on11,0,0,29,1,0,3508,5220.000000,129,6,66449.001280,2183.919181,hint,lora,180 +on9,0,0,26,1,0,1196,4680.000000,129,2,22364.001280,1990.848205,hint,lora,180 +on1,0,0,26,1,0,1755,4680.000000,129,2,37555.001280,1952.111590,hint,lora,180 +on7,0,0,28,0,0,4659,5040.000000,129,4,-1.000000,2089.279386,hint,lora,180 +on10,0,0,24,1,0,736,4320.000000,129,0,17617.001280,1782.367795,hint,lora,180 +on6,0,0,26,1,0,1457,4680.000000,129,2,28446.001280,1903.887795,hint,lora,180 +on8,0,0,28,1,0,1830,5040.000000,129,4,34237.001280,2083.407795,hint,lora,180 +on2,0,0,28,0,0,4223,5101.000000,129,5,-1.000000,2167.519590,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,129,0,-1.000000,2087.107072,hint,lora,180 +on4,0,0,29,1,0,1980,5292.000000,129,6,41952.001280,2306.480205,hint,lora,180 +on12,0,0,26,1,0,1015,4680.000000,129,2,20002.001280,1954.048000,hint,lora,180 +on5,0,0,25,1,0,1204,4520.000000,129,2,31252.001280,1954.575181,hint,lora,180 +on3,0,0,24,1,0,540,4320.000000,129,0,11622.001280,1849.984410,hint,lora,180 +on2,0,0,28,1,0,778,5040.000000,130,4,19761.001280,2161.806976,hint,lora,180 +on8,0,0,24,1,0,575,4389.000000,130,1,12030.001280,1784.192000,hint,lora,180 +on12,0,0,28,1,0,1105,5040.000000,130,4,22051.001280,2152.592000,hint,lora,180 +on10,0,0,35,1,0,2873,6300.000000,130,12,50876.001280,2736.750566,hint,lora,180 +on4,0,0,25,1,0,1490,4517.000000,130,2,32353.001280,1835.280000,hint,lora,180 +on3,0,0,34,1,0,2472,6120.000000,130,10,42749.001280,2651.294157,hint,lora,180 +on7,0,0,27,1,0,1636,4860.000000,130,3,35826.001280,2032.047590,hint,lora,180 +on1,0,0,26,1,0,1159,4680.000000,130,2,27284.001280,1961.423181,hint,lora,180 +on5,0,0,33,1,0,2598,5940.000000,130,10,44779.001280,2537.917952,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,130,0,-1.000000,2127.809024,hint,lora,180 +on11,0,0,32,1,0,2684,5760.000000,130,8,47971.001280,2428.637747,hint,lora,180 +on6,0,0,25,1,0,292,4500.000000,130,1,8605.001280,1857.120000,hint,lora,180 +on9,0,0,29,1,0,1887,5321.000000,130,6,37495.001280,2282.271181,hint,lora,180 +on1,0,0,28,1,0,2672,5144.000000,131,5,51483.001280,2166.719386,hint,lora,180 +on6,0,0,25,1,0,2629,4500.000000,131,1,56188.001280,1858.720410,hint,lora,180 +on9,0,0,26,1,0,1965,4680.000000,131,2,40814.001280,1914.111795,hint,lora,180 +on3,0,0,25,1,0,508,4500.000000,131,1,13023.001280,1857.120000,hint,lora,180 +on5,0,0,27,1,0,1685,4860.000000,131,3,36717.001280,2037.487386,hint,lora,180 +on4,0,0,28,1,0,1073,5040.000000,131,4,20477.001280,2128.863181,hint,lora,180 +on10,0,0,32,1,0,1761,5760.000000,131,9,32843.001280,2500.286566,hint,lora,180 +on8,0,0,25,1,0,31,4500.000000,131,1,4653.001280,1906.064819,hint,lora,180 +on12,0,0,24,1,0,392,4479.000000,131,1,8672.001280,1820.143795,hint,lora,180 +on11,0,0,27,1,0,1459,4860.000000,131,3,26806.001280,2004.431590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,131,0,-1.000000,2082.338867,hint,lora,180 +on7,0,0,27,1,0,1147,4860.000000,131,4,24544.001280,2027.311181,hint,lora,180 +on2,0,0,24,1,0,667,4364.000000,131,1,14813.001280,1787.040000,hint,lora,180 +on10,0,0,25,1,0,327,4500.000000,132,1,10187.001280,1876.959181,hint,lora,180 +on9,0,0,30,1,0,1524,5400.000000,132,6,35660.001280,2355.120410,hint,lora,180 +on5,0,0,31,1,0,2134,5580.000000,132,7,30985.001280,2294.175590,hint,lora,180 +on11,0,0,28,1,0,2257,5118.000000,132,5,37140.001280,2125.982976,hint,lora,180 +on6,0,0,26,1,0,884,4680.000000,132,2,20947.001280,2001.839795,hint,lora,180 +on7,0,0,26,1,0,663,4824.000000,132,3,12000.001280,1990.655181,hint,lora,180 +on12,0,0,32,1,0,2424,5760.000000,132,8,40106.001280,2441.838362,hint,lora,180 +on8,0,0,25,1,0,77,4500.000000,132,1,4503.001280,1895.120205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,132,0,-1.000000,2111.555277,hint,lora,180 +on2,0,0,29,0,0,4484,5220.000000,132,5,-1.000000,2180.174976,hint,lora,180 +on3,0,0,27,1,0,930,4860.000000,132,3,16187.001280,2003.215590,hint,lora,180 +on4,0,0,35,1,0,2788,6300.000000,132,11,44841.001280,2681.742362,hint,lora,180 +on1,0,0,30,1,0,1151,5400.000000,132,6,22872.001280,2350.416205,hint,lora,180 +on1,0,0,27,1,0,1987,4871.000000,133,4,41740.001280,2014.687181,hint,lora,180 +on8,0,0,26,1,0,1423,4680.000000,133,2,27900.001280,1934.624205,hint,lora,180 +on2,0,0,25,1,0,526,4500.000000,133,1,14872.001280,1888.224000,hint,lora,180 +on5,0,0,29,1,0,2013,5220.000000,133,5,36827.001280,2226.607590,hint,lora,180 +on10,0,0,34,1,0,3416,6314.000000,133,12,74146.001280,2809.293542,hint,lora,180 +on7,0,0,32,1,0,2093,5760.000000,133,8,33209.001280,2428.494976,hint,lora,180 +on11,0,0,30,1,0,2308,5464.000000,133,7,45662.002560,2338.223386,hint,lora,180 +on4,0,0,26,1,0,1107,4680.000000,133,2,24275.001280,1903.679590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,133,0,-1.000000,2219.971072,hint,lora,180 +on9,0,0,25,1,0,783,4500.000000,133,1,18490.001280,1847.423795,hint,lora,180 +on3,0,0,30,1,0,2807,5400.000000,133,6,60226.001280,2334.335590,hint,lora,180 +on6,0,0,33,1,0,2713,5940.000000,133,10,49777.001280,2530.399590,hint,lora,180 +on12,0,0,27,1,0,584,4860.000000,133,3,11119.001280,1993.968000,hint,lora,180 +on8,0,0,31,1,0,2724,5717.000000,134,8,47661.001280,2420.750771,hint,lora,180 +on2,0,0,30,1,0,2230,5400.000000,134,6,40583.001280,2242.206976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,134,0,-1.000000,2117.537434,hint,lora,180 +on11,0,0,28,1,0,2228,5040.000000,134,4,43923.001280,2092.527590,hint,lora,180 +on1,0,0,26,1,0,1644,4680.000000,134,3,36367.001280,1955.807590,hint,lora,180 +on12,0,0,25,1,0,766,4500.000000,134,1,17215.001280,1828.543795,hint,lora,180 +on9,0,0,24,1,0,361,4320.000000,134,0,9421.001280,1776.800000,hint,lora,180 +on6,0,0,24,1,0,1399,4356.000000,134,1,31534.001280,1782.624000,hint,lora,180 +on7,0,0,31,1,0,2455,5580.000000,134,8,51558.001280,2456.318362,hint,lora,180 +on5,0,0,29,1,0,2949,5220.000000,134,5,54201.001280,2173.710362,hint,lora,180 +on10,0,0,25,1,0,1126,4500.000000,134,1,24000.001280,1849.072000,hint,lora,180 +on4,0,0,25,1,0,1665,4529.000000,134,2,32767.001280,1871.759590,hint,lora,180 +on3,0,0,26,1,0,906,4680.000000,134,2,18585.001280,1940.815795,hint,lora,180 +on9,0,0,28,1,0,2572,5040.000000,135,4,47318.001280,2060.527590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,135,0,-1.000000,2168.032819,hint,lora,180 +on4,0,0,25,1,0,1446,4500.000000,135,1,37142.001280,1896.223795,hint,lora,180 +on6,0,0,27,1,0,2031,4860.000000,135,3,39803.001280,2025.568000,hint,lora,180 +on12,0,0,25,1,0,1514,4500.000000,135,1,32678.001280,1867.456000,hint,lora,180 +on8,0,0,29,1,0,3107,5220.000000,135,5,59236.001280,2195.694976,hint,lora,180 +on7,0,0,31,1,0,2982,5580.000000,135,7,54469.001280,2366.639386,hint,lora,180 +on3,0,0,26,1,0,2848,4680.000000,135,2,63366.001280,1972.063590,hint,lora,180 +on5,0,0,32,1,0,4074,5760.000000,135,9,71643.001280,2439.422362,hint,lora,180 +on1,0,0,33,1,0,3790,5940.000000,135,9,65839.001280,2527.422771,hint,lora,180 +on2,0,0,29,1,0,3754,5220.000000,135,5,75185.001280,2243.887181,hint,lora,180 +on10,0,0,26,1,0,2387,4680.000000,135,2,51868.001280,1929.439590,hint,lora,180 +on11,0,0,26,1,0,2099,4680.000000,135,2,45825.001280,1957.824000,hint,lora,180 +on8,0,0,24,1,0,366,4320.000000,136,0,8387.001280,1753.600410,hint,lora,180 +on3,0,0,29,1,0,1787,5251.000000,136,6,34279.001280,2241.983795,hint,lora,180 +on11,0,0,31,1,0,2572,5580.000000,136,8,44470.001280,2362.446771,hint,lora,180 +on2,0,0,26,0,0,4307,4680.000000,136,2,-1.000000,1920.479590,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,136,0,-1.000000,2077.027482,hint,lora,180 +on10,0,0,27,1,0,1470,4980.000000,136,4,26756.001280,2079.135795,hint,lora,180 +on6,0,0,24,1,0,915,4320.000000,136,0,20977.001280,1782.112205,hint,lora,180 +on12,0,0,28,1,0,2135,5071.000000,136,6,41280.001280,2116.991386,hint,lora,180 +on1,0,0,25,1,0,512,4500.000000,136,2,12713.001280,1856.288000,hint,lora,180 +on5,0,0,29,1,0,2105,5309.000000,136,6,36830.001280,2255.087386,hint,lora,180 +on9,0,0,28,1,0,1638,5040.000000,136,4,29306.001280,2089.919590,hint,lora,180 +on7,0,0,28,0,0,4564,5040.000000,136,4,-1.000000,2056.559181,hint,lora,180 +on4,0,0,26,1,0,1167,4680.000000,136,2,24375.001280,1954.384000,hint,lora,180 +on12,0,0,25,1,0,587,4577.000000,137,4,16624.001280,1900.608205,hint,lora,180 +on1,0,0,32,1,0,2709,5760.000000,137,9,45033.001280,2453.406362,hint,lora,180 +on6,0,0,28,1,0,1240,5040.000000,137,4,26221.001280,2133.535181,hint,lora,180 +on7,0,0,25,1,0,208,4500.000000,137,1,7377.001280,1860.864410,hint,lora,180 +on5,0,0,25,1,0,473,4500.000000,137,1,13292.001280,1877.472000,hint,lora,180 +on11,0,0,25,1,0,638,4533.000000,137,2,18365.001280,1880.336410,hint,lora,180 +on10,0,0,30,1,0,1888,5400.000000,137,6,39545.001280,2307.918566,hint,lora,180 +on2,0,0,31,1,0,2207,5580.000000,137,7,35237.001280,2304.862976,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,137,0,-1.000000,2068.131072,hint,lora,180 +on9,0,0,30,1,0,1960,5400.000000,137,6,29149.001280,2234.863795,hint,lora,180 +on8,0,0,28,0,0,4679,5040.000000,137,4,-1.000000,2057.006771,hint,lora,180 +on4,0,0,25,1,0,895,4594.000000,137,2,22391.001280,1917.824205,hint,lora,180 +on3,0,0,30,1,0,2337,5400.000000,137,6,40488.001280,2298.431590,hint,lora,180 +on9,0,0,25,1,0,2998,4500.000000,138,1,59929.001280,1828.543795,hint,lora,180 +on6,0,0,24,0,0,4245,4320.000000,138,0,-1.000000,1740.160000,hint,lora,180 +on3,0,0,24,0,0,3959,4320.000000,138,0,-1.000000,1795.680000,hint,lora,180 +on11,0,0,25,1,0,3651,4500.000000,138,1,75555.001280,1857.440000,hint,lora,180 +on4,0,0,24,1,0,2705,4476.000000,138,1,56156.001280,1859.376205,hint,lora,180 +on10,0,0,25,1,0,3806,4587.000000,138,2,77470.001280,1916.143386,hint,lora,180 +on2,0,0,29,1,0,4109,5220.000000,138,6,80586.001280,2200.686976,hint,lora,180 +on5,0,0,25,1,0,2904,4500.000000,138,1,63506.001280,1879.040000,hint,lora,180 +on1,0,0,24,0,0,4129,4320.000000,138,0,-1.000000,1785.600000,hint,lora,180 +on7,0,0,26,1,0,3219,4680.000000,138,2,69904.001280,1977.407795,hint,lora,180 +on12,0,0,30,0,0,4563,5400.000000,138,6,-1.000000,2276.046157,hint,lora,180 +on8,0,0,25,1,0,4115,4500.000000,138,1,86210.000000,1864.639795,hint,lora,180 +on0,1,8,24,0,0,0,4320.000000,138,0,-1.000000,2159.776614,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,139,0,-1.000000,2108.162458,hint,lora,180 +on5,0,0,27,1,0,1195,4860.000000,139,5,24040.001280,2015.455795,hint,lora,180 +on10,0,0,25,1,0,2087,4584.000000,139,3,49008.001280,1952.302771,hint,lora,180 +on8,0,0,25,1,0,2448,4500.000000,139,1,51687.001280,1887.791181,hint,lora,180 +on9,0,0,26,1,0,714,4680.000000,139,2,16533.001280,1947.087590,hint,lora,180 +on6,0,0,25,1,0,180,4500.000000,139,2,4062.602560,1843.695795,hint,lora,180 +on11,0,0,25,1,0,1241,4500.000000,139,1,26103.001280,1862.559590,hint,lora,180 +on12,0,0,24,1,0,2154,4320.000000,139,1,45063.001280,1783.903795,hint,lora,180 +on1,0,0,25,1,0,660,4500.000000,139,1,14180.001280,1838.240000,hint,lora,180 +on3,0,0,26,1,0,1652,4680.000000,139,3,35816.001280,1948.767590,hint,lora,180 +on4,0,0,27,1,0,871,5026.000000,139,4,20433.001280,2121.551795,hint,lora,180 +on2,0,0,24,1,0,4,4320.000000,139,0,3506.001280,1799.424000,hint,lora,180 +on7,0,0,25,1,0,1300,4500.000000,139,1,29033.001280,1919.424000,hint,lora,180 +on10,0,0,31,1,0,2962,5580.000000,140,8,59205.001280,2393.663386,hint,lora,180 +on8,0,0,26,1,0,1991,4680.000000,140,2,41518.001280,1954.111181,hint,lora,180 +on3,0,0,24,1,0,720,4320.000000,140,0,15661.001280,1783.200205,hint,lora,180 +on11,0,0,26,1,0,2396,4680.000000,140,2,47074.001280,1926.240205,hint,lora,180 +on7,0,0,24,1,0,1440,4320.000000,140,0,30369.001280,1756.543795,hint,lora,180 +on2,0,0,24,0,0,4256,4320.000000,140,0,-1.000000,1761.120000,hint,lora,180 +on12,0,0,24,1,0,1087,4320.000000,140,0,24996.001280,1754.080205,hint,lora,180 +on5,0,0,25,0,0,4151,4500.000000,140,1,-1.000000,1856.063386,hint,lora,180 +on6,0,0,26,1,0,1603,4680.000000,140,2,34145.602560,1947.967590,hint,lora,180 +on1,0,0,24,1,0,2726,4481.000000,140,1,56598.001280,1823.023795,hint,lora,180 +on9,0,0,28,1,0,3144,5040.000000,140,5,64542.001280,2144.191590,hint,lora,180 +on4,0,0,25,1,0,1656,4500.000000,140,1,36991.001280,1848.815590,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,140,0,-1.000000,2055.426458,hint,lora,180 +on5,0,0,27,1,0,1957,4860.000000,141,4,36840.001280,2001.936205,hint,lora,180 +on11,0,0,28,1,0,3440,5040.000000,141,4,73735.001280,2160.383181,hint,lora,180 +on10,0,0,29,1,0,3590,5395.000000,141,6,77491.001280,2356.255181,hint,lora,180 +on2,0,0,24,0,0,4191,4320.000000,141,0,-1.000000,1774.400000,hint,lora,180 +on6,0,0,24,1,0,1273,4320.000000,141,0,25761.001280,1772.320205,hint,lora,180 +on4,0,0,25,1,0,2606,4500.000000,141,1,54331.001280,1862.032410,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,141,0,-1.000000,2095.587072,hint,lora,180 +on1,0,0,25,1,0,1363,4563.000000,141,3,30473.001280,1895.600205,hint,lora,180 +on9,0,0,26,1,0,2773,4680.000000,141,3,58861.001280,1964.127590,hint,lora,180 +on7,0,0,26,1,0,3153,4680.000000,141,2,62561.001280,1927.583590,hint,lora,180 +on12,0,0,24,0,0,4295,4320.000000,141,0,-1.000000,1732.160000,hint,lora,180 +on8,0,0,25,1,0,1897,4500.000000,141,1,42167.001280,1846.400410,hint,lora,180 +on3,0,0,24,0,0,4247,4320.000000,141,0,-1.000000,1739.840000,hint,lora,180 +on8,0,0,27,1,0,2854,4860.000000,142,3,53634.001280,2007.839181,hint,lora,180 +on2,0,0,28,1,0,1365,5040.000000,142,4,22127.001280,2053.487386,hint,lora,180 +on9,0,0,28,1,0,1187,5040.000000,142,5,21540.001280,2111.103386,hint,lora,180 +on3,0,0,26,1,0,295,4680.000000,142,3,8385.002560,1967.807795,hint,lora,180 +on5,0,0,29,1,0,2069,5220.000000,142,6,38390.001280,2202.335386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,142,0,-1.000000,2076.930253,hint,lora,180 +on4,0,0,30,1,0,1607,5400.000000,142,6,29641.001280,2329.391386,hint,lora,180 +on7,0,0,26,1,0,762,4680.000000,142,2,15758.001280,1907.935795,hint,lora,180 +on10,0,0,25,1,0,150,4500.000000,142,1,6402.001280,1873.664205,hint,lora,180 +on1,0,0,27,1,0,1736,4860.000000,142,3,40013.001280,2129.326976,hint,lora,180 +on11,0,0,28,1,0,1551,5198.000000,142,5,28229.001280,2146.575795,hint,lora,180 +on6,0,0,31,1,0,2133,5580.000000,142,7,34969.001280,2352.911181,hint,lora,180 +on12,0,0,24,1,0,536,4462.000000,142,1,14083.001280,1836.000000,hint,lora,180 +on12,0,0,25,1,0,657,4500.000000,143,2,15179.001280,1867.263795,hint,lora,180 +on10,0,0,29,1,0,2129,5220.000000,143,5,43670.001280,2254.894771,hint,lora,180 +on6,0,0,27,1,0,1185,4860.000000,143,3,24265.001280,2007.632000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,143,0,-1.000000,2131.041843,hint,lora,180 +on2,0,0,25,1,0,439,4500.000000,143,2,11635.001280,1897.952000,hint,lora,180 +on7,0,0,29,1,0,1622,5338.000000,143,6,32720.001280,2273.839181,hint,lora,180 +on1,0,0,28,1,0,2437,5040.000000,143,5,51076.001280,2129.982976,hint,lora,180 +on5,0,0,31,1,0,3058,5725.000000,143,8,54984.001280,2482.334157,hint,lora,180 +on4,0,0,28,1,0,2356,5040.000000,143,4,47753.001280,2138.127590,hint,lora,180 +on3,0,0,24,1,0,292,4320.000000,143,0,7748.001280,1782.400410,hint,lora,180 +on9,0,0,26,1,0,1813,4680.000000,143,2,41488.001280,1978.655386,hint,lora,180 +on11,0,0,26,1,0,1106,4680.000000,143,2,26522.001280,2007.935386,hint,lora,180 +on8,0,0,26,1,0,1552,4680.000000,143,2,30820.001280,1903.583590,hint,lora,180 +on4,0,0,24,1,0,1097,4422.000000,144,1,28177.001280,1837.888000,hint,lora,180 +on11,0,0,33,1,0,3944,5940.000000,144,9,68630.001280,2519.549747,hint,lora,180 +on6,0,0,31,1,0,2927,5749.000000,144,9,62951.001280,2512.174976,hint,lora,180 +on5,0,0,27,1,0,1701,4871.000000,144,4,37610.001280,2072.463590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,144,0,-1.000000,2196.160819,hint,lora,180 +on2,0,0,29,1,0,2851,5223.000000,144,6,59995.001280,2248.575181,hint,lora,180 +on3,0,0,31,1,0,2226,5580.000000,144,8,45621.001280,2425.071386,hint,lora,180 +on9,0,0,28,1,0,1680,5040.000000,144,4,33216.001280,2122.767590,hint,lora,180 +on1,0,0,29,1,0,2062,5220.000000,144,5,40236.001280,2194.591795,hint,lora,180 +on8,0,0,29,1,0,2648,5357.000000,144,7,53071.001280,2283.758362,hint,lora,180 +on7,0,0,29,1,0,2534,5357.000000,144,6,49891.001280,2254.271795,hint,lora,180 +on10,0,0,33,1,0,3635,6267.000000,144,14,67331.001280,2700.990566,hint,lora,180 +on12,0,0,32,1,0,2809,5764.000000,144,9,55326.001280,2491.854362,hint,lora,180 +on3,0,0,32,1,0,2587,5760.000000,145,9,53891.001280,2505.071181,hint,lora,180 +on2,0,0,29,0,0,4096,5220.000000,145,5,-1.000000,2245.807181,hint,lora,180 +on7,0,0,30,0,0,4855,5400.000000,145,6,-1.000000,2203.566566,hint,lora,180 +on11,0,0,29,1,0,2109,5237.000000,145,6,49061.001280,2324.191590,hint,lora,180 +on8,0,0,26,1,0,1163,4717.000000,145,3,26211.001280,1960.288000,hint,lora,180 +on9,0,0,25,1,0,1373,4500.000000,145,1,31809.001280,1828.640000,hint,lora,180 +on4,0,0,31,1,0,3357,5646.000000,145,10,66298.001280,2429.695590,hint,lora,180 +on10,0,0,26,1,0,1957,4680.000000,145,2,39499.001280,1919.215590,hint,lora,180 +on12,0,0,31,1,0,3292,5612.000000,145,10,63037.001280,2370.655181,hint,lora,180 +on6,0,0,29,1,0,1759,5220.000000,145,5,33302.001280,2158.671386,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,145,0,-1.000000,2222.945229,hint,lora,180 +on5,0,0,29,1,0,2095,5220.000000,145,5,39982.001280,2213.999386,hint,lora,180 +on1,0,0,33,0,0,4867,5940.000000,145,9,-1.000000,2476.078566,hint,lora,180 +on10,0,0,29,1,0,1818,5220.000000,146,6,30534.001280,2185.775181,hint,lora,180 +on1,0,0,33,1,0,2462,5940.000000,146,11,39810.001280,2509.182566,hint,lora,180 +on6,0,0,34,1,0,2477,6120.000000,146,10,39000.001280,2562.989952,hint,lora,180 +on11,0,0,24,1,0,165,4404.000000,146,1,4661.001280,1818.624000,hint,lora,180 +on9,0,0,24,1,0,0,4320.000000,146,0,1523.001280,1756.640000,hint,lora,180 +on7,0,0,26,1,0,928,4680.000000,146,2,18356.001280,1912.431795,hint,lora,180 +on12,0,0,26,1,0,574,4680.000000,146,2,11688.001280,1903.263795,hint,lora,180 +on2,0,0,29,1,0,1150,5220.000000,146,5,22380.001280,2214.351181,hint,lora,180 +on5,0,0,32,1,0,2191,5760.000000,146,8,33414.001280,2434.046362,hint,lora,180 +on4,0,0,29,1,0,1669,5220.000000,146,5,25487.001280,2189.967590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,146,0,-1.000000,2058.242253,hint,lora,180 +on3,0,0,25,1,0,218,4500.000000,146,1,8917.001280,1847.520205,hint,lora,180 +on8,0,0,25,1,0,690,4510.000000,146,2,17621.001280,1852.527590,hint,lora,180 +on8,0,0,28,1,0,3215,5040.000000,147,5,65345.001280,2121.295386,hint,lora,180 +on5,0,0,31,1,0,2694,5580.000000,147,7,51713.001280,2400.334976,hint,lora,180 +on6,0,0,34,1,0,3590,6185.000000,147,11,62834.001280,2633.630976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,147,0,-1.000000,2232.640614,hint,lora,180 +on12,0,0,26,1,0,1592,4680.000000,147,2,33668.001280,1959.231795,hint,lora,180 +on11,0,0,27,1,0,1349,4860.000000,147,3,26799.001280,1996.063795,hint,lora,180 +on4,0,0,26,1,0,973,4680.000000,147,2,22517.001280,1985.823590,hint,lora,180 +on9,0,0,31,1,0,3145,5580.000000,147,8,59294.001280,2353.694362,hint,lora,180 +on1,0,0,27,1,0,1506,4860.000000,147,3,32225.001280,2009.823386,hint,lora,180 +on7,0,0,28,1,0,2415,5040.000000,147,4,47829.001280,2104.767386,hint,lora,180 +on10,0,0,28,1,0,2373,5188.000000,147,5,44625.001280,2182.895590,hint,lora,180 +on2,0,0,29,1,0,2141,5287.000000,147,6,36660.001280,2175.999386,hint,lora,180 +on3,0,0,30,1,0,3236,5421.000000,147,8,71350.001280,2404.638362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,148,0,-1.000000,2121.475277,hint,lora,180 +on7,0,0,25,1,0,1326,4500.000000,148,2,30835.602560,1872.272614,hint,lora,180 +on2,0,0,27,1,0,2678,4860.000000,148,3,54779.001280,2021.343386,hint,lora,180 +on11,0,0,26,1,0,2135,4680.000000,148,3,45167.001280,1941.984000,hint,lora,180 +on1,0,0,27,1,0,1374,4860.000000,148,3,24601.001280,2001.328205,hint,lora,180 +on5,0,0,27,1,0,2340,4860.000000,148,4,48958.001280,2066.175181,hint,lora,180 +on3,0,0,25,1,0,878,4500.000000,148,1,15932.001280,1830.735795,hint,lora,180 +on4,0,0,25,1,0,1755,4500.000000,148,1,38860.001280,1853.984205,hint,lora,180 +on12,0,0,24,1,0,1856,4412.000000,148,2,43162.001280,1843.360000,hint,lora,180 +on8,0,0,27,1,0,2749,4860.000000,148,4,59120.001280,2085.647181,hint,lora,180 +on9,0,0,25,1,0,2341,4555.000000,148,3,52158.001280,1900.928000,hint,lora,180 +on6,0,0,24,1,0,1627,4320.000000,148,0,34317.001280,1784.320000,hint,lora,180 +on10,0,0,27,1,0,1552,4860.000000,148,4,27311.001280,1973.440000,hint,lora,180 +on7,0,0,28,1,0,2777,5054.000000,149,6,52887.001280,2083.295590,hint,lora,180 +on6,0,0,32,1,0,4037,5760.000000,149,8,78151.001280,2473.983590,hint,lora,180 +on9,0,0,25,1,0,2119,4500.000000,149,1,43402.001280,1857.280000,hint,lora,180 +on5,0,0,26,0,0,4253,4680.000000,149,2,-1.000000,1948.607386,hint,lora,180 +on1,0,0,28,1,0,2801,5040.000000,149,4,55619.001280,2090.031590,hint,lora,180 +on11,0,0,26,1,0,2016,4680.000000,149,2,40299.001280,1954.528205,hint,lora,180 +on4,0,0,26,1,0,2770,4680.000000,149,2,57770.001280,1974.623795,hint,lora,180 +on3,0,0,26,1,0,2367,4680.000000,149,2,47055.001280,1932.207590,hint,lora,180 +on10,0,0,28,1,0,4238,5040.000000,149,5,81960.001280,2135.359386,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,149,0,-1.000000,2115.745229,hint,lora,180 +on12,0,0,27,1,0,3468,4860.000000,149,3,66651.001280,2004.207386,hint,lora,180 +on2,0,0,31,0,0,4273,5709.000000,149,8,-1.000000,2463.006362,hint,lora,180 +on8,0,0,27,1,0,3205,4875.000000,149,4,63705.001280,2000.767590,hint,lora,180 +on8,0,0,27,1,0,2507,4860.000000,150,3,46568.001280,2031.392000,hint,lora,180 +on4,0,0,27,0,0,4500,4860.000000,150,4,-1.000000,1972.479181,hint,lora,180 +on11,0,0,26,0,0,4121,4680.000000,150,2,-1.000000,1950.207181,hint,lora,180 +on2,0,0,25,1,0,940,4500.000000,150,1,21009.002560,1890.944000,hint,lora,180 +on9,0,0,25,1,0,1658,4500.000000,150,1,35050.001280,1954.192410,hint,lora,180 +on1,0,0,25,1,0,1520,4500.000000,150,1,30889.001280,1839.583795,hint,lora,180 +on3,0,0,25,1,0,1070,4566.000000,150,2,24918.001280,1968.480000,hint,lora,180 +on12,0,0,29,1,0,2151,5368.000000,150,6,39005.001280,2281.870771,hint,lora,180 +on5,0,0,28,1,0,2501,5091.000000,150,5,49050.001280,2185.215181,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,150,0,-1.000000,2098.531277,hint,lora,180 +on10,0,0,24,1,0,736,4320.000000,150,0,14943.001280,1827.968614,hint,lora,180 +on6,0,0,32,1,0,3192,5760.000000,150,10,60340.001280,2433.231181,hint,lora,180 +on7,0,0,27,1,0,2084,4906.000000,150,4,42492.001280,2051.967590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,151,0,-1.000000,2088.515277,hint,lora,180 +on8,0,0,25,1,0,222,4500.000000,151,1,8723.001280,1896.064614,hint,lora,180 +on7,0,0,24,1,0,540,4320.000000,151,0,13743.001280,1753.600205,hint,lora,180 +on10,0,0,26,0,0,4283,4680.000000,151,2,-1.000000,1928.798771,hint,lora,180 +on12,0,0,28,1,0,1833,5217.000000,151,5,38331.001280,2242.400000,hint,lora,180 +on4,0,0,25,1,0,1543,4500.000000,151,1,31870.002560,1903.904000,hint,lora,180 +on2,0,0,25,1,0,1013,4500.000000,151,1,23155.001280,1862.624205,hint,lora,180 +on9,0,0,26,1,0,2170,4680.000000,151,2,42927.001280,1904.976000,hint,lora,180 +on6,0,0,31,1,0,2419,5580.000000,151,9,47644.001280,2393.214566,hint,lora,180 +on1,0,0,27,1,0,1633,5039.000000,151,4,33793.001280,2148.752000,hint,lora,180 +on3,0,0,29,1,0,2216,5220.000000,151,6,44731.001280,2174.126976,hint,lora,180 +on11,0,0,25,1,0,798,4500.000000,151,1,20243.001280,1863.760000,hint,lora,180 +on5,0,0,25,1,0,1431,4500.000000,151,1,28648.001280,1853.760205,hint,lora,180 +on7,0,0,29,1,0,3351,5220.000000,152,7,75024.001280,2247.663386,hint,lora,180 +on3,0,0,28,1,0,1296,5040.000000,152,4,26338.001280,2120.208000,hint,lora,180 +on5,0,0,30,1,0,1982,5400.000000,152,6,40650.001280,2311.886362,hint,lora,180 +on10,0,0,32,1,0,2936,6106.000000,152,11,60297.001280,2690.831795,hint,lora,180 +on12,0,0,26,1,0,2396,4851.000000,152,4,48488.001280,2034.206771,hint,lora,180 +on11,0,0,25,1,0,978,4500.000000,152,1,20757.002560,1861.248000,hint,lora,180 +on9,0,0,35,1,0,3371,6328.000000,152,13,61623.001280,2782.414157,hint,lora,180 +on8,0,0,27,0,0,4295,4860.000000,152,3,-1.000000,2004.703386,hint,lora,180 +on4,0,0,26,1,0,2687,4680.000000,152,2,52064.001280,1914.143386,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,152,0,-1.000000,2230.818867,hint,lora,180 +on2,0,0,25,1,0,945,4500.000000,152,1,24769.001280,1877.503795,hint,lora,180 +on1,0,0,26,1,0,2188,4715.000000,152,4,44251.001280,1968.927181,hint,lora,180 +on6,0,0,28,1,0,1691,5042.000000,152,5,37975.001280,2141.600000,hint,lora,180 +on12,0,0,25,0,0,4238,4500.000000,153,1,-1.000000,1821.167590,hint,lora,180 +on5,0,0,24,1,0,3240,4320.000000,153,0,66222.001280,1795.424205,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,153,0,-1.000000,2125.698662,hint,lora,180 +on6,0,0,25,1,0,4087,4500.000000,153,1,81456.001280,1829.920205,hint,lora,180 +on7,0,0,24,0,0,4281,4320.000000,153,0,-1.000000,1758.080000,hint,lora,180 +on11,0,0,25,1,0,1205,4500.000000,153,1,23136.001280,1834.607795,hint,lora,180 +on4,0,0,25,1,0,1619,4500.000000,153,1,30737.001280,1828.544000,hint,lora,180 +on1,0,0,28,1,0,2091,5063.000000,153,6,39444.001280,2077.791181,hint,lora,180 +on3,0,0,25,1,0,1789,4500.000000,153,1,42578.001280,1906.511795,hint,lora,180 +on9,0,0,25,1,0,1222,4500.000000,153,2,26188.001280,1885.551590,hint,lora,180 +on8,0,0,24,1,0,404,4320.000000,153,1,12545.601280,1805.440410,hint,lora,180 +on2,0,0,30,1,0,1834,5442.000000,153,8,35384.001280,2295.359590,hint,lora,180 +on10,0,0,26,1,0,2256,4680.000000,153,2,46398.001280,1929.184000,hint,lora,180 +on11,0,0,24,1,0,113,4329.000000,154,1,5734.001280,1761.424000,hint,lora,180 +on5,0,0,33,1,0,1919,6077.000000,154,10,39308.001280,2679.792205,hint,lora,180 +on2,0,0,26,1,0,757,4680.000000,154,2,16633.001280,1931.744205,hint,lora,180 +on12,0,0,25,1,0,640,4500.000000,154,1,13702.001280,1885.760205,hint,lora,180 +on6,0,0,28,1,0,1361,5040.000000,154,4,22214.001280,2093.070976,hint,lora,180 +on9,0,0,26,1,0,927,4680.000000,154,2,19339.001280,1971.999795,hint,lora,180 +on7,0,0,25,1,0,513,4592.000000,154,2,8894.001280,1874.271795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,154,0,-1.000000,2104.226253,hint,lora,180 +on10,0,0,29,1,0,2260,5375.000000,154,7,41756.001280,2223.104000,hint,lora,180 +on1,0,0,26,1,0,3043,4680.000000,154,2,63150.001280,1949.119181,hint,lora,180 +on8,0,0,27,1,0,1102,4974.000000,154,4,27243.001280,2125.167795,hint,lora,180 +on3,0,0,33,0,0,4680,5940.000000,154,10,-1.000000,2503.214157,hint,lora,180 +on4,0,0,27,1,0,1464,5012.000000,154,4,29931.001280,2138.174566,hint,lora,180 +on1,0,0,27,1,0,1346,4860.000000,155,3,27207.001280,2000.799795,hint,lora,180 +on3,0,0,26,1,0,1647,4680.000000,155,2,31153.001280,1903.728000,hint,lora,180 +on5,0,0,25,0,0,4184,4500.000000,155,1,-1.000000,1840.319590,hint,lora,180 +on6,0,0,25,1,0,582,4500.000000,155,1,15829.001280,1909.344410,hint,lora,180 +on7,0,0,31,1,0,2801,5780.000000,155,10,47752.001280,2476.191590,hint,lora,180 +on8,0,0,28,1,0,1943,5040.000000,155,4,38150.001280,2146.751795,hint,lora,180 +on2,0,0,26,1,0,1998,4680.000000,155,3,41933.001280,1948.702976,hint,lora,180 +on9,0,0,24,1,0,0,4320.000000,155,0,2818.001280,1788.960000,hint,lora,180 +on11,0,0,25,1,0,2810,4500.000000,155,1,54255.001280,1910.607795,hint,lora,180 +on4,0,0,29,1,0,1960,5220.000000,155,5,32593.001280,2126.399181,hint,lora,180 +on10,0,0,26,1,0,1169,4680.000000,155,2,21986.001280,1900.640205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,155,0,-1.000000,2074.979891,hint,lora,180 +on12,0,0,26,1,0,2236,4680.000000,155,2,45584.001280,1942.943795,hint,lora,180 +on2,0,0,29,1,0,1873,5220.000000,156,5,33187.001280,2172.430976,hint,lora,180 +on11,0,0,26,1,0,1176,4680.000000,156,2,22219.001280,1931.743590,hint,lora,180 +on1,0,0,25,1,0,710,4500.000000,156,1,11875.001280,1835.327795,hint,lora,180 +on10,0,0,24,1,0,715,4433.000000,156,1,15157.001280,1804.991590,hint,lora,180 +on3,0,0,30,1,0,2415,5400.000000,156,7,46709.001280,2289.214771,hint,lora,180 +on7,0,0,27,1,0,1503,4860.000000,156,3,32307.001280,2030.671386,hint,lora,180 +on9,0,0,28,1,0,1496,5144.000000,156,5,28634.001280,2155.070976,hint,lora,180 +on8,0,0,27,1,0,2604,4860.000000,156,4,52254.001280,1996.703386,hint,lora,180 +on12,0,0,28,1,0,1898,5040.000000,156,4,36871.001280,2090.415181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,156,0,-1.000000,2091.937024,hint,lora,180 +on5,0,0,31,1,0,2373,5580.000000,156,7,39829.001280,2345.871181,hint,lora,180 +on4,0,0,31,1,0,2634,5580.000000,156,8,49095.001280,2352.671386,hint,lora,180 +on6,0,0,24,1,0,919,4320.000000,156,0,20980.001280,1753.600205,hint,lora,180 +on5,0,0,26,1,0,3762,4680.000000,157,2,75900.001280,1954.656000,hint,lora,180 +on6,0,0,27,0,0,4474,4860.000000,157,3,-1.000000,1974.271181,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,157,0,-1.000000,2114.979686,hint,lora,180 +on7,0,0,29,1,0,1932,5220.000000,157,5,35023.001280,2158.879386,hint,lora,180 +on10,0,0,26,1,0,737,4680.000000,157,2,16387.001280,1922.912000,hint,lora,180 +on3,0,0,33,1,0,2487,5940.000000,157,10,39808.001280,2521.168205,hint,lora,180 +on2,0,0,27,1,0,1039,4908.000000,157,5,21513.001280,2036.688000,hint,lora,180 +on1,0,0,25,1,0,61,4500.000000,157,1,6169.001280,1855.952205,hint,lora,180 +on9,0,0,26,1,0,1529,4906.000000,157,4,27916.001280,2012.655386,hint,lora,180 +on8,0,0,27,1,0,1606,4860.000000,157,3,30140.001280,2026.782976,hint,lora,180 +on4,0,0,26,1,0,389,4680.000000,157,2,8444.001280,1945.008205,hint,lora,180 +on12,0,0,26,1,0,463,4680.000000,157,2,12772.001280,1931.151795,hint,lora,180 +on11,0,0,27,0,0,4382,4860.000000,157,3,-1.000000,1990.287590,hint,lora,180 +on12,0,0,27,1,0,1115,4860.000000,158,3,23421.001280,2001.024000,hint,lora,180 +on8,0,0,27,1,0,1384,4860.000000,158,3,27060.001280,2064.319386,hint,lora,180 +on7,0,0,29,1,0,2611,5220.000000,158,5,49130.001280,2198.750771,hint,lora,180 +on10,0,0,25,1,0,394,4625.000000,158,3,11718.001280,1954.272614,hint,lora,180 +on4,0,0,29,1,0,1847,5223.000000,158,6,36259.001280,2209.871590,hint,lora,180 +on9,0,0,32,1,0,1926,5760.000000,158,8,33434.001280,2428.142362,hint,lora,180 +on6,0,0,25,1,0,893,4500.000000,158,1,21430.001280,1848.000000,hint,lora,180 +on2,0,0,25,1,0,484,4500.000000,158,1,10448.001280,1828.384205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,158,0,-1.000000,2116.513024,hint,lora,180 +on1,0,0,31,1,0,1886,5643.000000,158,9,31336.001280,2324.863181,hint,lora,180 +on3,0,0,32,1,0,2606,5760.000000,158,8,44736.001280,2448.606157,hint,lora,180 +on11,0,0,33,1,0,2152,5940.000000,158,9,40312.001280,2577.902157,hint,lora,180 +on5,0,0,24,1,0,776,4476.000000,158,1,16028.001280,1828.928000,hint,lora,180 +on10,0,0,26,1,0,3267,4680.000000,159,2,67485.001280,1983.199590,hint,lora,180 +on8,0,0,26,1,0,798,4805.000000,159,3,15892.001280,2006.543590,hint,lora,180 +on12,0,0,27,1,0,1338,4991.000000,159,4,27437.001280,2095.327181,hint,lora,180 +on2,0,0,31,1,0,2831,5580.000000,159,7,51082.001280,2409.454976,hint,lora,180 +on11,0,0,25,1,0,0,4500.000000,159,1,866.602560,1864.431795,hint,lora,180 +on6,0,0,25,1,0,13,4500.000000,159,2,4548.001280,1942.495386,hint,lora,180 +on3,0,0,30,1,0,2156,5580.000000,159,8,39874.001280,2362.928410,hint,lora,180 +on5,0,0,26,1,0,859,4680.000000,159,2,20438.001280,1942.719795,hint,lora,180 +on1,0,0,27,1,0,1268,4860.000000,159,3,23861.001280,2006.879386,hint,lora,180 +on7,0,0,27,1,0,2231,4860.000000,159,5,48631.001280,2057.391590,hint,lora,180 +on4,0,0,30,1,0,2602,5486.000000,159,7,57569.001280,2391.518976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,159,0,-1.000000,2200.930458,hint,lora,180 +on9,0,0,26,1,0,1795,4741.000000,159,3,36701.001280,1968.128000,hint,lora,180 +on11,0,0,34,1,0,3150,6233.000000,160,11,53762.001280,2659.055181,hint,lora,180 +on6,0,0,28,1,0,1437,5040.000000,160,4,25426.001280,2087.519386,hint,lora,180 +on7,0,0,26,1,0,1217,4680.000000,160,3,29389.001280,2008.528000,hint,lora,180 +on9,0,0,29,1,0,2209,5378.000000,160,6,35385.001280,2208.592000,hint,lora,180 +on8,0,0,36,1,0,3205,6480.000000,160,12,54968.001280,2790.638771,hint,lora,180 +on4,0,0,27,1,0,1747,4971.000000,160,4,39351.001280,2117.455590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,160,0,-1.000000,2204.385843,hint,lora,180 +on3,0,0,27,1,0,971,4860.000000,160,3,23616.001280,2034.863795,hint,lora,180 +on1,0,0,30,0,0,4486,5400.000000,160,6,-1.000000,2276.462362,hint,lora,180 +on5,0,0,30,1,0,3308,5556.000000,160,9,62705.001280,2355.183181,hint,lora,180 +on12,0,0,33,1,0,3069,6119.000000,160,12,60277.001280,2634.270976,hint,lora,180 +on10,0,0,24,1,0,369,4320.000000,160,0,8038.001280,1753.600205,hint,lora,180 +on2,0,0,33,1,0,2250,5940.000000,160,9,44077.001280,2596.335590,hint,lora,180 +on2,0,0,24,1,0,1,4320.000000,161,0,1927.001280,1781.984819,hint,lora,180 +on10,0,0,24,1,0,3436,4320.000000,161,0,69069.001280,1753.983795,hint,lora,180 +on3,0,0,27,1,0,3088,4860.000000,161,3,60507.001280,1973.536205,hint,lora,180 +on5,0,0,25,1,0,2672,4500.000000,161,1,57455.001280,1857.184000,hint,lora,180 +on7,0,0,29,1,0,3244,5264.000000,161,6,72237.001280,2340.110976,hint,lora,180 +on1,0,0,28,1,0,4412,5040.000000,161,4,84888.000000,2094.191386,hint,lora,180 +on4,0,0,34,0,0,4740,6150.000000,161,13,-1.000000,2602.045133,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,161,0,-1.000000,2191.074253,hint,lora,180 +on11,0,0,28,1,0,3643,5040.000000,161,4,67215.001280,2051.679386,hint,lora,180 +on8,0,0,26,1,0,3998,4757.000000,161,3,80859.001280,1978.543181,hint,lora,180 +on9,0,0,27,1,0,3793,4860.000000,161,4,77896.001280,2076.479386,hint,lora,180 +on6,0,0,24,1,0,2475,4356.000000,161,1,53397.001280,1777.344000,hint,lora,180 +on12,0,0,27,1,0,3165,4860.000000,161,3,62693.001280,2024.736000,hint,lora,180 +on11,0,0,24,1,0,617,4373.000000,162,1,14630.001280,1796.880205,hint,lora,180 +on12,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,hint,lora,180 +on2,0,0,25,1,0,3752,4500.000000,162,1,77263.001280,1871.903795,hint,lora,180 +on7,0,0,25,1,0,3380,4500.000000,162,1,70507.001280,1861.120205,hint,lora,180 +on5,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,hint,lora,180 +on1,0,0,25,0,0,4301,4500.000000,162,1,-1.000000,1814.944000,hint,lora,180 +on6,0,0,25,1,0,4027,4500.000000,162,1,86146.000000,1859.728000,hint,lora,180 +on10,0,0,26,0,0,4394,4680.000000,162,3,-1.000000,1922.319386,hint,lora,180 +on3,0,0,29,0,0,4037,5220.000000,162,6,-1.000000,2263.775181,hint,lora,180 +on9,0,0,25,0,0,4308,4500.000000,162,1,-1.000000,1833.664000,hint,lora,180 +on0,1,5,24,0,0,0,4320.000000,162,0,-1.000000,2084.640614,hint,lora,180 +on4,0,0,24,0,0,4216,4320.000000,162,0,-1.000000,1756.800000,hint,lora,180 +on8,0,0,25,1,0,3685,4500.000000,162,1,80591.001280,1893.343795,hint,lora,180 +on5,0,0,28,1,0,1906,5076.000000,163,5,40913.001280,2227.262976,hint,lora,180 +on8,0,0,25,1,0,1657,4500.000000,163,1,35372.001280,1874.879795,hint,lora,180 +on3,0,0,26,1,0,1011,4680.000000,163,2,25704.001280,1989.136000,hint,lora,180 +on1,0,0,28,1,0,1952,5040.000000,163,4,38614.001280,2135.088000,hint,lora,180 +on2,0,0,25,1,0,745,4500.000000,163,1,17912.001280,1900.224000,hint,lora,180 +on10,0,0,25,1,0,1326,4522.000000,163,2,29833.001280,1883.680000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,163,0,-1.000000,2066.692506,hint,lora,180 +on7,0,0,25,0,0,4286,4500.000000,163,3,-1.000000,1813.471590,hint,lora,180 +on9,0,0,24,1,0,182,4466.000000,163,1,4787.602560,1812.048614,hint,lora,180 +on6,0,0,27,1,0,942,4860.000000,163,3,18482.001280,2030.559795,hint,lora,180 +on12,0,0,26,1,0,2258,4719.000000,163,3,44843.001280,2033.791795,hint,lora,180 +on4,0,0,31,1,0,2798,5640.000000,163,8,50043.001280,2391.038566,hint,lora,180 +on11,0,0,28,1,0,975,5203.000000,163,7,23618.002560,2264.190976,hint,lora,180 +on8,0,0,28,1,0,1186,5177.000000,164,5,22895.001280,2193.327795,hint,lora,180 +on12,0,0,31,1,0,2165,5580.000000,164,7,33263.001280,2330.447181,hint,lora,180 +on4,0,0,30,1,0,2185,5553.000000,164,8,37698.001280,2349.069747,hint,lora,180 +on11,0,0,25,1,0,435,4500.000000,164,1,10252.002560,1825.759795,hint,lora,180 +on9,0,0,31,1,0,2396,5580.000000,164,8,41357.001280,2355.294362,hint,lora,180 +on7,0,0,26,1,0,1288,4857.000000,164,3,27443.001280,2043.279181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,164,0,-1.000000,2067.010253,hint,lora,180 +on2,0,0,32,1,0,2521,5900.000000,164,10,44257.001280,2527.806976,hint,lora,180 +on6,0,0,27,1,0,2327,4897.000000,164,4,48386.001280,2078.766566,hint,lora,180 +on10,0,0,25,1,0,687,4500.000000,164,1,13694.001280,1828.688000,hint,lora,180 +on3,0,0,29,1,0,1930,5347.000000,164,6,32105.001280,2229.983590,hint,lora,180 +on1,0,0,26,1,0,823,4680.000000,164,2,16141.001280,1932.063795,hint,lora,180 +on5,0,0,27,1,0,1179,4860.000000,164,4,21354.001280,1976.047386,hint,lora,180 +on5,0,0,28,0,0,4429,5040.000000,165,4,-1.000000,2058.926976,hint,lora,180 +on7,0,0,30,1,0,3182,5676.000000,165,8,61413.001280,2450.287590,hint,lora,180 +on10,0,0,26,1,0,1359,4713.000000,165,3,27821.001280,1930.863795,hint,lora,180 +on3,0,0,29,1,0,1948,5220.000000,165,5,32859.001280,2211.488205,hint,lora,180 +on8,0,0,27,1,0,1530,4896.000000,165,4,29673.001280,2028.975590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,165,0,-1.000000,2122.019072,hint,lora,180 +on4,0,0,31,1,0,2504,5646.000000,165,9,48516.001280,2466.430976,hint,lora,180 +on12,0,0,26,1,0,1076,4680.000000,165,2,23444.001280,1940.063795,hint,lora,180 +on11,0,0,31,1,0,2296,5580.000000,165,7,40686.001280,2357.183386,hint,lora,180 +on2,0,0,28,1,0,1882,5291.000000,165,6,38152.001280,2275.712000,hint,lora,180 +on9,0,0,32,1,0,2581,5760.000000,165,8,44797.001280,2433.294771,hint,lora,180 +on6,0,0,25,1,0,682,4500.000000,165,1,14975.001280,1898.959795,hint,lora,180 +on1,0,0,26,1,0,923,4859.000000,165,3,20671.001280,2030.319795,hint,lora,180 +on5,0,0,28,1,0,962,5040.000000,166,4,15849.001280,2099.344205,hint,lora,180 +on3,0,0,24,1,0,531,4407.000000,166,2,12668.001280,1828.560000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,166,0,-1.000000,2105.252096,hint,lora,180 +on2,0,0,32,1,0,2352,5780.000000,166,10,45231.001280,2502.431590,hint,lora,180 +on9,0,0,25,1,0,147,4500.000000,166,1,6383.001280,1894.784205,hint,lora,180 +on4,0,0,26,1,0,323,4680.000000,166,2,8488.001280,1985.344205,hint,lora,180 +on1,0,0,30,1,0,1857,5521.000000,166,8,31566.001280,2319.694976,hint,lora,180 +on6,0,0,28,1,0,1229,5040.000000,166,4,24594.001280,2104.384205,hint,lora,180 +on7,0,0,32,1,0,1968,5809.000000,166,9,35684.001280,2489.071795,hint,lora,180 +on11,0,0,29,0,0,4515,5220.000000,166,5,-1.000000,2173.374566,hint,lora,180 +on10,0,0,29,1,0,2411,5439.000000,166,7,43176.001280,2244.175181,hint,lora,180 +on12,0,0,32,1,0,2037,5760.000000,166,9,36387.001280,2470.078566,hint,lora,180 +on8,0,0,28,1,0,1177,5040.000000,166,4,18861.001280,2084.671590,hint,lora,180 +on9,0,0,27,1,0,2258,4860.000000,167,4,42572.001280,2011.888000,hint,lora,180 +on10,0,0,24,1,0,3881,4354.000000,167,1,80564.001280,1809.952000,hint,lora,180 +on11,0,0,29,1,0,1753,5463.000000,167,7,37538.001280,2368.863590,hint,lora,180 +on4,0,0,26,1,0,901,4680.000000,167,2,20743.001280,1942.784000,hint,lora,180 +on1,0,0,29,1,0,4336,5220.000000,167,5,83696.000000,2205.631181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,167,0,-1.000000,2139.332096,hint,lora,180 +on2,0,0,26,1,0,1309,4680.000000,167,2,24549.002560,1933.071386,hint,lora,180 +on5,0,0,25,1,0,430,4566.000000,167,2,8138.001280,1862.400000,hint,lora,180 +on12,0,0,26,1,0,799,4680.000000,167,2,15333.001280,1938.448819,hint,lora,180 +on8,0,0,30,1,0,1798,5400.000000,167,6,33020.001280,2283.023590,hint,lora,180 +on7,0,0,29,1,0,2438,5220.000000,167,7,45915.001280,2211.262771,hint,lora,180 +on3,0,0,25,1,0,474,4500.000000,167,1,12512.001280,1867.647795,hint,lora,180 +on6,0,0,29,1,0,1549,5452.000000,167,8,31469.001280,2333.647386,hint,lora,180 +on11,0,0,29,1,0,3061,5396.000000,168,6,63931.001280,2296.687386,hint,lora,180 +on2,0,0,32,1,0,3763,5767.000000,168,9,70066.001280,2511.086157,hint,lora,180 +on6,0,0,25,1,0,906,4500.000000,168,1,21288.602560,1825.648819,hint,lora,180 +on5,0,0,29,1,0,2555,5220.000000,168,5,52184.001280,2219.616000,hint,lora,180 +on12,0,0,32,1,0,3996,5760.000000,168,8,74383.001280,2457.358976,hint,lora,180 +on1,0,0,29,1,0,3192,5383.000000,168,6,67289.001280,2315.774771,hint,lora,180 +on9,0,0,24,1,0,1124,4320.000000,168,0,25614.001280,1782.400410,hint,lora,180 +on10,0,0,26,1,0,2678,4680.000000,168,2,55472.001280,1928.735795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,168,0,-1.000000,2172.130662,hint,lora,180 +on7,0,0,25,1,0,2325,4500.000000,168,1,46323.001280,1850.304205,hint,lora,180 +on4,0,0,25,1,0,2017,4500.000000,168,1,43012.001280,1867.312000,hint,lora,180 +on3,0,0,27,1,0,3028,4860.000000,168,3,58152.001280,2028.192000,hint,lora,180 +on8,0,0,26,0,0,4395,4680.000000,168,2,-1.000000,1910.078976,hint,lora,180 +on4,0,0,30,1,0,2840,5474.000000,169,7,52128.001280,2318.335181,hint,lora,180 +on6,0,0,27,1,0,2180,4916.000000,169,4,40723.001280,2046.879590,hint,lora,180 +on11,0,0,28,1,0,2742,5048.000000,169,5,58219.001280,2175.565952,hint,lora,180 +on12,0,0,28,1,0,1909,5040.000000,169,4,38188.001280,2112.383590,hint,lora,180 +on7,0,0,25,1,0,1040,4500.000000,169,1,24247.001280,1849.504000,hint,lora,180 +on1,0,0,28,1,0,2349,5040.000000,169,4,46177.001280,2108.046771,hint,lora,180 +on5,0,0,27,1,0,1513,4860.000000,169,4,30232.001280,2024.911386,hint,lora,180 +on9,0,0,33,1,0,3512,5940.000000,169,10,63033.001280,2492.846362,hint,lora,180 +on2,0,0,25,1,0,624,4500.000000,169,1,20552.001280,1937.440000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,169,0,-1.000000,2156.513434,hint,lora,180 +on3,0,0,32,1,0,3076,5760.000000,169,8,55927.001280,2421.102362,hint,lora,180 +on10,0,0,26,1,0,1289,4680.000000,169,2,25869.001280,1937.135590,hint,lora,180 +on8,0,0,30,1,0,2545,5494.000000,169,7,48350.001280,2344.942976,hint,lora,180 +on9,0,0,26,1,0,1509,4680.000000,170,2,29873.001280,1964.848000,hint,lora,180 +on10,0,0,25,1,0,1630,4559.000000,170,2,32783.001280,1900.128205,hint,lora,180 +on5,0,0,25,1,0,1013,4500.000000,170,1,23230.001280,1866.576205,hint,lora,180 +on1,0,0,25,1,0,948,4512.000000,170,4,20151.001280,1846.127590,hint,lora,180 +on8,0,0,24,1,0,2349,4320.000000,170,0,49569.001280,1754.720205,hint,lora,180 +on12,0,0,26,1,0,2098,4854.000000,170,3,42110.001280,1992.799795,hint,lora,180 +on7,0,0,24,1,0,558,4320.000000,170,0,11154.001280,1785.440410,hint,lora,180 +on11,0,0,26,1,0,3439,4680.000000,170,3,73036.001280,2008.479590,hint,lora,180 +on4,0,0,25,1,0,874,4500.000000,170,1,17935.001280,1830.560000,hint,lora,180 +on3,0,0,29,1,0,2068,5220.000000,170,5,38154.001280,2185.198976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,170,0,-1.000000,2083.907891,hint,lora,180 +on6,0,0,26,1,0,1222,4680.000000,170,2,27239.001280,2000.495795,hint,lora,180 +on2,0,0,30,1,0,2578,5400.000000,170,7,44465.001280,2284.687386,hint,lora,180 +on4,0,0,30,0,0,4591,5400.000000,171,6,-1.000000,2262.350771,hint,lora,180 +on6,0,0,27,1,0,822,4867.000000,171,4,17221.001280,2036.191386,hint,lora,180 +on3,0,0,30,1,0,1737,5481.000000,171,7,34245.001280,2406.030976,hint,lora,180 +on5,0,0,29,1,0,1336,5220.000000,171,5,26498.001280,2174.607386,hint,lora,180 +on7,0,0,30,1,0,2328,5463.000000,171,7,44805.001280,2312.958566,hint,lora,180 +on11,0,0,25,1,0,347,4500.000000,171,1,7779.001280,1856.767795,hint,lora,180 +on8,0,0,28,1,0,2056,5040.000000,171,4,38437.001280,2132.127181,hint,lora,180 +on9,0,0,28,1,0,1502,5326.000000,171,6,29399.001280,2277.502976,hint,lora,180 +on2,0,0,24,1,0,473,4434.000000,171,1,13306.001280,1846.240614,hint,lora,180 +on10,0,0,27,1,0,832,4860.000000,171,3,18824.002560,2086.848000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,171,0,-1.000000,2087.746867,hint,lora,180 +on1,0,0,24,1,0,1135,4423.000000,171,1,22580.001280,1832.304000,hint,lora,180 +on12,0,0,32,1,0,2526,5760.000000,171,8,40261.001280,2397.886976,hint,lora,180 +on10,0,0,27,1,0,1973,4860.000000,172,3,41537.001280,2087.759386,hint,lora,180 +on5,0,0,26,1,0,1338,4680.000000,172,2,24654.002560,1898.239795,hint,lora,180 +on12,0,0,27,0,0,4372,4886.000000,172,4,-1.000000,2022.031181,hint,lora,180 +on2,0,0,24,1,0,1447,4320.000000,172,1,30297.001280,1754.464205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,172,0,-1.000000,2093.090458,hint,lora,180 +on8,0,0,29,1,0,2674,5220.000000,172,6,48077.001280,2199.487181,hint,lora,180 +on11,0,0,26,1,0,1628,4680.000000,172,2,32710.001280,1956.799795,hint,lora,180 +on7,0,0,30,1,0,2460,5400.000000,172,6,45870.001280,2256.623181,hint,lora,180 +on4,0,0,26,1,0,735,4680.000000,172,2,17593.001280,1970.304205,hint,lora,180 +on9,0,0,33,1,0,2233,5940.000000,172,11,39277.001280,2473.678771,hint,lora,180 +on1,0,0,25,1,0,215,4500.000000,172,1,8212.001280,1868.640205,hint,lora,180 +on3,0,0,24,1,0,852,4430.000000,172,1,21452.001280,1827.888000,hint,lora,180 +on6,0,0,27,1,0,1418,4860.000000,172,4,26204.001280,2005.167590,hint,lora,180 +on9,0,0,29,1,0,2138,5220.000000,173,5,46768.001280,2251.599795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,173,0,-1.000000,2164.453325,hint,lora,180 +on11,0,0,29,1,0,3963,5220.000000,173,5,72550.001280,2149.135386,hint,lora,180 +on7,0,0,26,1,0,3370,4680.000000,173,2,71104.001280,1952.687590,hint,lora,180 +on1,0,0,27,1,0,772,4860.000000,173,3,17142.001280,2025.472000,hint,lora,180 +on8,0,0,27,1,0,1643,4860.000000,173,3,29452.001280,1999.968000,hint,lora,180 +on3,0,0,25,0,0,3964,4500.000000,173,1,-1.000000,1887.199590,hint,lora,180 +on10,0,0,25,1,0,29,4500.000000,173,1,3888.001280,1945.088205,hint,lora,180 +on6,0,0,28,1,0,1286,5157.000000,173,5,23397.001280,2162.304410,hint,lora,180 +on12,0,0,25,1,0,338,4500.000000,173,1,9289.001280,1829.616000,hint,lora,180 +on5,0,0,32,1,0,2116,5806.000000,173,11,36953.001280,2461.248000,hint,lora,180 +on2,0,0,32,1,0,1941,5760.000000,173,8,32585.001280,2488.543795,hint,lora,180 +on4,0,0,26,1,0,568,4680.000000,173,2,12762.001280,1940.912000,hint,lora,180 +on7,0,0,28,1,0,2235,5040.000000,174,4,46016.001280,2134.782771,hint,lora,180 +on3,0,0,30,1,0,2001,5457.000000,174,7,37202.002560,2304.415181,hint,lora,180 +on6,0,0,25,1,0,2985,4500.000000,174,1,61078.001280,1858.879590,hint,lora,180 +on1,0,0,26,1,0,850,4680.000000,174,2,19957.001280,1918.879590,hint,lora,180 +on12,0,0,25,1,0,299,4500.000000,174,1,6613.001280,1828.543795,hint,lora,180 +on5,0,0,25,1,0,1149,4626.000000,174,2,24100.001280,1926.143590,hint,lora,180 +on4,0,0,31,1,0,1722,5580.000000,174,7,29301.001280,2396.959386,hint,lora,180 +on8,0,0,29,1,0,1885,5220.000000,174,5,41520.001280,2251.710771,hint,lora,180 +on10,0,0,28,1,0,1588,5129.000000,174,5,35369.001280,2183.663590,hint,lora,180 +on11,0,0,26,1,0,2412,4680.000000,174,3,51291.001280,1942.143795,hint,lora,180 +on9,0,0,27,1,0,690,4860.000000,174,3,15413.001280,2048.559795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,174,0,-1.000000,2155.457229,hint,lora,180 +on2,0,0,34,1,0,3023,6263.000000,174,11,49976.001280,2639.245952,hint,lora,180 +on10,0,0,25,1,0,828,4500.000000,175,1,18937.001280,1924.991795,hint,lora,180 +on8,0,0,28,0,0,4413,5040.000000,175,4,-1.000000,2079.855181,hint,lora,180 +on6,0,0,27,1,0,1782,4860.000000,175,3,36275.001280,2035.200000,hint,lora,180 +on5,0,0,27,1,0,2476,4860.000000,175,4,60774.001280,2168.814976,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,175,0,-1.000000,2176.706867,hint,lora,180 +on12,0,0,26,1,0,1377,4680.000000,175,2,25901.001280,1970.415590,hint,lora,180 +on2,0,0,29,1,0,2319,5263.000000,175,6,49325.001280,2256.510976,hint,lora,180 +on7,0,0,27,1,0,1581,4860.000000,175,3,31220.001280,2032.160000,hint,lora,180 +on3,0,0,29,1,0,2300,5265.000000,175,6,41233.001280,2186.783181,hint,lora,180 +on11,0,0,26,1,0,1139,4680.000000,175,2,23852.001280,1903.792000,hint,lora,180 +on1,0,0,30,1,0,2805,5400.000000,175,6,56202.001280,2354.638976,hint,lora,180 +on4,0,0,31,1,0,2855,5580.000000,175,9,52668.001280,2327.758976,hint,lora,180 +on9,0,0,26,1,0,1661,4680.000000,175,2,35382.001280,1917.151795,hint,lora,180 +on5,0,0,33,1,0,3798,6004.000000,176,10,68892.001280,2567.006566,hint,lora,180 +on3,0,0,28,1,0,2176,5040.000000,176,4,44529.001280,2103.727590,hint,lora,180 +on12,0,0,29,1,0,4004,5220.000000,176,6,80438.001280,2233.967181,hint,lora,180 +on7,0,0,25,1,0,2447,4505.000000,176,2,49475.001280,1842.799795,hint,lora,180 +on6,0,0,26,1,0,2447,4680.000000,176,2,50716.001280,1950.143795,hint,lora,180 +on11,0,0,34,1,0,3850,6120.000000,176,10,68241.001280,2565.006771,hint,lora,180 +on9,0,0,29,1,0,3742,5220.000000,176,6,78077.001280,2197.598566,hint,lora,180 +on10,0,0,28,1,0,3210,5206.000000,176,6,62760.001280,2230.926976,hint,lora,180 +on8,0,0,27,1,0,2226,4860.000000,176,3,42977.001280,2021.344000,hint,lora,180 +on2,0,0,29,1,0,2773,5335.000000,176,6,54954.001280,2276.766771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,176,0,-1.000000,2189.473024,hint,lora,180 +on1,0,0,34,1,0,3849,6243.000000,176,11,74553.001280,2722.462362,hint,lora,180 +on4,0,0,32,1,0,3231,5760.000000,176,8,59664.001280,2450.703386,hint,lora,180 +on10,0,0,25,1,0,1673,4500.000000,177,1,40749.001280,1925.456410,hint,lora,180 +on2,0,0,25,1,0,2093,4500.000000,177,1,45779.001280,1856.800000,hint,lora,180 +on6,0,0,25,1,0,879,4500.000000,177,1,20928.001280,1907.583795,hint,lora,180 +on7,0,0,28,1,0,2756,5040.000000,177,4,54727.001280,2146.462771,hint,lora,180 +on8,0,0,25,1,0,1343,4500.000000,177,1,26895.001280,1864.832000,hint,lora,180 +on12,0,0,24,1,0,360,4320.000000,177,0,7818.001280,1791.104410,hint,lora,180 +on4,0,0,29,1,0,2322,5327.000000,177,7,51186.001280,2306.910566,hint,lora,180 +on9,0,0,29,1,0,3117,5220.000000,177,5,60242.001280,2220.079386,hint,lora,180 +on5,0,0,25,1,0,1795,4500.000000,177,1,34406.001280,1852.320205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,177,0,-1.000000,2167.234662,hint,lora,180 +on1,0,0,30,1,0,2616,5432.000000,177,8,47541.001280,2268.318566,hint,lora,180 +on11,0,0,25,1,0,653,4500.000000,177,1,14201.001280,1884.639795,hint,lora,180 +on3,0,0,24,1,0,720,4320.000000,177,0,16637.001280,1814.208000,hint,lora,180 +on10,0,0,31,1,0,2020,5580.000000,178,7,34025.001280,2307.246771,hint,lora,180 +on1,0,0,25,1,0,534,4523.000000,178,2,13276.001280,1862.320000,hint,lora,180 +on3,0,0,26,1,0,1064,4680.000000,178,2,25411.001280,1987.103795,hint,lora,180 +on12,0,0,31,1,0,2042,5580.000000,178,7,37843.001280,2374.350566,hint,lora,180 +on2,0,0,30,1,0,2327,5457.000000,178,7,41620.001280,2278.462566,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,178,0,-1.000000,2121.696614,hint,lora,180 +on7,0,0,29,1,0,2308,5220.000000,178,5,43638.001280,2214.526362,hint,lora,180 +on5,0,0,32,1,0,2860,5802.000000,178,9,53522.001280,2445.454362,hint,lora,180 +on6,0,0,27,1,0,920,4876.000000,178,4,20511.001280,2013.215795,hint,lora,180 +on9,0,0,25,1,0,685,4500.000000,178,1,14903.002560,1853.984205,hint,lora,180 +on8,0,0,32,1,0,2515,5842.000000,178,9,48180.001280,2538.638566,hint,lora,180 +on11,0,0,26,1,0,1142,4680.000000,178,2,22463.002560,1928.687181,hint,lora,180 +on4,0,0,28,1,0,1556,5040.000000,178,4,30381.001280,2078.943386,hint,lora,180 +on3,0,0,27,1,0,1357,4866.000000,179,4,26499.001280,2033.024000,hint,lora,180 +on12,0,0,26,1,0,922,4680.000000,179,2,18855.001280,1932.431386,hint,lora,180 +on4,0,0,27,1,0,1193,4937.000000,179,4,23708.001280,2053.039590,hint,lora,180 +on5,0,0,34,1,0,2603,6120.000000,179,10,48663.001280,2631.230362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,179,0,-1.000000,2171.744614,hint,lora,180 +on9,0,0,28,1,0,2279,5040.000000,179,4,52706.001280,2167.806976,hint,lora,180 +on1,0,0,25,1,0,521,4500.000000,179,1,12437.001280,1872.448000,hint,lora,180 +on8,0,0,33,1,0,2536,5940.000000,179,9,46769.001280,2522.494157,hint,lora,180 +on2,0,0,30,1,0,1624,5400.000000,179,6,33534.002560,2341.103386,hint,lora,180 +on11,0,0,25,1,0,896,4500.000000,179,1,17399.001280,1828.480000,hint,lora,180 +on7,0,0,27,1,0,1505,5003.000000,179,4,31395.001280,2084.031590,hint,lora,180 +on10,0,0,30,1,0,1941,5486.000000,179,8,37628.001280,2346.382771,hint,lora,180 +on6,0,0,29,1,0,2980,5220.000000,179,6,56097.001280,2165.983181,hint,lora,180 +on1,0,0,27,1,0,2532,4860.000000,180,3,50366.001280,2026.239386,hint,lora,180 +on4,0,0,24,1,0,1462,4320.000000,180,1,34863.001280,1810.208000,hint,lora,180 +on2,0,0,28,1,0,2303,5040.000000,180,4,43534.001280,2152.816410,hint,lora,180 +on5,0,0,28,1,0,2682,5040.000000,180,5,61044.001280,2172.271386,hint,lora,180 +on3,0,0,26,1,0,1833,4680.000000,180,2,37358.001280,1987.088000,hint,lora,180 +on7,0,0,25,1,0,789,4500.000000,180,1,19328.001280,1837.808614,hint,lora,180 +on10,0,0,25,1,0,1234,4500.000000,180,1,27513.001280,1828.800205,hint,lora,180 +on8,0,0,27,0,0,4321,4860.000000,180,3,-1.000000,2008.735386,hint,lora,180 +on6,0,0,27,1,0,2056,4860.000000,180,3,41985.001280,2065.007795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,180,0,-1.000000,2203.170867,hint,lora,180 +on9,0,0,28,1,0,2506,5040.000000,180,4,55464.001280,2177.327181,hint,lora,180 +on12,0,0,30,1,0,3458,5400.000000,180,6,67959.001280,2264.847181,hint,lora,180 +on11,0,0,27,1,0,1080,4863.000000,180,5,21817.001280,2047.552205,hint,lora,180 +on12,0,0,29,1,0,1981,5220.000000,181,5,36581.001280,2210.079795,hint,lora,180 +on5,0,0,25,1,0,900,4500.000000,181,1,17080.001280,1828.704000,hint,lora,180 +on2,0,0,31,1,0,2734,5776.000000,181,9,55223.001280,2519.855795,hint,lora,180 +on4,0,0,33,1,0,2574,5995.000000,181,10,47388.001280,2586.765542,hint,lora,180 +on1,0,0,27,1,0,1546,4860.000000,181,3,31025.001280,2063.712205,hint,lora,180 +on10,0,0,27,1,0,1913,4860.000000,181,3,42290.001280,2055.999795,hint,lora,180 +on11,0,0,29,1,0,2912,5220.000000,181,5,53494.001280,2147.230771,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,181,0,-1.000000,2120.993638,hint,lora,180 +on9,0,0,25,1,0,1340,4595.000000,181,2,27674.001280,1866.688205,hint,lora,180 +on3,0,0,33,1,0,3441,5940.000000,181,10,58026.001280,2458.590976,hint,lora,180 +on7,0,0,27,1,0,1785,4860.000000,181,3,35379.001280,2019.647590,hint,lora,180 +on8,0,0,28,0,0,4574,5066.000000,181,5,-1.000000,2088.143590,hint,lora,180 +on6,0,0,32,1,0,2607,5879.000000,181,9,45243.001280,2457.263181,hint,lora,180 +on8,0,0,30,1,0,2917,5400.000000,182,6,54601.001280,2319.150362,hint,lora,180 +on5,0,0,25,1,0,1268,4500.000000,182,2,31804.001280,1867.231590,hint,lora,180 +on6,0,0,27,1,0,2228,4860.000000,182,4,46185.001280,2021.439590,hint,lora,180 +on3,0,0,28,1,0,2662,5040.000000,182,4,53284.001280,2139.806771,hint,lora,180 +on7,0,0,28,1,0,2660,5040.000000,182,4,48743.001280,2085.439386,hint,lora,180 +on4,0,0,26,1,0,1866,4680.000000,182,2,39449.001280,1923.248000,hint,lora,180 +on1,0,0,27,1,0,1377,4860.000000,182,3,27727.001280,2040.271590,hint,lora,180 +on12,0,0,26,1,0,1646,4680.000000,182,2,33024.001280,1929.599795,hint,lora,180 +on9,0,0,25,1,0,753,4500.000000,182,2,19251.001280,1907.055590,hint,lora,180 +on11,0,0,27,1,0,1936,4860.000000,182,3,41266.001280,2077.711795,hint,lora,180 +on2,0,0,25,1,0,684,4500.000000,182,1,14584.602560,1886.319590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,182,0,-1.000000,2137.186048,hint,lora,180 +on10,0,0,27,1,0,3007,4860.000000,182,4,60965.001280,2033.566976,hint,lora,180 +on12,0,0,26,1,0,1511,4680.000000,183,2,32200.001280,1934.463795,hint,lora,180 +on9,0,0,26,1,0,937,4680.000000,183,3,23007.001280,1964.383795,hint,lora,180 +on7,0,0,27,1,0,2492,4860.000000,183,3,49961.001280,2039.999795,hint,lora,180 +on6,0,0,28,1,0,1898,5040.000000,183,4,39136.001280,2160.318976,hint,lora,180 +on5,0,0,30,1,0,3577,5400.000000,183,6,60387.001280,2206.606566,hint,lora,180 +on8,0,0,27,1,0,1452,4860.000000,183,3,27916.001280,2037.071795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,183,0,-1.000000,2127.970662,hint,lora,180 +on3,0,0,27,1,0,1788,4860.000000,183,3,33643.001280,2014.191386,hint,lora,180 +on10,0,0,29,1,0,2092,5220.000000,183,5,42528.001280,2208.672000,hint,lora,180 +on1,0,0,24,1,0,370,4320.000000,183,0,7721.001280,1753.600205,hint,lora,180 +on2,0,0,25,1,0,694,4625.000000,183,3,17266.001280,1938.672000,hint,lora,180 +on11,0,0,27,1,0,2869,4860.000000,183,4,53602.001280,1975.999795,hint,lora,180 +on4,0,0,29,1,0,2381,5290.000000,183,6,46443.001280,2249.311590,hint,lora,180 +on2,0,0,25,1,0,1857,4635.000000,184,2,36662.001280,1926.608000,hint,lora,180 +on9,0,0,26,1,0,2865,4809.000000,184,3,66085.001280,2108.400000,hint,lora,180 +on7,0,0,30,1,0,2574,5577.000000,184,9,49954.001280,2363.214566,hint,lora,180 +on5,0,0,28,1,0,2030,5040.000000,184,4,42753.001280,2162.975181,hint,lora,180 +on3,0,0,27,1,0,2181,4860.000000,184,4,45231.001280,2018.895181,hint,lora,180 +on1,0,0,24,1,0,189,4320.000000,184,0,6354.001280,1753.600410,hint,lora,180 +on10,0,0,28,0,0,4545,5040.000000,184,4,-1.000000,2061.647181,hint,lora,180 +on6,0,0,31,1,0,3792,5809.000000,184,11,71302.001280,2479.871386,hint,lora,180 +on4,0,0,30,0,0,4596,5549.000000,184,7,-1.000000,2314.958976,hint,lora,180 +on12,0,0,26,1,0,1391,4680.000000,184,2,29543.001280,2009.007590,hint,lora,180 +on11,0,0,27,1,0,1638,4860.000000,184,3,34802.001280,2043.824205,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,184,0,-1.000000,2087.235277,hint,lora,180 +on8,0,0,24,1,0,1085,4320.000000,184,0,22574.001280,1781.824205,hint,lora,180 +on10,0,0,31,1,0,2256,5626.000000,185,9,49187.001280,2465.182771,hint,lora,180 +on2,0,0,31,1,0,2305,5580.000000,185,7,45898.001280,2354.637747,hint,lora,180 +on3,0,0,26,1,0,640,4680.000000,185,2,14221.002560,1898.544205,hint,lora,180 +on4,0,0,29,1,0,1685,5220.000000,185,6,29351.001280,2183.006976,hint,lora,180 +on9,0,0,27,1,0,1834,4860.000000,185,3,32870.001280,1990.192000,hint,lora,180 +on11,0,0,26,1,0,277,4680.000000,185,2,8673.001280,1952.544205,hint,lora,180 +on8,0,0,30,1,0,2254,5400.000000,185,6,38312.001280,2244.686976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,185,0,-1.000000,2121.089024,hint,lora,180 +on12,0,0,26,1,0,1308,4680.000000,185,2,26930.001280,1934.463795,hint,lora,180 +on5,0,0,26,1,0,774,4680.000000,185,2,19574.001280,1973.711590,hint,lora,180 +on7,0,0,26,1,0,791,4680.000000,185,2,16340.001280,1911.183795,hint,lora,180 +on6,0,0,26,1,0,1080,4680.000000,185,2,24261.001280,1919.295590,hint,lora,180 +on1,0,0,31,1,0,2324,5580.000000,185,7,42763.001280,2366.542771,hint,lora,180 +on3,0,0,25,1,0,1139,4563.000000,186,2,25926.001280,1889.968410,hint,lora,180 +on9,0,0,29,1,0,2054,5220.000000,186,5,40474.001280,2233.566771,hint,lora,180 +on12,0,0,34,1,0,3037,6120.000000,186,11,48026.001280,2600.110362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,186,0,-1.000000,2126.020506,hint,lora,180 +on6,0,0,25,1,0,1499,4614.000000,186,2,33866.001280,1907.728000,hint,lora,180 +on2,0,0,26,1,0,994,4680.000000,186,2,18968.001280,1904.704000,hint,lora,180 +on5,0,0,27,1,0,1169,4860.000000,186,3,22752.001280,2020.687795,hint,lora,180 +on8,0,0,25,1,0,713,4500.000000,186,2,17954.001280,1904.688614,hint,lora,180 +on1,0,0,25,1,0,395,4500.000000,186,1,12228.001280,1941.664205,hint,lora,180 +on7,0,0,29,1,0,2105,5220.000000,186,5,39341.001280,2159.087181,hint,lora,180 +on11,0,0,26,1,0,3540,4680.000000,186,2,72829.001280,1957.439590,hint,lora,180 +on4,0,0,27,1,0,2310,4933.000000,186,4,44404.001280,2067.134157,hint,lora,180 +on10,0,0,26,1,0,1381,4680.000000,186,2,30872.001280,1936.960000,hint,lora,180 +on1,0,0,30,1,0,1663,5400.000000,187,6,26030.001280,2214.543386,hint,lora,180 +on8,0,0,28,0,0,4145,5040.000000,187,5,-1.000000,2114.943181,hint,lora,180 +on10,0,0,24,1,0,194,4449.000000,187,1,7024.001280,1808.080000,hint,lora,180 +on12,0,0,32,1,0,2086,5812.000000,187,9,35716.001280,2479.551181,hint,lora,180 +on9,0,0,33,1,0,2696,6215.000000,187,13,48196.001280,2669.213747,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,187,0,-1.000000,2138.211482,hint,lora,180 +on3,0,0,34,1,0,2326,6120.000000,187,10,36446.001280,2564.383590,hint,lora,180 +on4,0,0,35,1,0,2642,6431.000000,187,12,45160.001280,2790.414976,hint,lora,180 +on11,0,0,27,1,0,920,4892.000000,187,4,15698.001280,2067.984000,hint,lora,180 +on2,0,0,28,1,0,1054,5040.000000,187,4,24832.001280,2172.559386,hint,lora,180 +on7,0,0,26,1,0,478,4680.000000,187,2,10703.001280,1932.768205,hint,lora,180 +on6,0,0,28,1,0,1241,5143.000000,187,5,20121.001280,2113.519386,hint,lora,180 +on5,0,0,27,1,0,1710,4860.000000,187,3,30424.001280,1978.447590,hint,lora,180 +on5,0,0,30,1,0,3432,5400.000000,188,7,62775.001280,2241.918976,hint,lora,180 +on8,0,0,26,1,0,1415,4680.000000,188,2,25812.001280,1939.199386,hint,lora,180 +on3,0,0,28,1,0,1030,5040.000000,188,4,20139.001280,2151.968205,hint,lora,180 +on1,0,0,29,1,0,1601,5220.000000,188,6,31345.002560,2220.911386,hint,lora,180 +on9,0,0,27,1,0,1838,4860.000000,188,4,38148.001280,2069.280000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,188,0,-1.000000,2103.748506,hint,lora,180 +on11,0,0,25,1,0,53,4500.000000,188,1,4786.001280,1857.408205,hint,lora,180 +on10,0,0,26,1,0,2621,4695.000000,188,3,60400.001280,1963.648000,hint,lora,180 +on12,0,0,26,1,0,745,4842.000000,188,3,17112.001280,2082.239590,hint,lora,180 +on6,0,0,29,1,0,1291,5220.000000,188,5,24710.001280,2148.223795,hint,lora,180 +on2,0,0,26,1,0,644,4691.000000,188,4,14079.001280,1909.951795,hint,lora,180 +on7,0,0,28,1,0,1492,5047.000000,188,5,34958.001280,2157.808000,hint,lora,180 +on4,0,0,31,1,0,2264,5580.000000,188,8,40197.001280,2339.503386,hint,lora,180 +on2,0,0,26,1,0,1213,4700.000000,189,4,23810.001280,1978.719386,hint,lora,180 +on11,0,0,24,0,0,4163,4320.000000,189,0,-1.000000,1753.280000,hint,lora,180 +on7,0,0,29,0,0,4610,5220.000000,189,5,-1.000000,2136.734362,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,189,0,-1.000000,2057.188710,hint,lora,180 +on6,0,0,28,1,0,1247,5040.000000,189,4,26058.001280,2142.287795,hint,lora,180 +on1,0,0,24,1,0,0,4320.000000,189,0,2990.001280,1753.664205,hint,lora,180 +on5,0,0,26,1,0,412,4680.000000,189,3,7830.001280,1945.088000,hint,lora,180 +on10,0,0,28,1,0,942,5040.000000,189,4,16575.001280,2098.559386,hint,lora,180 +on3,0,0,30,1,0,1991,5496.000000,189,7,35632.001280,2314.926976,hint,lora,180 +on4,0,0,24,1,0,198,4320.000000,189,0,6665.001280,1831.840410,hint,lora,180 +on9,0,0,26,1,0,936,4680.000000,189,2,19529.001280,1918.304000,hint,lora,180 +on12,0,0,28,1,0,2130,5040.000000,189,5,38629.001280,2084.799590,hint,lora,180 +on8,0,0,25,1,0,508,4500.000000,189,1,12597.001280,1864.864410,hint,lora,180 +on11,0,0,25,1,0,485,4500.000000,190,1,11352.001280,1854.240819,hint,lora,180 +on8,0,0,32,1,0,2304,5823.000000,190,9,49464.001280,2593.486771,hint,lora,180 +on10,0,0,30,1,0,1983,5499.000000,190,7,40281.001280,2365.310566,hint,lora,180 +on7,0,0,25,1,0,182,4500.000000,190,1,7596.001280,1918.959795,hint,lora,180 +on3,0,0,30,0,0,4419,5466.000000,190,7,-1.000000,2309.406566,hint,lora,180 +on12,0,0,27,1,0,1448,4860.000000,190,4,39212.001280,2129.999386,hint,lora,180 +on9,0,0,26,1,0,756,4724.000000,190,3,16254.001280,1942.303181,hint,lora,180 +on4,0,0,25,1,0,798,4500.000000,190,1,18782.001280,1863.200000,hint,lora,180 +on2,0,0,28,1,0,1250,5040.000000,190,4,26563.001280,2148.878771,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,190,0,-1.000000,2111.105229,hint,lora,180 +on1,0,0,27,1,0,2651,4935.000000,190,5,50813.001280,2034.542976,hint,lora,180 +on6,0,0,29,1,0,2591,5220.000000,190,5,45666.001280,2166.830771,hint,lora,180 +on5,0,0,25,1,0,1069,4639.000000,190,2,23315.002560,1931.199795,hint,lora,180 +on7,0,0,25,0,0,4153,4500.000000,191,4,-1.000000,1846.847590,hint,lora,180 +on11,0,0,25,1,0,659,4500.000000,191,1,12933.001280,1830.336000,hint,lora,180 +on8,0,0,25,1,0,1044,4628.000000,191,2,19186.001280,1881.760205,hint,lora,180 +on6,0,0,26,0,0,4416,4680.000000,191,2,-1.000000,1891.487590,hint,lora,180 +on4,0,0,30,1,0,2659,5400.000000,191,7,43960.001280,2205.935386,hint,lora,180 +on0,1,8,24,0,0,0,4320.000000,191,0,-1.000000,2085.475072,hint,lora,180 +on5,0,0,28,1,0,1733,5040.000000,191,4,32968.001280,2104.144205,hint,lora,180 +on10,0,0,25,0,0,4245,4500.000000,191,1,-1.000000,1855.999590,hint,lora,180 +on2,0,0,31,1,0,2271,5713.000000,191,8,37333.001280,2402.079386,hint,lora,180 +on9,0,0,26,1,0,1520,4685.000000,191,3,30046.001280,1968.591795,hint,lora,180 +on12,0,0,30,1,0,2457,5779.000000,191,9,40913.001280,2470.576205,hint,lora,180 +on3,0,0,26,1,0,1121,4680.000000,191,2,24039.001280,1903.519795,hint,lora,180 +on1,0,0,28,0,0,3888,5064.000000,191,5,-1.000000,2191.359386,hint,lora,180 +on7,0,0,26,1,0,2003,4680.000000,192,2,40829.001280,1929.072000,hint,lora,180 +on12,0,0,30,0,0,4567,5400.000000,192,6,-1.000000,2234.830362,hint,lora,180 +on9,0,0,31,1,0,3538,5580.000000,192,7,70744.001280,2410.973952,hint,lora,180 +on8,0,0,27,1,0,3374,4860.000000,192,3,65183.001280,2007.360000,hint,lora,180 +on6,0,0,30,1,0,3116,5400.000000,192,6,62018.001280,2274.223181,hint,lora,180 +on4,0,0,35,1,0,4441,6300.000000,192,11,76236.001280,2712.494362,hint,lora,180 +on5,0,0,28,1,0,2422,5040.000000,192,4,49109.001280,2127.807590,hint,lora,180 +on2,0,0,27,1,0,2277,4860.000000,192,3,44413.001280,2009.392000,hint,lora,180 +on10,0,0,28,1,0,2569,5040.000000,192,4,54206.001280,2171.263590,hint,lora,180 +on3,0,0,27,1,0,3365,5033.000000,192,6,75213.001280,2180.270976,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,192,0,-1.000000,2157.824410,hint,lora,180 +on11,0,0,30,1,0,3072,5400.000000,192,6,58787.001280,2300.382976,hint,lora,180 +on1,0,0,28,1,0,2525,5040.000000,192,4,51431.001280,2143.327181,hint,lora,180 +on9,0,0,26,1,0,1319,4680.000000,193,2,28671.001280,1943.503590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,193,0,-1.000000,2168.354048,hint,lora,180 +on8,0,0,25,1,0,1188,4500.000000,193,1,25177.001280,1875.216205,hint,lora,180 +on6,0,0,26,1,0,1026,4680.000000,193,2,18833.001280,1927.519795,hint,lora,180 +on12,0,0,29,1,0,2014,5338.000000,193,8,42225.001280,2276.382976,hint,lora,180 +on10,0,0,27,1,0,2374,4896.000000,193,4,49735.001280,2041.919386,hint,lora,180 +on3,0,0,29,1,0,1705,5220.000000,193,5,30154.001280,2186.719590,hint,lora,180 +on7,0,0,24,1,0,360,4320.000000,193,0,9799.001280,1781.984410,hint,lora,180 +on11,0,0,29,1,0,2384,5290.000000,193,7,46058.001280,2223.151386,hint,lora,180 +on4,0,0,26,1,0,2744,4680.000000,193,2,56770.001280,1953.887590,hint,lora,180 +on1,0,0,30,1,0,2515,5437.000000,193,7,50777.001280,2350.447795,hint,lora,180 +on5,0,0,31,0,0,4694,5707.000000,193,8,-1.000000,2405.086362,hint,lora,180 +on2,0,0,25,1,0,752,4597.000000,193,3,15317.001280,1889.679590,hint,lora,180 +on12,0,0,28,1,0,2800,5040.000000,194,4,51221.001280,2107.887386,hint,lora,180 +on11,0,0,24,1,0,1080,4320.000000,194,0,23258.001280,1776.704205,hint,lora,180 +on4,0,0,31,1,0,2771,5580.000000,194,7,47172.001280,2344.798976,hint,lora,180 +on10,0,0,25,1,0,2837,4684.000000,194,3,57996.001280,1951.375590,hint,lora,180 +on8,0,0,28,1,0,4035,5040.000000,194,4,77162.001280,2080.686976,hint,lora,180 +on6,0,0,27,1,0,1937,4947.000000,194,5,36661.001280,2096.928000,hint,lora,180 +on1,0,0,25,1,0,1242,4500.000000,194,1,28103.001280,1872.000000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,194,0,-1.000000,2143.586662,hint,lora,180 +on2,0,0,29,1,0,3334,5233.000000,194,6,62175.001280,2218.815386,hint,lora,180 +on3,0,0,25,1,0,1701,4587.000000,194,2,35800.001280,1901.071590,hint,lora,180 +on7,0,0,27,1,0,2067,4860.000000,194,3,42158.001280,1997.119590,hint,lora,180 +on9,0,0,31,1,0,3562,5580.000000,194,9,65777.001280,2375.454566,hint,lora,180 +on5,0,0,28,1,0,2379,5040.000000,194,5,46160.001280,2103.615181,hint,lora,180 +on9,0,0,26,1,0,3755,4775.000000,195,3,79860.001280,2010.671590,hint,lora,180 +on10,0,0,26,1,0,1177,4854.000000,195,3,22322.001280,2006.527181,hint,lora,180 +on5,0,0,26,1,0,1085,4680.000000,195,2,20896.001280,1907.359795,hint,lora,180 +on1,0,0,28,1,0,1579,5040.000000,195,4,25786.001280,2073.552205,hint,lora,180 +on7,0,0,24,1,0,454,4445.000000,195,1,12022.001280,1838.704000,hint,lora,180 +on12,0,0,25,1,0,1439,4500.000000,195,1,29556.001280,1828.640000,hint,lora,180 +on11,0,0,25,1,0,842,4500.000000,195,1,17789.001280,1856.224000,hint,lora,180 +on3,0,0,30,1,0,2028,5400.000000,195,6,45852.001280,2342.526157,hint,lora,180 +on8,0,0,27,1,0,1709,5075.000000,195,5,32816.001280,2165.326771,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,195,0,-1.000000,2120.546458,hint,lora,180 +on2,0,0,25,0,0,4117,4634.000000,195,3,-1.000000,1939.583590,hint,lora,180 +on6,0,0,31,1,0,2400,5580.000000,195,7,43117.001280,2340.431590,hint,lora,180 +on4,0,0,29,1,0,2374,5220.000000,195,6,50952.001280,2283.423386,hint,lora,180 +on3,0,0,28,1,0,1650,5071.000000,196,5,39559.001280,2175.966976,hint,lora,180 +on10,0,0,28,1,0,2023,5040.000000,196,5,40436.001280,2145.439181,hint,lora,180 +on9,0,0,26,1,0,2885,4680.000000,196,2,55891.001280,1946.127795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,196,0,-1.000000,2054.052301,hint,lora,180 +on12,0,0,28,1,0,1743,5040.000000,196,4,34902.001280,2104.623795,hint,lora,180 +on4,0,0,32,0,0,4312,5909.000000,196,10,-1.000000,2569.342566,hint,lora,180 +on11,0,0,27,1,0,1513,4860.000000,196,3,30985.001280,2035.647795,hint,lora,180 +on2,0,0,25,1,0,332,4500.000000,196,1,8021.001280,1858.576410,hint,lora,180 +on7,0,0,26,1,0,983,4680.000000,196,2,20401.001280,1937.920410,hint,lora,180 +on8,0,0,25,1,0,458,4500.000000,196,2,11541.001280,1895.584410,hint,lora,180 +on5,0,0,25,1,0,766,4500.000000,196,1,17069.001280,1841.920205,hint,lora,180 +on6,0,0,27,1,0,1451,4860.000000,196,3,25938.002560,1975.519590,hint,lora,180 +on1,0,0,26,1,0,1115,4680.000000,196,2,24325.001280,1941.008205,hint,lora,180 +on6,0,0,26,1,0,2530,4680.000000,197,2,49829.001280,1939.903795,hint,lora,180 +on10,0,0,26,1,0,3120,4737.000000,197,3,67914.001280,2017.520205,hint,lora,180 +on8,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,hint,lora,180 +on11,0,0,27,1,0,1734,4860.000000,197,3,36815.001280,2106.240000,hint,lora,180 +on7,0,0,25,1,0,1526,4500.000000,197,1,30018.001280,1857.551795,hint,lora,180 +on1,0,0,25,1,0,1292,4500.000000,197,1,28677.001280,1832.224410,hint,lora,180 +on4,0,0,24,0,0,4110,4320.000000,197,0,-1.000000,1761.920000,hint,lora,180 +on3,0,0,26,1,0,707,4680.000000,197,2,16034.001280,1917.823590,hint,lora,180 +on9,0,0,29,1,0,2217,5220.000000,197,6,45248.001280,2303.551590,hint,lora,180 +on2,0,0,25,1,0,495,4500.000000,197,1,12445.001280,1831.535590,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,197,0,-1.000000,2107.971686,hint,lora,180 +on5,0,0,25,1,0,373,4500.000000,197,1,10297.001280,1865.568000,hint,lora,180 +on12,0,0,28,1,0,2742,5040.000000,197,5,53539.001280,2098.287795,hint,lora,180 +on2,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,hint,lora,180 +on5,0,0,26,1,0,2489,4680.000000,198,3,51847.602560,1962.512000,hint,lora,180 +on9,0,0,25,1,0,1130,4609.000000,198,2,30769.001280,1988.688410,hint,lora,180 +on4,0,0,25,1,0,368,4500.000000,198,2,9677.001280,1907.583386,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,198,0,-1.000000,2136.933939,hint,lora,180 +on3,0,0,25,1,0,654,4500.000000,198,1,12060.001280,1853.760819,hint,lora,180 +on11,0,0,24,1,0,3104,4320.000000,198,0,74403.001280,1881.600205,hint,lora,180 +on7,0,0,27,1,0,2174,4860.000000,198,4,43982.001280,2070.560000,hint,lora,180 +on6,0,0,25,1,0,3060,4500.000000,198,1,64492.001280,1854.240819,hint,lora,180 +on12,0,0,25,1,0,1535,4500.000000,198,1,34225.001280,1840.623795,hint,lora,180 +on10,0,0,27,1,0,1941,4860.000000,198,4,41375.001280,2021.648000,hint,lora,180 +on8,0,0,24,0,0,4147,4320.000000,198,0,-1.000000,1763.040000,hint,lora,180 +on1,0,0,24,1,0,192,4320.000000,198,0,4549.001280,1781.024614,hint,lora,180 +on9,0,0,30,1,0,2048,5444.000000,199,7,36767.001280,2296.991181,hint,lora,180 +on5,0,0,26,1,0,1382,4680.000000,199,2,31228.001280,1936.703795,hint,lora,180 +on8,0,0,27,1,0,1736,4860.000000,199,3,32608.001280,1989.295590,hint,lora,180 +on12,0,0,25,1,0,1274,4690.000000,199,3,28108.001280,1962.015386,hint,lora,180 +on6,0,0,29,1,0,3133,5350.000000,199,6,59967.001280,2252.094362,hint,lora,180 +on10,0,0,32,1,0,3087,5760.000000,199,9,51105.001280,2415.534771,hint,lora,180 +on11,0,0,28,1,0,2399,5040.000000,199,5,49671.001280,2103.518771,hint,lora,180 +on1,0,0,32,1,0,3054,5812.000000,199,9,56614.001280,2493.102976,hint,lora,180 +on2,0,0,30,1,0,2456,5477.000000,199,8,40435.001280,2303.775386,hint,lora,180 +on4,0,0,24,1,0,794,4323.000000,199,1,21384.001280,1764.720000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,199,0,-1.000000,2161.728819,hint,lora,180 +on7,0,0,29,1,0,2406,5263.000000,199,6,43782.001280,2230.159181,hint,lora,180 +on3,0,0,32,1,0,3442,5760.000000,199,8,62695.001280,2491.821952,hint,lora,180 +on6,0,0,28,1,0,1732,5040.000000,200,4,29007.001280,2092.655181,hint,lora,180 +on4,0,0,26,1,0,496,4680.000000,200,2,11895.001280,1932.271590,hint,lora,180 +on9,0,0,27,1,0,1667,4860.000000,200,4,32567.001280,1997.967590,hint,lora,180 +on1,0,0,27,1,0,1278,4860.000000,200,3,22146.001280,1976.416205,hint,lora,180 +on8,0,0,25,1,0,60,4500.000000,200,1,4696.001280,1871.840410,hint,lora,180 +on11,0,0,24,1,0,377,4320.000000,200,0,8638.001280,1795.200205,hint,lora,180 +on10,0,0,26,1,0,939,4935.000000,200,4,20346.001280,2077.823386,hint,lora,180 +on2,0,0,26,1,0,1720,4680.000000,200,2,37287.001280,2032.608000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,200,0,-1.000000,2080.739072,hint,lora,180 +on7,0,0,27,1,0,1856,4860.000000,200,3,41103.001280,2075.839590,hint,lora,180 +on5,0,0,24,0,0,4211,4320.000000,200,0,-1.000000,1745.600000,hint,lora,180 +on12,0,0,26,1,0,1110,4680.000000,200,2,26656.001280,1981.983386,hint,lora,180 +on3,0,0,25,1,0,397,4525.000000,200,2,16121.001280,1942.143386,hint,lora,180 +on6,0,0,24,1,0,540,4320.000000,1,0,11955.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,330,4450.000000,1,0,4678.000000,1805.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,1,0,18409.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2394,4354.000000,1,0,47139.000000,1767.200000,extended,lora,180 +on0,1,11,24,0,0,0,4877.000000,1,0,-1.000000,2232.400000,extended,lora,180 +on7,0,0,24,1,0,1080,4320.000000,1,0,22756.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3215,4455.000000,1,0,64274.000000,1807.600000,extended,lora,180 +on1,0,0,24,1,0,773,4353.000000,1,0,16420.000000,1766.800000,extended,lora,180 +on10,0,0,24,1,0,367,4320.000000,1,0,8378.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1440,4320.000000,1,0,29352.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,314,4434.000000,1,0,4518.000000,1799.200000,extended,lora,180 +on5,0,0,24,1,0,2160,4320.000000,1,0,44273.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,859,4439.000000,2,0,16497.000000,1801.200000,extended,lora,180 +on7,0,0,24,1,0,117,4417.000000,2,0,3083.000000,1792.400000,extended,lora,180 +on2,0,0,24,1,0,995,4395.000000,2,0,20178.000000,1783.600000,extended,lora,180 +on12,0,0,24,1,0,2125,4445.000000,2,0,42867.000000,1803.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,2160,4320.000000,2,0,45929.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,900,4320.000000,2,0,20338.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,509,4449.000000,2,0,7608.000000,1805.200000,extended,lora,180 +on5,0,0,24,1,0,106,4406.000000,2,0,3243.000000,1788.000000,extended,lora,180 +on4,0,0,24,1,0,2880,4320.000000,2,0,59989.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4771.000000,2,0,-1.000000,2190.000000,extended,lora,180 +on10,0,0,24,1,0,3060,4320.000000,2,0,62275.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2340,4320.000000,2,0,48901.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,3,0,22698.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4768.000000,3,0,-1.000000,2188.800000,extended,lora,180 +on4,0,0,24,1,0,421,4361.000000,3,0,9831.000000,1770.000000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,3,0,16532.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,63,4363.000000,3,0,1348.000000,1770.800000,extended,lora,180 +on7,0,0,24,1,0,1800,4320.000000,3,0,36999.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3545,4425.000000,3,0,70754.000000,1795.600000,extended,lora,180 +on10,0,0,24,1,0,157,4457.000000,3,0,1508.000000,1808.400000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,900,4320.000000,3,0,18977.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,580,4340.000000,3,0,14225.000000,1761.600000,extended,lora,180 +on5,0,0,24,1,0,2520,4320.000000,3,0,53574.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3388,4448.000000,3,0,66139.000000,1804.800000,extended,lora,180 +on12,0,0,24,1,0,564,4324.000000,4,0,10984.000000,1755.200000,extended,lora,180 +on10,0,0,24,1,0,2700,4320.000000,4,0,56247.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,4,0,10476.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2994,4414.000000,4,0,59423.000000,1791.200000,extended,lora,180 +on7,0,0,24,1,0,2181,4321.000000,4,0,45929.000000,1754.000000,extended,lora,180 +on1,0,0,24,1,0,590,4350.000000,4,0,11144.000000,1765.600000,extended,lora,180 +on5,0,0,24,1,0,720,4320.000000,4,0,17841.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,120,4420.000000,4,0,1268.000000,1793.600000,extended,lora,180 +on6,0,0,24,1,0,1067,4467.000000,4,0,18491.000000,1812.400000,extended,lora,180 +on4,0,0,24,1,0,2964,4384.000000,4,0,59263.000000,1779.200000,extended,lora,180 +on0,1,12,24,0,0,0,4945.000000,4,0,-1.000000,2285.200000,extended,lora,180 +on8,0,0,24,1,0,12,4320.000000,4,0,1108.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,3060,4320.000000,4,0,64011.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,59,4359.000000,5,0,2228.000000,1769.200000,extended,lora,180 +on0,1,10,24,0,0,0,4753.000000,5,0,-1.000000,2157.200000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,5,0,14375.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,137,4437.000000,5,0,2388.000000,1800.400000,extended,lora,180 +on9,0,0,24,1,0,2829,4429.000000,5,0,55274.000000,1797.200000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,5,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,5,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,199,4320.000000,5,0,5376.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,768,4348.000000,5,0,16347.000000,1764.800000,extended,lora,180 +on6,0,0,24,1,0,787,4367.000000,5,0,16507.000000,1772.400000,extended,lora,180 +on12,0,0,24,1,0,1620,4320.000000,5,0,35498.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2154,4474.000000,5,0,42261.000000,1815.200000,extended,lora,180 +on4,0,0,24,1,0,1553,4413.000000,5,0,32126.000000,1790.800000,extended,lora,180 +on8,0,0,24,1,0,1980,4320.000000,6,0,41374.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1177,4397.000000,6,0,24519.000000,1784.400000,extended,lora,180 +on5,0,0,24,1,0,651,4411.000000,6,0,11782.000000,1790.000000,extended,lora,180 +on6,0,0,24,1,0,1620,4320.000000,6,0,33243.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3780,4320.000000,6,0,77963.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,930,4330.000000,6,0,20220.000000,1757.600000,extended,lora,180 +on0,1,12,24,0,0,0,4830.000000,6,0,-1.000000,2239.200000,extended,lora,180 +on2,0,0,24,1,0,3060,4320.000000,6,0,63298.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,6,0,17919.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,6,0,29136.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,28,4328.000000,6,0,2702.000000,1756.800000,extended,lora,180 +on9,0,0,24,1,0,1155,4375.000000,6,0,24679.000000,1775.600000,extended,lora,180 +on12,0,0,24,1,0,193,4320.000000,6,0,4019.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,941,4341.000000,7,0,21614.000000,1762.000000,extended,lora,180 +on10,0,0,24,1,0,1800,4320.000000,7,0,38138.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3600,4320.000000,7,0,72498.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3240,4320.000000,7,0,67412.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2181,4321.000000,7,0,43947.000000,1754.000000,extended,lora,180 +on4,0,0,24,1,0,299,4419.000000,7,0,4999.000000,1793.200000,extended,lora,180 +on12,0,0,24,1,0,16,4320.000000,7,0,450.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,950,4350.000000,7,0,21454.000000,1765.600000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,7,0,16636.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1154,4374.000000,7,0,22514.000000,1775.200000,extended,lora,180 +on11,0,0,24,1,0,203,4323.000000,7,0,5159.000000,1754.800000,extended,lora,180 +on1,0,0,24,1,0,1579,4439.000000,7,0,32277.000000,1801.200000,extended,lora,180 +on0,1,12,24,0,0,0,4826.000000,7,0,-1.000000,2237.600000,extended,lora,180 +on7,0,0,24,1,0,720,4320.000000,8,0,14959.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,547,4320.000000,8,0,13380.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,277,4397.000000,8,0,5591.000000,1784.400000,extended,lora,180 +on12,0,0,24,1,0,706,4466.000000,8,0,13540.000000,1812.000000,extended,lora,180 +on0,1,12,24,0,0,0,4914.000000,8,0,-1.000000,2272.800000,extended,lora,180 +on6,0,0,24,1,0,900,4320.000000,8,0,20414.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1297,4337.000000,8,0,28775.000000,1760.400000,extended,lora,180 +on5,0,0,24,1,0,3847,4367.000000,8,0,78518.000000,1772.400000,extended,lora,180 +on4,0,0,24,1,0,2729,4329.000000,8,0,56371.000000,1757.200000,extended,lora,180 +on1,0,0,24,1,0,1620,4320.000000,8,0,33823.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2880,4320.000000,8,0,59314.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3,4320.000000,8,0,1816.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2290,4430.000000,8,0,46773.000000,1797.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,360,4320.000000,9,0,9980.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,815,4395.000000,9,0,17419.000000,1783.600000,extended,lora,180 +on5,0,0,24,1,0,41,4341.000000,9,0,2176.000000,1762.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,106,4406.000000,9,0,2336.000000,1788.000000,extended,lora,180 +on7,0,0,24,1,0,2340,4320.000000,9,0,48647.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,817,4397.000000,9,0,17579.000000,1784.400000,extended,lora,180 +on11,0,0,24,1,0,540,4320.000000,9,0,11568.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,extended,lora,180 +on0,1,8,24,0,0,0,5059.000000,9,0,-1.000000,2228.400000,extended,lora,180 +on9,0,0,24,1,0,3960,4320.000000,9,0,81826.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1025,4425.000000,10,0,20546.000000,1795.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1237,4457.000000,10,0,23488.000000,1808.400000,extended,lora,180 +on5,0,0,24,1,0,2724,4324.000000,10,0,54863.000000,1755.200000,extended,lora,180 +on7,0,0,24,1,0,120,4420.000000,10,0,2096.000000,1793.600000,extended,lora,180 +on1,0,0,24,1,0,671,4431.000000,10,0,13515.000000,1798.000000,extended,lora,180 +on11,0,0,24,1,0,1914,4414.000000,10,0,37018.000000,1791.200000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,180,4320.000000,10,0,5433.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2160,4320.000000,10,0,45118.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4556.000000,10,0,-1.000000,2078.400000,extended,lora,180 +on6,0,0,24,1,0,729,4320.000000,10,0,14855.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,4,4320.000000,10,0,2256.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,11,0,6006.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,3060,4320.000000,11,0,62535.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,3719,4419.000000,11,0,74868.000000,1793.200000,extended,lora,180 +on0,1,10,24,0,0,0,4779.000000,11,0,-1.000000,2167.600000,extended,lora,180 +on1,0,0,24,1,0,876,4456.000000,11,0,17077.000000,1808.000000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,11,0,12529.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2210,4350.000000,11,0,46426.000000,1765.600000,extended,lora,180 +on7,0,0,24,1,0,427,4367.000000,11,0,9097.000000,1772.400000,extended,lora,180 +on10,0,0,24,1,0,2520,4320.000000,11,0,51726.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,435,4375.000000,11,0,9257.000000,1775.600000,extended,lora,180 +on11,0,0,24,1,0,1416,4456.000000,11,0,27518.000000,1808.000000,extended,lora,180 +on11,0,0,24,1,0,2264,4404.000000,12,0,46261.000000,1787.200000,extended,lora,180 +on6,0,0,24,1,0,900,4320.000000,12,0,21217.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,101,4401.000000,12,0,1351.000000,1786.000000,extended,lora,180 +on1,0,0,24,1,0,2340,4320.000000,12,0,48090.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,12,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,4173,4333.000000,12,0,84210.000000,1758.800000,extended,lora,180 +on0,1,11,24,0,0,0,4901.000000,12,0,-1.000000,2242.000000,extended,lora,180 +on7,0,0,24,1,0,448,4388.000000,12,0,8010.000000,1780.800000,extended,lora,180 +on2,0,0,24,1,0,1901,4401.000000,12,0,38757.000000,1786.000000,extended,lora,180 +on10,0,0,24,1,0,663,4423.000000,12,0,13861.000000,1794.800000,extended,lora,180 +on8,0,0,24,1,0,1080,4320.000000,12,0,23199.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,61,4361.000000,12,0,1191.000000,1770.000000,extended,lora,180 +on3,0,0,24,1,0,679,4439.000000,12,0,14021.000000,1801.200000,extended,lora,180 +on0,1,9,24,0,0,0,4851.000000,13,0,-1.000000,2170.800000,extended,lora,180 +on2,0,0,24,1,0,137,4437.000000,13,0,2638.000000,1800.400000,extended,lora,180 +on1,0,0,24,1,0,1230,4450.000000,13,0,23553.000000,1805.600000,extended,lora,180 +on8,0,0,24,1,0,155,4455.000000,13,0,2478.000000,1807.600000,extended,lora,180 +on5,0,0,24,1,0,1155,4375.000000,13,0,23393.000000,1775.600000,extended,lora,180 +on9,0,0,24,1,0,2880,4320.000000,13,0,58085.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2397,4357.000000,13,0,47595.000000,1768.400000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,2520,4320.000000,13,0,53720.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3408,4468.000000,13,0,65400.000000,1812.800000,extended,lora,180 +on11,0,0,24,1,0,540,4320.000000,13,0,12118.000000,1753.600000,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,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,775,4355.000000,14,0,14930.000000,1767.600000,extended,lora,180 +on7,0,0,24,1,0,360,4320.000000,14,0,8772.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,14,0,30446.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1800,4320.000000,14,0,38044.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2340,4320.000000,14,0,48033.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,835,4415.000000,14,0,15090.000000,1791.600000,extended,lora,180 +on8,0,0,24,1,0,2880,4320.000000,14,0,60032.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,900,4320.000000,14,0,19548.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,75,4375.000000,14,0,3023.000000,1775.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,extended,lora,180 +on0,1,11,24,0,0,0,5003.000000,14,0,-1.000000,2282.800000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,14,0,22226.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,117,4417.000000,14,0,3183.000000,1792.400000,extended,lora,180 +on0,1,12,24,0,0,0,5132.000000,15,0,-1.000000,2360.000000,extended,lora,180 +on11,0,0,24,1,0,993,4393.000000,15,0,19144.000000,1782.800000,extended,lora,180 +on4,0,0,24,1,0,1217,4437.000000,15,0,25032.000000,1800.400000,extended,lora,180 +on1,0,0,24,1,0,1651,4331.000000,15,0,33025.000000,1758.000000,extended,lora,180 +on8,0,0,24,1,0,1129,4349.000000,15,0,25192.000000,1765.200000,extended,lora,180 +on3,0,0,24,1,0,275,4395.000000,15,0,5971.000000,1783.600000,extended,lora,180 +on5,0,0,24,1,0,658,4418.000000,15,0,13744.000000,1792.800000,extended,lora,180 +on10,0,0,24,1,0,2700,4320.000000,15,0,55195.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,276,4396.000000,15,0,6131.000000,1784.000000,extended,lora,180 +on2,0,0,24,1,0,611,4371.000000,15,0,13584.000000,1774.000000,extended,lora,180 +on12,0,0,24,1,0,3431,4320.000000,15,0,69105.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,720,4320.000000,15,0,17952.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1015,4415.000000,15,0,19304.000000,1791.600000,extended,lora,180 +on11,0,0,24,1,0,57,4357.000000,16,0,2987.000000,1768.400000,extended,lora,180 +on5,0,0,24,1,0,180,4320.000000,16,0,4551.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1423,4463.000000,16,0,28277.000000,1810.800000,extended,lora,180 +on1,0,0,24,1,0,720,4320.000000,16,0,16131.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1795,4475.000000,16,0,35476.000000,1815.600000,extended,lora,180 +on4,0,0,24,1,0,900,4320.000000,16,0,18576.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4798.000000,16,0,-1.000000,2226.400000,extended,lora,180 +on9,0,0,24,1,0,3254,4320.000000,16,0,66410.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3138,4378.000000,16,0,61993.000000,1776.800000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,16,0,21849.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1498,4358.000000,16,0,29707.000000,1768.800000,extended,lora,180 +on6,0,0,24,1,0,26,4326.000000,16,0,2827.000000,1756.000000,extended,lora,180 +on3,0,0,24,1,0,1126,4346.000000,16,0,22009.000000,1764.000000,extended,lora,180 +on2,0,0,24,1,0,2120,4440.000000,17,0,41622.000000,1801.600000,extended,lora,180 +on8,0,0,24,1,0,117,4417.000000,17,0,1790.000000,1792.400000,extended,lora,180 +on0,1,11,24,0,0,0,4640.000000,17,0,-1.000000,2137.600000,extended,lora,180 +on5,0,0,24,1,0,864,4444.000000,17,0,16444.000000,1803.200000,extended,lora,180 +on4,0,0,24,1,0,878,4458.000000,17,0,16604.000000,1808.800000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,595,4355.000000,17,0,12777.000000,1767.600000,extended,lora,180 +on3,0,0,24,1,0,1800,4320.000000,17,0,37746.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,514,4454.000000,17,0,8811.000000,1807.200000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,17,0,33234.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,903,4320.000000,17,0,21479.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1490,4350.000000,17,0,30322.000000,1765.600000,extended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,17,0,25940.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,611,4371.000000,18,0,13130.000000,1774.000000,extended,lora,180 +on12,0,0,24,1,0,1401,4441.000000,18,0,25817.000000,1802.000000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,18,0,664.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4809.000000,18,0,-1.000000,2205.200000,extended,lora,180 +on1,0,0,24,1,0,4140,4320.000000,18,0,84346.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2700,4320.000000,18,0,57462.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,859,4439.000000,18,0,15839.000000,1801.200000,extended,lora,180 +on8,0,0,24,1,0,472,4412.000000,18,0,9054.000000,1790.400000,extended,lora,180 +on2,0,0,24,1,0,1145,4365.000000,18,0,22662.000000,1771.600000,extended,lora,180 +on6,0,0,24,1,0,710,4470.000000,18,0,13290.000000,1813.600000,extended,lora,180 +on3,0,0,24,1,0,354,4474.000000,18,0,4110.000000,1815.200000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,18,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,3060,4320.000000,18,0,62446.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2628,4408.000000,19,0,52443.000000,1788.800000,extended,lora,180 +on2,0,0,24,1,0,285,4405.000000,19,0,5713.000000,1787.600000,extended,lora,180 +on1,0,0,24,1,0,301,4421.000000,19,0,5873.000000,1794.000000,extended,lora,180 +on10,0,0,24,1,0,2871,4471.000000,19,0,55624.000000,1814.000000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,19,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1606,4466.000000,19,0,29886.000000,1812.000000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,19,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,2427,4387.000000,19,0,49652.000000,1780.400000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,19,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,1915,4415.000000,19,0,36502.000000,1791.600000,extended,lora,180 +on0,1,9,24,0,0,0,4584.000000,19,0,-1.000000,2064.000000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,19,0,3184.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2036,4356.000000,19,0,40060.000000,1768.000000,extended,lora,180 +on1,0,0,24,1,0,403,4343.000000,20,0,8303.000000,1762.800000,extended,lora,180 +on8,0,0,24,1,0,2745,4345.000000,20,0,56352.000000,1763.600000,extended,lora,180 +on11,0,0,24,1,0,541,4320.000000,20,0,12994.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,800,4380.000000,20,0,14964.000000,1777.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,2096,4416.000000,20,0,42901.000000,1792.000000,extended,lora,180 +on6,0,0,24,1,0,666,4426.000000,20,0,13154.000000,1796.000000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,20,0,4885.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4766.000000,20,0,-1.000000,2162.400000,extended,lora,180 +on4,0,0,24,1,0,512,4452.000000,20,0,8143.000000,1806.400000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,20,0,26148.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,2730,4330.000000,20,0,56192.000000,1757.600000,extended,lora,180 +on12,0,0,24,1,0,2471,4431.000000,21,0,50266.000000,1798.000000,extended,lora,180 +on9,0,0,24,1,0,3780,4320.000000,21,0,78723.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1835,4335.000000,21,0,39308.000000,1759.600000,extended,lora,180 +on8,0,0,24,1,0,541,4320.000000,21,0,12321.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,360,4320.000000,21,0,8646.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1323,4363.000000,21,0,28238.000000,1770.800000,extended,lora,180 +on10,0,0,24,1,0,2520,4320.000000,21,0,53501.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,134,4434.000000,21,0,825.000000,1799.200000,extended,lora,180 +on11,0,0,24,1,0,1404,4444.000000,21,0,28398.000000,1803.200000,extended,lora,180 +on2,0,0,24,1,0,900,4320.000000,21,0,21181.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,694,4454.000000,21,0,12481.000000,1807.200000,extended,lora,180 +on0,1,12,24,0,0,0,4992.000000,21,0,-1.000000,2304.000000,extended,lora,180 +on3,0,0,24,1,0,2475,4435.000000,21,0,50426.000000,1799.600000,extended,lora,180 +on5,0,0,24,1,0,231,4351.000000,22,0,6093.000000,1766.000000,extended,lora,180 +on9,0,0,24,1,0,3600,4320.000000,22,0,75225.000000,1753.600000,extended,lora,180 +on0,1,8,24,0,0,0,4564.000000,22,0,-1.000000,2030.400000,extended,lora,180 +on10,0,0,24,1,0,360,4320.000000,22,0,9265.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1440,4320.000000,22,0,31393.000000,1753.600000,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,1,4320.000000,22,0,962.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,787,4367.000000,22,0,15287.000000,1772.400000,extended,lora,180 +on4,0,0,24,1,0,1980,4320.000000,22,0,40338.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2520,4320.000000,22,0,51899.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,23,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1980,4320.000000,23,0,41620.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3150,4390.000000,23,0,62858.000000,1781.600000,extended,lora,180 +on11,0,0,24,1,0,156,4456.000000,23,0,3734.000000,1808.000000,extended,lora,180 +on9,0,0,24,1,0,1148,4368.000000,23,0,25078.000000,1772.800000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,23,0,8132.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4709.000000,23,0,-1.000000,2165.200000,extended,lora,180 +on8,0,0,24,1,0,1620,4320.000000,23,0,33281.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,149,4449.000000,23,0,3574.000000,1805.200000,extended,lora,180 +on12,0,0,24,1,0,3703,4403.000000,23,0,72605.000000,1786.800000,extended,lora,180 +on4,0,0,24,1,0,3780,4320.000000,23,0,77092.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1871,4371.000000,23,0,37906.000000,1774.000000,extended,lora,180 +on5,0,0,24,1,0,1440,4320.000000,23,0,30071.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1347,4387.000000,24,0,26899.000000,1780.400000,extended,lora,180 +on2,0,0,24,1,0,353,4473.000000,24,0,5924.000000,1814.800000,extended,lora,180 +on8,0,0,24,1,0,545,4320.000000,24,0,11961.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4786.000000,24,0,-1.000000,2221.600000,extended,lora,180 +on7,0,0,24,1,0,328,4448.000000,24,0,6084.000000,1804.800000,extended,lora,180 +on6,0,0,24,1,0,3960,4320.000000,24,0,80204.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,747,4327.000000,24,0,15618.000000,1756.400000,extended,lora,180 +on3,0,0,24,1,0,25,4325.000000,24,0,1352.000000,1755.600000,extended,lora,180 +on4,0,0,24,1,0,2160,4320.000000,24,0,46510.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,24,0,23154.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,729,4320.000000,24,0,15778.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,24,0,7678.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3247,4320.000000,24,0,66757.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1440,4320.000000,25,0,30706.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,452,4392.000000,25,0,8947.000000,1782.400000,extended,lora,180 +on0,1,10,24,0,0,0,4658.000000,25,0,-1.000000,2119.200000,extended,lora,180 +on2,0,0,24,1,0,2802,4402.000000,25,0,57440.000000,1786.400000,extended,lora,180 +on3,0,0,24,1,0,0,4320.000000,25,0,1511.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,1328,4368.000000,25,0,28263.000000,1772.800000,extended,lora,180 +on7,0,0,24,1,0,3358,4418.000000,25,0,67775.000000,1792.800000,extended,lora,180 +on1,0,0,24,1,0,4118,4458.000000,25,0,81208.000000,1808.800000,extended,lora,180 +on8,0,0,24,1,0,369,4320.000000,25,0,8787.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,25,0,24014.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,25,0,16910.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1098,4320.000000,26,0,22027.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4717.000000,26,0,-1.000000,2168.400000,extended,lora,180 +on8,0,0,24,1,0,418,4358.000000,26,0,9697.000000,1768.800000,extended,lora,180 +on3,0,0,24,1,0,462,4402.000000,26,0,9857.000000,1786.400000,extended,lora,180 +on2,0,0,24,1,0,2293,4433.000000,26,0,46473.000000,1798.800000,extended,lora,180 +on12,0,0,24,1,0,4054,4394.000000,26,0,80500.000000,1783.200000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,26,0,1711.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,26,0,6975.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,610,4370.000000,26,0,14171.000000,1773.600000,extended,lora,180 +on11,0,0,24,1,0,1387,4427.000000,26,0,25928.000000,1796.400000,extended,lora,180 +on7,0,0,24,1,0,1260,4320.000000,26,0,26095.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,26,0,16880.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1440,4320.000000,27,0,29243.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,27,0,12599.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4851.000000,27,0,-1.000000,2222.000000,extended,lora,180 +on10,0,0,24,1,0,181,4320.000000,27,0,4077.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1020,4420.000000,27,0,20083.000000,1793.600000,extended,lora,180 +on4,0,0,24,1,0,3285,4345.000000,27,0,66393.000000,1763.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,27,0,2655.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1162,4382.000000,27,0,23606.000000,1778.400000,extended,lora,180 +on3,0,0,24,1,0,2378,4338.000000,27,0,48000.000000,1760.800000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,27,0,9556.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2001,4321.000000,27,0,40740.000000,1754.000000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,27,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,2517,4477.000000,27,0,47840.000000,1816.400000,extended,lora,180 +on6,0,0,24,1,0,568,4328.000000,28,0,13856.000000,1756.800000,extended,lora,180 +on1,0,0,24,1,0,3060,4320.000000,28,0,62648.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1620,4320.000000,28,0,34858.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,28,0,2557.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3780,4320.000000,28,0,76987.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4923.000000,28,0,-1.000000,2276.400000,extended,lora,180 +on3,0,0,24,1,0,2797,4397.000000,28,0,56897.000000,1784.400000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,28,0,28145.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,348,4468.000000,28,0,6357.000000,1812.800000,extended,lora,180 +on5,0,0,24,1,0,4041,4381.000000,28,0,81027.000000,1778.000000,extended,lora,180 +on8,0,0,24,1,0,3240,4320.000000,28,0,68359.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,28,0,23825.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2891,4320.000000,28,0,60348.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1754,4434.000000,29,0,34013.000000,1799.200000,extended,lora,180 +on12,0,0,24,1,0,1260,4320.000000,29,0,25758.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1685,4365.000000,29,0,33853.000000,1771.600000,extended,lora,180 +on3,0,0,24,1,0,733,4320.000000,29,0,14831.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3780,4320.000000,29,0,79174.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1943,4443.000000,29,0,36395.000000,1802.800000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,29,0,6712.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3240,4320.000000,29,0,65561.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,29,0,14671.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,29,0,2914.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,5024.000000,29,0,-1.000000,2291.200000,extended,lora,180 +on6,0,0,24,1,0,2880,4320.000000,29,0,58002.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1980,4320.000000,30,0,42699.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,30,0,19220.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,540,4320.000000,30,0,11150.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,30,0,15426.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2642,4422.000000,30,0,52812.000000,1794.400000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,30,0,10411.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,30,0,2070.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,30,0,5654.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2593,4373.000000,30,0,52972.000000,1774.800000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,30,0,34490.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4807.000000,30,0,-1.000000,2230.000000,extended,lora,180 +on11,0,0,24,1,0,1080,4320.000000,30,0,24402.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2865,4465.000000,30,0,55083.000000,1811.600000,extended,lora,180 +on12,0,0,24,1,0,1980,4320.000000,31,0,39778.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4772.000000,31,0,-1.000000,2164.800000,extended,lora,180 +on6,0,0,24,1,0,3240,4320.000000,31,0,66873.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,31,0,7754.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1086,4320.000000,31,0,24393.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2700,4320.000000,31,0,55808.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,62,4362.000000,31,0,882.000000,1770.400000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,31,0,12254.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,4041,4381.000000,31,0,81264.000000,1778.000000,extended,lora,180 +on2,0,0,24,1,0,3728,4428.000000,31,0,75093.000000,1796.800000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,31,0,4920.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2038,4358.000000,32,0,41106.000000,1768.800000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,32,0,16571.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3630,4330.000000,32,0,75453.000000,1757.600000,extended,lora,180 +on12,0,0,24,1,0,0,4320.000000,32,0,1757.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4560.000000,32,0,-1.000000,2131.200000,extended,lora,180 +on4,0,0,24,1,0,1364,4404.000000,32,0,26985.000000,1787.200000,extended,lora,180 +on9,0,0,24,1,0,1729,4409.000000,32,0,34521.000000,1789.200000,extended,lora,180 +on5,0,0,24,1,0,1950,4450.000000,32,0,39254.000000,1805.600000,extended,lora,180 +on7,0,0,24,1,0,960,4360.000000,32,0,18516.000000,1769.600000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,32,0,4319.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3960,4320.000000,32,0,81369.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1583,4443.000000,32,0,29832.000000,1802.800000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,32,0,11048.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,3960,4320.000000,33,0,79946.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1126,4346.000000,33,0,22167.000000,1764.000000,extended,lora,180 +on0,1,10,24,0,0,0,4825.000000,33,0,-1.000000,2186.000000,extended,lora,180 +on10,0,0,24,1,0,404,4344.000000,33,0,9434.000000,1763.200000,extended,lora,180 +on1,0,0,24,1,0,955,4355.000000,33,0,19795.000000,1767.600000,extended,lora,180 +on5,0,0,24,1,0,626,4386.000000,33,0,13905.000000,1780.000000,extended,lora,180 +on2,0,0,24,1,0,617,4377.000000,33,0,13745.000000,1776.400000,extended,lora,180 +on8,0,0,24,1,0,1307,4347.000000,33,0,28735.000000,1764.400000,extended,lora,180 +on3,0,0,24,1,0,385,4325.000000,33,0,9594.000000,1755.600000,extended,lora,180 +on12,0,0,24,1,0,1440,4320.000000,33,0,30032.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,33,0,2128.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,1730,4410.000000,34,0,32902.000000,1789.600000,extended,lora,180 +on11,0,0,24,1,0,1032,4432.000000,34,0,20258.000000,1798.400000,extended,lora,180 +on1,0,0,24,1,0,2660,4440.000000,34,0,53172.000000,1801.600000,extended,lora,180 +on8,0,0,24,1,0,3060,4320.000000,34,0,63798.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3780,4320.000000,34,0,76225.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1966,4466.000000,34,0,36703.000000,1812.000000,extended,lora,180 +on2,0,0,24,1,0,727,4320.000000,34,0,15598.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,907,4320.000000,34,0,20418.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3960,4320.000000,34,0,80873.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1664,4344.000000,34,0,32742.000000,1763.200000,extended,lora,180 +on0,1,11,24,0,0,0,4689.000000,34,0,-1.000000,2157.200000,extended,lora,180 +on12,0,0,24,1,0,1260,4320.000000,34,0,25670.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,180,4320.000000,35,0,6337.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1207,4427.000000,35,0,24668.000000,1796.400000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,35,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,35,0,7679.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,5029.000000,35,0,-1.000000,2293.200000,extended,lora,180 +on3,0,0,24,1,0,270,4390.000000,35,0,6497.000000,1781.600000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,35,0,20372.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,35,0,15543.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3,4320.000000,35,0,3184.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,62,4362.000000,35,0,3344.000000,1770.400000,extended,lora,180 +on7,0,0,24,1,0,1980,4320.000000,35,0,41330.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,654,4414.000000,35,0,11563.000000,1791.200000,extended,lora,180 +on2,0,0,24,1,0,3420,4320.000000,35,0,69651.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2700,4320.000000,36,0,55915.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1260,4320.000000,36,0,27200.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4958.000000,36,0,-1.000000,2239.200000,extended,lora,180 +on12,0,0,24,1,0,1084,4320.000000,36,0,23026.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1234,4454.000000,36,0,23186.000000,1807.200000,extended,lora,180 +on5,0,0,24,1,0,2798,4398.000000,36,0,55737.000000,1784.800000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,0,4320.000000,36,0,1412.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,36,0,4943.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2160,4320.000000,36,0,46132.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,36,0,17373.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1047,4447.000000,36,0,18986.000000,1804.400000,extended,lora,180 +on11,0,0,24,1,0,1101,4321.000000,37,0,24527.000000,1754.000000,extended,lora,180 +on12,0,0,24,1,0,3395,4455.000000,37,0,66141.000000,1807.600000,extended,lora,180 +on6,0,0,24,1,0,532,4472.000000,37,0,9242.000000,1814.400000,extended,lora,180 +on10,0,0,24,1,0,540,4320.000000,37,0,13279.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2543,4323.000000,37,0,53547.000000,1754.800000,extended,lora,180 +on1,0,0,24,1,0,1980,4320.000000,37,0,43011.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4809.000000,37,0,-1.000000,2230.800000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,37,0,2682.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,399,4339.000000,37,0,9402.000000,1761.200000,extended,lora,180 +on8,0,0,24,1,0,1639,4320.000000,37,0,34151.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2334,4474.000000,37,0,45610.000000,1815.200000,extended,lora,180 +on9,0,0,24,1,0,974,4374.000000,37,0,19506.000000,1775.200000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,37,0,36569.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,38,0,20608.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,360,4320.000000,38,0,9526.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,38,0,15134.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1620,4320.000000,38,0,33591.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,202,4322.000000,38,0,3979.000000,1754.400000,extended,lora,180 +on3,0,0,24,1,0,1970,4470.000000,38,0,39096.000000,1813.600000,extended,lora,180 +on5,0,0,24,1,0,3441,4321.000000,38,0,71860.000000,1754.000000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1949,4449.000000,38,0,38936.000000,1805.200000,extended,lora,180 +on7,0,0,24,1,0,2880,4320.000000,38,0,58416.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1169,4389.000000,38,0,23336.000000,1781.200000,extended,lora,180 +on0,1,10,24,0,0,0,4848.000000,38,0,-1.000000,2195.200000,extended,lora,180 +on6,0,0,24,1,0,1975,4475.000000,39,0,39124.000000,1815.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,625,4385.000000,39,0,12663.000000,1779.600000,extended,lora,180 +on8,0,0,24,1,0,810,4390.000000,39,0,17234.000000,1781.600000,extended,lora,180 +on3,0,0,24,1,0,3065,4320.000000,39,0,64176.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3964,4320.000000,39,0,80051.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,725,4320.000000,39,0,17074.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1768,4448.000000,39,0,35916.000000,1804.800000,extended,lora,180 +on4,0,0,24,1,0,2700,4320.000000,39,0,56386.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4673.000000,39,0,-1.000000,2125.200000,extended,lora,180 +on12,0,0,24,1,0,2880,4320.000000,39,0,59241.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,643,4403.000000,39,0,12503.000000,1786.800000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,3138,4378.000000,40,0,63724.000000,1776.800000,extended,lora,180 +on7,0,0,24,1,0,3034,4454.000000,40,0,59998.000000,1807.200000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,40,0,10543.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2581,4361.000000,40,0,53252.000000,1770.000000,extended,lora,180 +on4,0,0,24,1,0,600,4360.000000,40,0,13987.000000,1769.600000,extended,lora,180 +on12,0,0,24,1,0,1205,4425.000000,40,0,23335.000000,1795.600000,extended,lora,180 +on0,1,12,24,0,0,0,4566.000000,40,0,-1.000000,2133.600000,extended,lora,180 +on6,0,0,24,1,0,497,4437.000000,40,0,10380.000000,1800.400000,extended,lora,180 +on11,0,0,24,1,0,72,4372.000000,40,0,3486.000000,1774.400000,extended,lora,180 +on10,0,0,24,1,0,1440,4320.000000,40,0,30892.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,329,4449.000000,40,0,5313.000000,1805.200000,extended,lora,180 +on3,0,0,24,1,0,2077,4397.000000,40,0,42664.000000,1784.400000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,40,0,37129.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,3780,4320.000000,41,0,76896.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1800,4320.000000,41,0,38279.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,41,0,20786.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,125,4425.000000,41,0,1328.000000,1795.600000,extended,lora,180 +on11,0,0,24,1,0,2802,4402.000000,41,0,56749.000000,1786.400000,extended,lora,180 +on4,0,0,24,1,0,787,4367.000000,41,0,17565.000000,1772.400000,extended,lora,180 +on12,0,0,24,1,0,1394,4434.000000,41,0,27642.000000,1799.200000,extended,lora,180 +on0,1,10,24,0,0,0,4768.000000,41,0,-1.000000,2163.200000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,41,0,6728.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,25,4325.000000,41,0,1488.000000,1755.600000,extended,lora,180 +on6,0,0,24,1,0,2792,4392.000000,41,0,56589.000000,1782.400000,extended,lora,180 +on10,0,0,24,1,0,2700,4320.000000,42,0,56433.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,360,4320.000000,42,0,9733.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,278,4398.000000,42,0,4770.000000,1784.800000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,42,0,1276.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3314,4374.000000,42,0,65366.000000,1775.200000,extended,lora,180 +on12,0,0,24,1,0,585,4345.000000,42,0,14212.000000,1763.600000,extended,lora,180 +on11,0,0,24,1,0,1080,4320.000000,42,0,23456.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1323,4363.000000,42,0,27254.000000,1770.800000,extended,lora,180 +on0,1,12,24,0,0,0,4794.000000,42,0,-1.000000,2224.800000,extended,lora,180 +on3,0,0,24,1,0,3646,4346.000000,42,0,75042.000000,1764.000000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,42,0,17954.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2552,4332.000000,42,0,53309.000000,1758.400000,extended,lora,180 +on1,0,0,24,1,0,269,4389.000000,42,0,4930.000000,1781.200000,extended,lora,180 +on6,0,0,24,1,0,611,4371.000000,43,0,11405.000000,1774.000000,extended,lora,180 +on7,0,0,24,1,0,2520,4320.000000,43,0,50873.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,43,0,10231.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3374,4434.000000,43,0,67346.000000,1799.200000,extended,lora,180 +on1,0,0,24,1,0,1164,4384.000000,43,0,22992.000000,1779.200000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,43,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,576,4336.000000,43,0,11565.000000,1760.000000,extended,lora,180 +on11,0,0,24,1,0,900,4320.000000,43,0,20036.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,140,4440.000000,43,0,3267.000000,1801.600000,extended,lora,180 +on0,1,11,24,0,0,0,4997.000000,43,0,-1.000000,2280.400000,extended,lora,180 +on8,0,0,24,1,0,1473,4333.000000,43,0,29807.000000,1758.800000,extended,lora,180 +on12,0,0,24,1,0,3271,4331.000000,43,0,67506.000000,1758.000000,extended,lora,180 +on2,0,0,24,1,0,335,4455.000000,43,0,5980.000000,1807.600000,extended,lora,180 +on9,0,0,24,1,0,3080,4320.000000,44,0,64116.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,0,4320.000000,44,0,2832.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,44,0,25440.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4725.000000,44,0,-1.000000,2197.200000,extended,lora,180 +on8,0,0,24,1,0,3600,4320.000000,44,0,74430.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2473,4433.000000,44,0,47245.000000,1798.800000,extended,lora,180 +on6,0,0,24,1,0,937,4337.000000,44,0,21500.000000,1760.400000,extended,lora,180 +on11,0,0,24,1,0,1632,4320.000000,44,0,33050.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,45,4345.000000,44,0,2653.000000,1763.600000,extended,lora,180 +on7,0,0,24,1,0,995,4395.000000,44,0,21340.000000,1783.600000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,44,0,17672.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2520,4320.000000,44,0,52191.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,295,4415.000000,44,0,6125.000000,1791.600000,extended,lora,180 +on4,0,0,24,1,0,2289,4429.000000,45,0,45428.000000,1797.200000,extended,lora,180 +on5,0,0,24,1,0,1579,4439.000000,45,0,31155.000000,1801.200000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,1180,4400.000000,45,0,22402.000000,1785.600000,extended,lora,180 +on12,0,0,24,1,0,410,4350.000000,45,0,9138.000000,1765.600000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,45,0,34332.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,768,4348.000000,45,0,16041.000000,1764.800000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1260,4320.000000,45,0,25779.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,732,4320.000000,45,0,15881.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,3240,4320.000000,45,0,68218.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1579,4439.000000,45,0,30995.000000,1801.200000,extended,lora,180 +on0,1,10,24,0,0,0,4767.000000,45,0,-1.000000,2162.800000,extended,lora,180 +on6,0,0,24,1,0,819,4399.000000,46,0,15410.000000,1785.200000,extended,lora,180 +on11,0,0,24,1,0,3240,4320.000000,46,0,66406.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,46,0,22303.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2405,4365.000000,46,0,47996.000000,1771.600000,extended,lora,180 +on12,0,0,24,1,0,1521,4381.000000,46,0,32346.000000,1778.000000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,46,0,9950.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,900,4320.000000,46,0,18415.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,3060,4320.000000,46,0,62387.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1980,4320.000000,46,0,42271.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,24,0,0,0,4542.000000,46,0,-1.000000,2072.800000,extended,lora,180 +on7,0,0,24,1,0,1260,4320.000000,46,0,27226.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,47,0,26691.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,107,4407.000000,47,0,3282.000000,1788.400000,extended,lora,180 +on7,0,0,24,1,0,2520,4320.000000,47,0,51042.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,511,4451.000000,47,0,10749.000000,1806.000000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,47,0,24921.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,186,4320.000000,47,0,7083.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,876,4456.000000,47,0,15779.000000,1808.000000,extended,lora,180 +on1,0,0,24,1,0,809,4389.000000,47,0,15619.000000,1781.200000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,47,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,900,4320.000000,47,0,20100.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,47,0,39434.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3960,4320.000000,47,0,80425.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4838.000000,47,0,-1.000000,2216.800000,extended,lora,180 +on11,0,0,24,1,0,4241,4401.000000,48,0,83354.000000,1786.000000,extended,lora,180 +on0,1,12,24,0,0,0,4702.000000,48,0,-1.000000,2188.000000,extended,lora,180 +on10,0,0,24,1,0,360,4320.000000,48,0,10640.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3613,4320.000000,48,0,73052.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2203,4343.000000,48,0,46313.000000,1762.800000,extended,lora,180 +on2,0,0,24,1,0,235,4355.000000,48,0,4703.000000,1767.600000,extended,lora,180 +on3,0,0,24,1,0,3060,4320.000000,48,0,61989.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3957,4477.000000,48,0,78634.000000,1816.400000,extended,lora,180 +on12,0,0,24,1,0,2209,4349.000000,48,0,46153.000000,1765.200000,extended,lora,180 +on1,0,0,24,1,0,185,4320.000000,48,0,4543.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3024,4444.000000,48,0,58135.000000,1803.200000,extended,lora,180 +on4,0,0,24,1,0,1260,4320.000000,48,0,27987.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,680,4440.000000,48,0,12514.000000,1801.600000,extended,lora,180 +on7,0,0,24,1,0,1620,4320.000000,49,0,33828.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,571,4331.000000,49,0,12066.000000,1758.000000,extended,lora,180 +on6,0,0,24,1,0,361,4320.000000,49,0,7588.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,180,4320.000000,49,0,5602.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2160,4320.000000,49,0,43940.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1080,4320.000000,49,0,21993.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,3352,4412.000000,49,0,65409.000000,1790.400000,extended,lora,180 +on2,0,0,24,1,0,900,4320.000000,49,0,20858.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3060,4320.000000,49,0,61815.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,173,4473.000000,49,0,2286.000000,1814.800000,extended,lora,180 +on0,1,11,24,0,0,0,4628.000000,49,0,-1.000000,2132.800000,extended,lora,180 +on1,0,0,24,1,0,787,4367.000000,49,0,16936.000000,1772.400000,extended,lora,180 +on7,0,0,24,1,0,1462,4322.000000,50,0,31514.000000,1754.400000,extended,lora,180 +on3,0,0,24,1,0,3930,4450.000000,50,0,78719.000000,1805.600000,extended,lora,180 +on9,0,0,24,1,0,3250,4320.000000,50,0,67962.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1216,4436.000000,50,0,22512.000000,1800.000000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,50,0,14202.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1814,4320.000000,50,0,36605.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2520,4320.000000,50,0,52683.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,360,4320.000000,50,0,10417.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1260,4320.000000,50,0,28402.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,50,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,1616,4476.000000,50,0,31674.000000,1816.000000,extended,lora,180 +on2,0,0,24,1,0,1841,4341.000000,50,0,36445.000000,1762.000000,extended,lora,180 +on0,1,11,24,0,0,0,4801.000000,50,0,-1.000000,2202.000000,extended,lora,180 +on0,1,10,24,0,0,0,4602.000000,51,0,-1.000000,2096.800000,extended,lora,180 +on10,0,0,24,1,0,2571,4351.000000,51,0,51560.000000,1766.000000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,51,0,4734.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,801,4381.000000,51,0,14799.000000,1778.000000,extended,lora,180 +on4,0,0,24,1,0,1568,4428.000000,51,0,32022.000000,1796.800000,extended,lora,180 +on5,0,0,24,1,0,1809,4320.000000,51,0,36523.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,51,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,51,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,1716,4396.000000,51,0,32800.000000,1784.000000,extended,lora,180 +on12,0,0,24,1,0,622,4382.000000,51,0,13290.000000,1778.400000,extended,lora,180 +on6,0,0,24,1,0,495,4435.000000,51,0,9126.000000,1799.600000,extended,lora,180 +on3,0,0,24,1,0,2340,4320.000000,51,0,48886.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,795,4375.000000,51,0,14959.000000,1775.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1835,4335.000000,52,0,37720.000000,1759.600000,extended,lora,180 +on6,0,0,24,1,0,0,4320.000000,52,0,2666.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,215,4335.000000,52,0,6855.000000,1759.600000,extended,lora,180 +on12,0,0,24,1,0,670,4430.000000,52,0,14154.000000,1797.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,52,0,17570.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,3476,4356.000000,52,0,70120.000000,1768.000000,extended,lora,180 +on9,0,0,24,1,0,633,4393.000000,52,0,13994.000000,1782.800000,extended,lora,180 +on4,0,0,24,1,0,2880,4320.000000,52,0,60744.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3448,4328.000000,52,0,69960.000000,1756.800000,extended,lora,180 +on0,1,9,24,0,0,0,4757.000000,52,0,-1.000000,2133.200000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,3600,4320.000000,53,0,75268.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1080,4320.000000,53,0,24181.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,900,4320.000000,53,0,20900.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1982,4320.000000,53,0,40874.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1988,4320.000000,53,0,41034.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,860,4440.000000,53,0,17492.000000,1801.600000,extended,lora,180 +on6,0,0,24,1,0,3240,4320.000000,53,0,66809.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2337,4477.000000,53,0,46258.000000,1816.400000,extended,lora,180 +on4,0,0,24,1,0,515,4455.000000,53,0,7810.000000,1807.600000,extended,lora,180 +on7,0,0,24,1,0,550,4320.000000,53,0,12292.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,753,4333.000000,53,0,17332.000000,1758.800000,extended,lora,180 +on0,1,11,24,0,0,0,4902.000000,53,0,-1.000000,2242.400000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,54,0,2060.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3665,4365.000000,54,0,73424.000000,1771.600000,extended,lora,180 +on12,0,0,24,1,0,1440,4320.000000,54,0,31091.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,2257,4397.000000,54,0,45630.000000,1784.400000,extended,lora,180 +on3,0,0,24,1,0,2212,4352.000000,54,0,45470.000000,1766.400000,extended,lora,180 +on2,0,0,24,1,0,576,4336.000000,54,0,12533.000000,1760.000000,extended,lora,180 +on11,0,0,24,1,0,693,4453.000000,54,0,12693.000000,1806.800000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,54,0,24129.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4776.000000,54,0,-1.000000,2140.800000,extended,lora,180 +on10,0,0,24,1,0,3148,4388.000000,54,0,62523.000000,1780.800000,extended,lora,180 +on2,0,0,24,1,0,673,4433.000000,55,0,12220.000000,1798.800000,extended,lora,180 +on7,0,0,24,1,0,3625,4325.000000,55,0,73645.000000,1755.600000,extended,lora,180 +on11,0,0,24,1,0,328,4448.000000,55,0,5133.000000,1804.800000,extended,lora,180 +on8,0,0,24,1,0,322,4442.000000,55,0,4973.000000,1802.400000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,1010,4410.000000,55,0,19915.000000,1789.600000,extended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,55,0,26206.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,55,0,22921.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2520,4320.000000,55,0,51692.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,567,4327.000000,55,0,12380.000000,1756.400000,extended,lora,180 +on3,0,0,24,1,0,2197,4337.000000,55,0,45220.000000,1760.400000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,55,0,29591.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4859.000000,55,0,-1.000000,2225.200000,extended,lora,180 +on5,0,0,24,1,0,3178,4418.000000,56,0,64489.000000,1792.800000,extended,lora,180 +on2,0,0,24,1,0,3341,4401.000000,56,0,65853.000000,1786.000000,extended,lora,180 +on11,0,0,24,1,0,3600,4320.000000,56,0,72374.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1839,4339.000000,56,0,37676.000000,1761.200000,extended,lora,180 +on10,0,0,24,1,0,2139,4459.000000,56,0,42865.000000,1809.200000,extended,lora,180 +on8,0,0,24,1,0,904,4320.000000,56,0,19099.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,56,0,6706.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,56,0,15336.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,56,0,2308.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3554,4434.000000,56,0,69212.000000,1799.200000,extended,lora,180 +on4,0,0,24,1,0,740,4320.000000,56,0,15162.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4636.000000,56,0,-1.000000,2136.000000,extended,lora,180 +on0,1,9,24,0,0,0,4596.000000,57,0,-1.000000,2068.800000,extended,lora,180 +on2,0,0,24,1,0,1459,4320.000000,57,0,30722.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2160,4320.000000,57,0,44861.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,57,0,2805.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2340,4320.000000,57,0,48055.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,57,0,11969.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,57,0,7435.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3577,4457.000000,57,0,69229.000000,1808.400000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1402,4442.000000,57,0,27247.000000,1802.400000,extended,lora,180 +on12,0,0,24,1,0,1887,4387.000000,57,0,38140.000000,1780.400000,extended,lora,180 +on9,0,0,24,1,0,2111,4431.000000,58,0,40262.000000,1798.000000,extended,lora,180 +on2,0,0,24,1,0,35,4335.000000,58,0,2747.000000,1759.600000,extended,lora,180 +on4,0,0,24,1,0,3714,4414.000000,58,0,72367.000000,1791.200000,extended,lora,180 +on12,0,0,24,1,0,866,4446.000000,58,0,16050.000000,1804.000000,extended,lora,180 +on3,0,0,24,1,0,1914,4414.000000,58,0,37662.000000,1791.200000,extended,lora,180 +on5,0,0,24,1,0,1237,4457.000000,58,0,24439.000000,1808.400000,extended,lora,180 +on10,0,0,24,1,0,1096,4320.000000,58,0,24599.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4742.000000,58,0,-1.000000,2204.000000,extended,lora,180 +on7,0,0,24,1,0,2880,4320.000000,58,0,58723.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,853,4433.000000,58,0,15890.000000,1798.800000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,58,0,12423.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,315,4435.000000,58,0,4528.000000,1799.600000,extended,lora,180 +on11,0,0,24,1,0,638,4398.000000,58,0,12262.000000,1784.800000,extended,lora,180 +on6,0,0,24,1,0,839,4419.000000,59,0,17568.000000,1793.200000,extended,lora,180 +on0,1,12,24,0,0,0,4843.000000,59,0,-1.000000,2244.400000,extended,lora,180 +on3,0,0,24,1,0,808,4388.000000,59,0,17408.000000,1780.800000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,59,0,10503.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,81,4381.000000,59,0,2323.000000,1778.000000,extended,lora,180 +on4,0,0,24,1,0,1022,4422.000000,59,0,20170.000000,1794.400000,extended,lora,180 +on11,0,0,24,1,0,300,4420.000000,59,0,6927.000000,1793.600000,extended,lora,180 +on10,0,0,24,1,0,3911,4431.000000,59,0,79144.000000,1798.000000,extended,lora,180 +on7,0,0,24,1,0,2340,4320.000000,59,0,49454.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1572,4432.000000,59,0,31026.000000,1798.400000,extended,lora,180 +on5,0,0,24,1,0,917,4320.000000,59,0,20010.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,682,4442.000000,59,0,13291.000000,1802.400000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,59,0,13131.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1980,4320.000000,60,0,41664.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,392,4332.000000,60,0,9417.000000,1758.400000,extended,lora,180 +on10,0,0,24,1,0,1135,4355.000000,60,0,24552.000000,1767.600000,extended,lora,180 +on12,0,0,24,1,0,3077,4320.000000,60,0,62534.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4738.000000,60,0,-1.000000,2202.400000,extended,lora,180 +on3,0,0,24,1,0,1118,4338.000000,60,0,24392.000000,1760.800000,extended,lora,180 +on9,0,0,24,1,0,717,4477.000000,60,0,11221.000000,1816.400000,extended,lora,180 +on2,0,0,24,1,0,3046,4466.000000,60,0,58245.000000,1812.000000,extended,lora,180 +on1,0,0,24,1,0,2520,4320.000000,60,0,52248.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,778,4358.000000,60,0,17534.000000,1768.800000,extended,lora,180 +on6,0,0,24,1,0,3432,4320.000000,60,0,70829.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,111,4411.000000,60,0,987.000000,1790.000000,extended,lora,180 +on5,0,0,24,1,0,519,4459.000000,60,0,9577.000000,1809.200000,extended,lora,180 +on9,0,0,24,1,0,288,4408.000000,61,0,4232.000000,1788.800000,extended,lora,180 +on2,0,0,24,1,0,3240,4320.000000,61,0,66205.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,540,4320.000000,61,0,13443.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1543,4403.000000,61,0,30910.000000,1786.800000,extended,lora,180 +on10,0,0,24,1,0,912,4320.000000,61,0,18371.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3664,4364.000000,61,0,75563.000000,1771.200000,extended,lora,180 +on0,1,12,24,0,0,0,4612.000000,61,0,-1.000000,2152.000000,extended,lora,180 +on12,0,0,24,1,0,895,4475.000000,61,0,15461.000000,1815.600000,extended,lora,180 +on7,0,0,24,1,0,1486,4346.000000,61,0,31070.000000,1764.000000,extended,lora,180 +on6,0,0,24,1,0,1208,4428.000000,61,0,25055.000000,1796.800000,extended,lora,180 +on11,0,0,24,1,0,492,4432.000000,61,0,7940.000000,1798.400000,extended,lora,180 +on5,0,0,24,1,0,413,4353.000000,61,0,8100.000000,1766.800000,extended,lora,180 +on8,0,0,24,1,0,2545,4325.000000,61,0,52668.000000,1755.600000,extended,lora,180 +on6,0,0,24,1,0,200,4320.000000,62,0,5727.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3060,4320.000000,62,0,62277.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,729,4320.000000,62,0,14946.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3732,4432.000000,62,0,75001.000000,1798.400000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,62,0,20520.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4921.000000,62,0,-1.000000,2275.600000,extended,lora,180 +on4,0,0,24,1,0,3435,4320.000000,62,0,70867.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3240,4320.000000,62,0,68167.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,62,0,52270.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,85,4385.000000,62,0,3222.000000,1779.600000,extended,lora,180 +on11,0,0,24,1,0,275,4395.000000,62,0,5887.000000,1783.600000,extended,lora,180 +on5,0,0,24,1,0,9,4320.000000,62,0,3062.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,62,0,32739.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,2700,4320.000000,63,0,57258.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3600,4320.000000,63,0,73042.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,63,0,28502.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1980,4320.000000,63,0,41297.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3561,4441.000000,63,0,70893.000000,1802.000000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1586,4446.000000,63,0,29440.000000,1804.000000,extended,lora,180 +on11,0,0,24,1,0,540,4320.000000,63,0,13082.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4650.000000,63,0,-1.000000,2090.400000,extended,lora,180 +on9,0,0,24,1,0,2197,4337.000000,63,0,43497.000000,1760.400000,extended,lora,180 +on7,0,0,24,1,0,720,4320.000000,63,0,17831.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,64,0,24823.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3960,4320.000000,64,0,80156.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2225,4365.000000,64,0,45014.000000,1771.600000,extended,lora,180 +on10,0,0,24,1,0,709,4469.000000,64,0,12589.000000,1813.200000,extended,lora,180 +on0,1,11,24,0,0,0,4698.000000,64,0,-1.000000,2160.800000,extended,lora,180 +on11,0,0,24,1,0,4140,4320.000000,64,0,83781.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,692,4452.000000,64,0,12749.000000,1806.400000,extended,lora,180 +on7,0,0,24,1,0,3122,4362.000000,64,0,62634.000000,1770.400000,extended,lora,180 +on5,0,0,24,1,0,180,4320.000000,64,0,5797.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1923,4423.000000,64,0,37131.000000,1794.800000,extended,lora,180 +on2,0,0,24,1,0,2457,4417.000000,64,0,47249.000000,1792.400000,extended,lora,180 +on4,0,0,24,1,0,3947,4467.000000,64,0,76624.000000,1812.400000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,174,4474.000000,65,0,932.000000,1815.200000,extended,lora,180 +on6,0,0,24,1,0,871,4451.000000,65,0,15341.000000,1806.000000,extended,lora,180 +on1,0,0,24,1,0,1808,4320.000000,65,0,36785.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,65,0,19113.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,180,4320.000000,65,0,7079.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,174,4474.000000,65,0,772.000000,1815.200000,extended,lora,180 +on4,0,0,24,1,0,685,4445.000000,65,0,13123.000000,1803.600000,extended,lora,180 +on7,0,0,24,1,0,3607,4320.000000,65,0,73193.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,659,4419.000000,65,0,13283.000000,1793.200000,extended,lora,180 +on0,1,12,24,0,0,0,5088.000000,65,0,-1.000000,2342.400000,extended,lora,180 +on2,0,0,24,1,0,1578,4438.000000,65,0,29234.000000,1800.800000,extended,lora,180 +on11,0,0,24,1,0,3060,4320.000000,65,0,61617.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1868,4368.000000,65,0,36945.000000,1772.800000,extended,lora,180 +on4,0,0,24,1,0,1209,4429.000000,66,0,25272.000000,1797.200000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,66,0,13354.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,66,0,39414.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,5023.000000,66,0,-1.000000,2239.600000,extended,lora,180 +on2,0,0,24,1,0,1256,4476.000000,66,0,25112.000000,1816.000000,extended,lora,180 +on6,0,0,24,1,0,1808,4320.000000,66,0,39241.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,66,0,4524.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,66,0,4685.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2880,4320.000000,66,0,59322.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,360,4320.000000,66,0,9703.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1141,4361.000000,67,0,23501.000000,1770.000000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,67,0,5552.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2654,4434.000000,67,0,53042.000000,1799.200000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,0,4320.000000,67,0,1713.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4817.000000,67,0,-1.000000,2208.400000,extended,lora,180 +on8,0,0,24,1,0,1630,4320.000000,67,0,32721.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,67,0,9985.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,67,0,36413.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1287,4327.000000,67,0,26526.000000,1756.400000,extended,lora,180 +on9,0,0,24,1,0,1377,4417.000000,67,0,26366.000000,1792.400000,extended,lora,180 +on12,0,0,24,1,0,1187,4407.000000,67,0,23661.000000,1788.400000,extended,lora,180 +on2,0,0,24,1,0,574,4334.000000,67,0,11722.000000,1759.200000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,68,0,2359.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2282,4422.000000,68,0,46368.000000,1794.400000,extended,lora,180 +on4,0,0,24,1,0,1409,4449.000000,68,0,26599.000000,1805.200000,extended,lora,180 +on3,0,0,24,1,0,1436,4476.000000,68,0,26439.000000,1816.000000,extended,lora,180 +on8,0,0,24,1,0,1573,4433.000000,68,0,31288.000000,1798.800000,extended,lora,180 +on12,0,0,24,1,0,822,4402.000000,68,0,17317.000000,1786.400000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,68,0,21956.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2700,4320.000000,68,0,54879.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4876.000000,68,0,-1.000000,2232.000000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,68,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,926,4326.000000,68,0,21323.000000,1756.000000,extended,lora,180 +on6,0,0,24,1,0,1039,4439.000000,68,0,21163.000000,1801.200000,extended,lora,180 +on7,0,0,24,1,0,593,4353.000000,68,0,11680.000000,1766.800000,extended,lora,180 +on11,0,0,24,1,0,3960,4320.000000,69,0,81915.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,799,4379.000000,69,0,16234.000000,1777.200000,extended,lora,180 +on10,0,0,24,1,0,572,4332.000000,69,0,14097.000000,1758.400000,extended,lora,180 +on8,0,0,24,1,0,701,4461.000000,69,0,13937.000000,1810.000000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,69,0,9939.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4903.000000,69,0,-1.000000,2217.200000,extended,lora,180 +on4,0,0,24,1,0,1807,4320.000000,69,0,36180.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1000,4400.000000,69,0,21330.000000,1785.600000,extended,lora,180 +on5,0,0,24,1,0,841,4421.000000,69,0,16074.000000,1794.000000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,1375,4415.000000,69,0,28447.000000,1791.600000,extended,lora,180 +on7,0,0,24,1,0,3060,4320.000000,69,0,64163.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1494,4354.000000,70,0,30928.000000,1767.200000,extended,lora,180 +on0,1,12,24,0,0,0,5049.000000,70,0,-1.000000,2326.800000,extended,lora,180 +on9,0,0,24,1,0,2672,4452.000000,70,0,52208.000000,1806.400000,extended,lora,180 +on8,0,0,24,1,0,2428,4388.000000,70,0,49727.000000,1780.800000,extended,lora,180 +on3,0,0,24,1,0,2880,4320.000000,70,0,59689.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,387,4327.000000,70,0,10619.000000,1756.400000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,70,0,2360.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1534,4394.000000,70,0,30768.000000,1783.200000,extended,lora,180 +on12,0,0,24,1,0,2700,4320.000000,70,0,54846.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1620,4320.000000,70,0,32744.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,540,4320.000000,70,0,13679.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3240,4320.000000,70,0,67254.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1260,4320.000000,70,0,28569.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,942,4342.000000,71,0,18858.000000,1762.400000,extended,lora,180 +on8,0,0,24,1,0,356,4476.000000,71,0,5805.000000,1816.000000,extended,lora,180 +on7,0,0,24,1,0,1866,4366.000000,71,0,38914.000000,1772.000000,extended,lora,180 +on10,0,0,24,1,0,540,4320.000000,71,0,13479.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,71,0,14714.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,142,4442.000000,71,0,3212.000000,1802.400000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,2520,4320.000000,71,0,53323.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,911,4320.000000,71,0,18698.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,308,4428.000000,71,0,5965.000000,1796.800000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,3420,4320.000000,71,0,71100.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,5041.000000,71,0,-1.000000,2272.400000,extended,lora,180 +on2,0,0,24,1,0,1980,4320.000000,72,0,41245.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1822,4322.000000,72,0,36481.000000,1754.400000,extended,lora,180 +on9,0,0,24,1,0,1440,4320.000000,72,0,29455.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,481,4421.000000,72,0,7748.000000,1794.000000,extended,lora,180 +on6,0,0,24,1,0,1260,4320.000000,72,0,27159.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,72,0,23307.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,506,4446.000000,72,0,7588.000000,1804.000000,extended,lora,180 +on3,0,0,24,1,0,1559,4419.000000,72,0,29615.000000,1793.200000,extended,lora,180 +on8,0,0,24,1,0,900,4320.000000,72,0,19085.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,668,4428.000000,72,0,12062.000000,1796.800000,extended,lora,180 +on0,1,12,24,0,0,0,5127.000000,72,0,-1.000000,2358.000000,extended,lora,180 +on4,0,0,24,1,0,2340,4320.000000,72,0,47450.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1620,4320.000000,72,0,34368.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3885,4405.000000,73,0,76817.000000,1787.600000,extended,lora,180 +on6,0,0,24,1,0,399,4339.000000,73,0,8057.000000,1761.200000,extended,lora,180 +on9,0,0,24,1,0,2489,4449.000000,73,0,47798.000000,1805.200000,extended,lora,180 +on10,0,0,24,1,0,3940,4460.000000,73,0,76977.000000,1809.600000,extended,lora,180 +on1,0,0,24,1,0,2342,4320.000000,73,0,47638.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,720,4320.000000,73,0,14815.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,314,4434.000000,73,0,6554.000000,1799.200000,extended,lora,180 +on11,0,0,24,1,0,715,4475.000000,73,0,13499.000000,1815.600000,extended,lora,180 +on0,1,11,24,0,0,0,4795.000000,73,0,-1.000000,2199.600000,extended,lora,180 +on3,0,0,24,1,0,1576,4436.000000,73,0,31107.000000,1800.000000,extended,lora,180 +on5,0,0,24,1,0,1136,4356.000000,73,0,24882.000000,1768.000000,extended,lora,180 +on12,0,0,24,1,0,0,4320.000000,73,0,336.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,73,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,74,0,3478.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,468,4408.000000,74,0,9293.000000,1788.800000,extended,lora,180 +on2,0,0,24,1,0,3883,4403.000000,74,0,79116.000000,1786.800000,extended,lora,180 +on1,0,0,24,1,0,1007,4407.000000,74,0,20508.000000,1788.400000,extended,lora,180 +on0,1,12,24,0,0,0,4877.000000,74,0,-1.000000,2258.000000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,74,0,17225.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,74,0,39224.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,981,4381.000000,74,0,20348.000000,1778.000000,extended,lora,180 +on3,0,0,24,1,0,652,4412.000000,74,0,11771.000000,1790.400000,extended,lora,180 +on12,0,0,24,1,0,1260,4320.000000,74,0,28227.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2520,4320.000000,74,0,52210.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,654,4414.000000,74,0,11931.000000,1791.200000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,74,0,6719.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,75,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,2458,4418.000000,75,0,49569.000000,1792.800000,extended,lora,180 +on3,0,0,24,1,0,2210,4350.000000,75,0,46612.000000,1765.600000,extended,lora,180 +on9,0,0,24,1,0,2144,4464.000000,75,0,41925.000000,1811.200000,extended,lora,180 +on5,0,0,24,1,0,1267,4320.000000,75,0,25546.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3420,4320.000000,75,0,69310.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,75,0,463.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,75,0,37408.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2038,4358.000000,75,0,41765.000000,1768.800000,extended,lora,180 +on0,1,11,24,0,0,0,4819.000000,75,0,-1.000000,2209.200000,extended,lora,180 +on4,0,0,24,1,0,4140,4320.000000,75,0,85614.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,670,4430.000000,75,0,12382.000000,1797.600000,extended,lora,180 +on12,0,0,24,1,0,306,4426.000000,75,0,6700.000000,1796.000000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,76,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,720,4320.000000,76,0,17606.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,443,4383.000000,76,0,8623.000000,1778.800000,extended,lora,180 +on10,0,0,24,1,0,3871,4391.000000,76,0,77037.000000,1782.000000,extended,lora,180 +on12,0,0,24,1,0,435,4375.000000,76,0,8463.000000,1775.600000,extended,lora,180 +on3,0,0,24,1,0,3060,4320.000000,76,0,62608.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4843.000000,76,0,-1.000000,2218.800000,extended,lora,180 +on8,0,0,24,1,0,2880,4320.000000,76,0,58300.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1356,4396.000000,76,0,28542.000000,1784.000000,extended,lora,180 +on5,0,0,24,1,0,671,4431.000000,76,0,12138.000000,1798.000000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,76,0,6450.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1391,4431.000000,76,0,28382.000000,1798.000000,extended,lora,180 +on11,0,0,24,1,0,1620,4320.000000,76,0,35659.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2310,4450.000000,77,0,44597.000000,1805.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,77,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,24,0,0,0,4844.000000,77,0,-1.000000,2193.600000,extended,lora,180 +on10,0,0,24,1,0,871,4451.000000,77,0,16556.000000,1806.000000,extended,lora,180 +on12,0,0,24,1,0,272,4392.000000,77,0,5246.000000,1782.400000,extended,lora,180 +on9,0,0,24,1,0,1912,4412.000000,77,0,38598.000000,1790.400000,extended,lora,180 +on4,0,0,24,1,0,2880,4320.000000,77,0,58158.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,329,4449.000000,77,0,5086.000000,1805.200000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,77,0,11186.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,736,4320.000000,77,0,16396.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,77,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,2700,4320.000000,77,0,57303.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1980,4320.000000,77,0,43045.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4899.000000,78,0,-1.000000,2241.200000,extended,lora,180 +on7,0,0,24,1,0,1412,4452.000000,78,0,27145.000000,1806.400000,extended,lora,180 +on12,0,0,24,1,0,497,4437.000000,78,0,9503.000000,1800.400000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,78,0,11046.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,23,4323.000000,78,0,2625.000000,1754.800000,extended,lora,180 +on10,0,0,24,1,0,749,4329.000000,78,0,15734.000000,1757.200000,extended,lora,180 +on1,0,0,24,1,0,2880,4320.000000,78,0,59367.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1045,4445.000000,78,0,19159.000000,1803.600000,extended,lora,180 +on3,0,0,24,1,0,2340,4320.000000,78,0,50204.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1364,4404.000000,78,0,27305.000000,1787.200000,extended,lora,180 +on5,0,0,24,1,0,393,4333.000000,78,0,9343.000000,1758.800000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,78,0,2791.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,882,4462.000000,79,0,17062.000000,1810.400000,extended,lora,180 +on10,0,0,24,1,0,2700,4320.000000,79,0,57054.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2469,4429.000000,79,0,48043.000000,1797.200000,extended,lora,180 +on0,1,12,24,0,0,0,4863.000000,79,0,-1.000000,2252.400000,extended,lora,180 +on3,0,0,24,1,0,70,4370.000000,79,0,1370.000000,1773.600000,extended,lora,180 +on9,0,0,24,1,0,2049,4369.000000,79,0,42748.000000,1773.200000,extended,lora,180 +on2,0,0,24,1,0,73,4373.000000,79,0,1530.000000,1774.800000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,79,0,20428.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1260,4320.000000,79,0,28733.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2160,4320.000000,79,0,45635.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1003,4403.000000,79,0,20588.000000,1786.800000,extended,lora,180 +on4,0,0,24,1,0,1126,4346.000000,79,0,23268.000000,1764.000000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,79,0,4956.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1112,4332.000000,80,0,22191.000000,1758.400000,extended,lora,180 +on0,1,10,24,0,0,0,4971.000000,80,0,-1.000000,2244.400000,extended,lora,180 +on12,0,0,24,1,0,265,4385.000000,80,0,7166.000000,1779.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,80,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,0,4320.000000,80,0,3187.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1342,4382.000000,80,0,28053.000000,1778.400000,extended,lora,180 +on7,0,0,24,1,0,1231,4451.000000,80,0,22351.000000,1806.000000,extended,lora,180 +on3,0,0,24,1,0,360,4320.000000,80,0,7949.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,338,4458.000000,80,0,7326.000000,1808.800000,extended,lora,180 +on6,0,0,24,1,0,659,4419.000000,80,0,11788.000000,1793.200000,extended,lora,180 +on10,0,0,24,1,0,2520,4320.000000,80,0,51619.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,80,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1738,4418.000000,80,0,33216.000000,1792.800000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,81,0,6407.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3168,4408.000000,81,0,62944.000000,1788.800000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,81,0,20701.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,2182,4322.000000,81,0,46018.000000,1754.400000,extended,lora,180 +on0,1,10,24,0,0,0,4632.000000,81,0,-1.000000,2108.800000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1212,4432.000000,81,0,23739.000000,1798.400000,extended,lora,180 +on7,0,0,24,1,0,2700,4320.000000,81,0,56375.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1670,4350.000000,81,0,33735.000000,1765.600000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,81,0,2648.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,360,4320.000000,81,0,9563.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2773,4373.000000,81,0,56535.000000,1774.800000,extended,lora,180 +on9,0,0,24,1,0,99,4399.000000,82,0,641.000000,1785.200000,extended,lora,180 +on4,0,0,24,1,0,1080,4320.000000,82,0,24598.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1508,4368.000000,82,0,32249.000000,1772.800000,extended,lora,180 +on8,0,0,24,1,0,3398,4458.000000,82,0,67943.000000,1808.800000,extended,lora,180 +on2,0,0,24,1,0,155,4455.000000,82,0,801.000000,1807.600000,extended,lora,180 +on12,0,0,24,1,0,1988,4320.000000,82,0,42668.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,717,4477.000000,82,0,12133.000000,1816.400000,extended,lora,180 +on0,1,11,24,0,0,0,4678.000000,82,0,-1.000000,2152.800000,extended,lora,180 +on1,0,0,24,1,0,1416,4456.000000,82,0,26117.000000,1808.000000,extended,lora,180 +on5,0,0,24,1,0,676,4436.000000,82,0,12293.000000,1800.000000,extended,lora,180 +on7,0,0,24,1,0,244,4364.000000,82,0,6827.000000,1771.200000,extended,lora,180 +on10,0,0,24,1,0,1959,4459.000000,82,0,36771.000000,1809.200000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,82,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,436,4376.000000,83,0,7581.000000,1776.000000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,83,0,22161.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1039,4439.000000,83,0,21328.000000,1801.200000,extended,lora,180 +on0,1,11,24,0,0,0,4541.000000,83,0,-1.000000,2098.000000,extended,lora,180 +on9,0,0,24,1,0,1369,4409.000000,83,0,25839.000000,1789.200000,extended,lora,180 +on12,0,0,24,1,0,3264,4324.000000,83,0,68003.000000,1755.200000,extended,lora,180 +on11,0,0,24,1,0,2393,4353.000000,83,0,47982.000000,1766.800000,extended,lora,180 +on2,0,0,24,1,0,207,4327.000000,83,0,5047.000000,1756.400000,extended,lora,180 +on10,0,0,24,1,0,714,4474.000000,83,0,13452.000000,1815.200000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,83,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,83,0,3334.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1918,4418.000000,83,0,37799.000000,1792.800000,extended,lora,180 +on4,0,0,24,1,0,601,4361.000000,83,0,13292.000000,1770.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1480,4340.000000,84,0,30014.000000,1761.600000,extended,lora,180 +on6,0,0,24,1,0,1192,4412.000000,84,0,24471.000000,1790.400000,extended,lora,180 +on5,0,0,24,1,0,119,4419.000000,84,0,2215.000000,1793.200000,extended,lora,180 +on12,0,0,24,1,0,1435,4475.000000,84,0,26087.000000,1815.600000,extended,lora,180 +on11,0,0,24,1,0,1450,4320.000000,84,0,30174.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,397,4337.000000,84,0,7857.000000,1760.400000,extended,lora,180 +on0,1,10,24,0,0,0,4948.000000,84,0,-1.000000,2235.200000,extended,lora,180 +on8,0,0,24,1,0,149,4449.000000,84,0,2375.000000,1805.200000,extended,lora,180 +on7,0,0,24,1,0,1620,4320.000000,84,0,33736.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1980,4320.000000,84,0,41674.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1094,4320.000000,84,0,24631.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2657,4437.000000,85,0,51134.000000,1800.400000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,85,0,28275.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4810.000000,85,0,-1.000000,2180.000000,extended,lora,180 +on4,0,0,24,1,0,4125,4465.000000,85,0,82386.000000,1811.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,39,4339.000000,85,0,3136.000000,1761.200000,extended,lora,180 +on10,0,0,24,1,0,370,4320.000000,85,0,7760.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,152,4452.000000,85,0,2976.000000,1806.400000,extended,lora,180 +on8,0,0,24,1,0,900,4320.000000,85,0,21234.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,85,0,13081.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2019,4339.000000,85,0,39921.000000,1761.200000,extended,lora,180 +on3,0,0,24,1,0,3060,4320.000000,85,0,62870.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,540,4320.000000,86,0,14192.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1720,4400.000000,86,0,35541.000000,1785.600000,extended,lora,180 +on11,0,0,24,1,0,1220,4440.000000,86,0,23266.000000,1801.600000,extended,lora,180 +on8,0,0,24,1,0,3060,4320.000000,86,0,61781.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1124,4344.000000,86,0,23426.000000,1763.200000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,86,0,19371.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,348,4468.000000,86,0,3942.000000,1812.800000,extended,lora,180 +on4,0,0,24,1,0,1950,4450.000000,86,0,37335.000000,1805.600000,extended,lora,180 +on7,0,0,24,1,0,1394,4434.000000,86,0,26123.000000,1799.200000,extended,lora,180 +on6,0,0,24,1,0,2684,4464.000000,86,0,53366.000000,1811.200000,extended,lora,180 +on1,0,0,24,1,0,2644,4424.000000,86,0,53206.000000,1795.200000,extended,lora,180 +on9,0,0,24,1,0,1705,4385.000000,86,0,35701.000000,1779.600000,extended,lora,180 +on0,1,12,24,0,0,0,5067.000000,86,0,-1.000000,2334.000000,extended,lora,180 +on12,0,0,24,1,0,1294,4334.000000,87,0,26602.000000,1759.200000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,87,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,3060,4320.000000,87,0,62194.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4610.000000,87,0,-1.000000,2100.000000,extended,lora,180 +on7,0,0,24,1,0,1007,4407.000000,87,0,18535.000000,1788.400000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,87,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,839,4419.000000,87,0,16684.000000,1793.200000,extended,lora,180 +on8,0,0,24,1,0,2520,4320.000000,87,0,53694.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2469,4429.000000,87,0,49550.000000,1797.200000,extended,lora,180 +on10,0,0,24,1,0,3815,4335.000000,87,0,76096.000000,1759.600000,extended,lora,180 +on11,0,0,24,1,0,2880,4320.000000,87,0,59428.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,87,0,5468.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3795,4320.000000,87,0,75936.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,66,4366.000000,88,0,2321.000000,1772.000000,extended,lora,180 +on1,0,0,24,1,0,2700,4320.000000,88,0,57489.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,88,0,5771.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,77,4377.000000,88,0,2161.000000,1776.400000,extended,lora,180 +on6,0,0,24,1,0,2880,4320.000000,88,0,59254.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,88,0,28220.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4891.000000,88,0,-1.000000,2238.000000,extended,lora,180 +on8,0,0,24,1,0,900,4320.000000,88,0,18234.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,505,4445.000000,88,0,7885.000000,1803.600000,extended,lora,180 +on12,0,0,24,1,0,1440,4320.000000,88,0,32112.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,637,4397.000000,88,0,13079.000000,1784.400000,extended,lora,180 +on11,0,0,24,1,0,511,4451.000000,88,0,7725.000000,1806.000000,extended,lora,180 +on4,0,0,24,1,0,874,4454.000000,89,0,16576.000000,1807.200000,extended,lora,180 +on2,0,0,24,1,0,900,4320.000000,89,0,20513.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2700,4320.000000,89,0,54249.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,89,0,10705.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3085,4325.000000,89,0,61574.000000,1755.600000,extended,lora,180 +on12,0,0,24,1,0,2374,4334.000000,89,0,48207.000000,1759.200000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,89,0,6338.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,89,0,3127.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4692.000000,89,0,-1.000000,2184.000000,extended,lora,180 +on9,0,0,24,1,0,4140,4320.000000,89,0,85332.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2102,4422.000000,89,0,43124.000000,1794.400000,extended,lora,180 +on1,0,0,24,1,0,3600,4320.000000,89,0,73862.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1620,4320.000000,89,0,35305.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,291,4411.000000,90,0,6876.000000,1790.000000,extended,lora,180 +on3,0,0,24,1,0,426,4366.000000,90,0,10795.000000,1772.000000,extended,lora,180 +on7,0,0,24,1,0,364,4320.000000,90,0,10635.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2340,4320.000000,90,0,47579.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,655,4415.000000,90,0,11427.000000,1791.600000,extended,lora,180 +on11,0,0,24,1,0,1142,4362.000000,90,0,24389.000000,1770.400000,extended,lora,180 +on12,0,0,24,1,0,4167,4327.000000,90,0,85777.000000,1756.400000,extended,lora,180 +on0,1,12,24,0,0,0,4860.000000,90,0,-1.000000,2251.200000,extended,lora,180 +on6,0,0,24,1,0,2221,4361.000000,90,0,45473.000000,1770.000000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,90,0,15387.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,595,4355.000000,90,0,11587.000000,1767.600000,extended,lora,180 +on8,0,0,24,1,0,1440,4320.000000,90,0,30764.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1620,4320.000000,90,0,34413.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4825.000000,91,0,-1.000000,2211.600000,extended,lora,180 +on7,0,0,24,1,0,1001,4401.000000,91,0,20754.000000,1786.000000,extended,lora,180 +on11,0,0,24,1,0,2880,4320.000000,91,0,60080.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2160,4320.000000,91,0,46431.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,595,4355.000000,91,0,13906.000000,1767.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,91,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,3960,4320.000000,91,0,79793.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,259,4379.000000,91,0,4967.000000,1777.200000,extended,lora,180 +on8,0,0,24,1,0,1620,4320.000000,91,0,34197.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,765,4345.000000,91,0,17184.000000,1763.600000,extended,lora,180 +on5,0,0,24,1,0,655,4415.000000,91,0,13746.000000,1791.600000,extended,lora,180 +on10,0,0,24,1,0,463,4403.000000,91,0,10501.000000,1786.800000,extended,lora,180 +on1,0,0,24,1,0,3600,4320.000000,91,0,75240.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4674.000000,92,0,-1.000000,2151.200000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,2282,4422.000000,92,0,45398.000000,1794.400000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,92,0,2753.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,933,4333.000000,92,0,21259.000000,1758.800000,extended,lora,180 +on7,0,0,24,1,0,929,4329.000000,92,0,21419.000000,1757.200000,extended,lora,180 +on10,0,0,24,1,0,1160,4380.000000,92,0,24393.000000,1777.600000,extended,lora,180 +on1,0,0,24,1,0,560,4320.000000,92,0,13143.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3494,4374.000000,92,0,68859.000000,1775.200000,extended,lora,180 +on9,0,0,24,1,0,1486,4346.000000,92,0,29883.000000,1764.000000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,92,0,27153.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3240,4320.000000,92,0,66392.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2593,4373.000000,92,0,52293.000000,1774.800000,extended,lora,180 +on10,0,0,24,1,0,2700,4320.000000,93,0,57524.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1039,4439.000000,93,0,19021.000000,1801.200000,extended,lora,180 +on1,0,0,24,1,0,636,4396.000000,93,0,11705.000000,1784.000000,extended,lora,180 +on4,0,0,24,1,0,3060,4320.000000,93,0,62203.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,93,0,6200.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1447,4320.000000,93,0,30739.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1479,4339.000000,93,0,30579.000000,1761.200000,extended,lora,180 +on11,0,0,24,1,0,2031,4351.000000,93,0,42818.000000,1766.000000,extended,lora,180 +on0,1,12,24,0,0,0,4984.000000,93,0,-1.000000,2300.800000,extended,lora,180 +on9,0,0,24,1,0,791,4371.000000,93,0,14916.000000,1774.000000,extended,lora,180 +on12,0,0,24,1,0,1260,4320.000000,93,0,26213.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,514,4454.000000,93,0,7960.000000,1807.200000,extended,lora,180 +on5,0,0,24,1,0,499,4439.000000,93,0,7800.000000,1801.200000,extended,lora,180 +on5,0,0,24,1,0,1279,4320.000000,94,0,28034.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2520,4320.000000,94,0,50713.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2700,4320.000000,94,0,55294.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2880,4320.000000,94,0,60903.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3060,4320.000000,94,0,62638.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,217,4337.000000,94,0,4275.000000,1760.400000,extended,lora,180 +on9,0,0,24,1,0,900,4320.000000,94,0,20264.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,359,4479.000000,94,0,4115.000000,1817.200000,extended,lora,180 +on7,0,0,24,1,0,4159,4320.000000,94,0,84895.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4777.000000,94,0,-1.000000,2192.400000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1251,4471.000000,94,0,24617.000000,1814.000000,extended,lora,180 +on10,0,0,24,1,0,148,4448.000000,94,0,530.000000,1804.800000,extended,lora,180 +on7,0,0,24,1,0,538,4478.000000,95,0,7977.000000,1816.800000,extended,lora,180 +on9,0,0,24,1,0,765,4345.000000,95,0,16048.000000,1763.600000,extended,lora,180 +on0,1,10,24,0,0,0,4491.000000,95,0,-1.000000,2052.400000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,1419,4459.000000,95,0,27067.000000,1809.200000,extended,lora,180 +on4,0,0,24,1,0,154,4454.000000,95,0,1163.000000,1807.200000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1642,4322.000000,95,0,35506.000000,1754.400000,extended,lora,180 +on12,0,0,24,1,0,2012,4332.000000,95,0,41465.000000,1758.400000,extended,lora,180 +on10,0,0,24,1,0,480,4420.000000,95,0,7817.000000,1793.600000,extended,lora,180 +on3,0,0,24,1,0,2200,4340.000000,95,0,45470.000000,1761.600000,extended,lora,180 +on8,0,0,24,1,0,3240,4320.000000,95,0,67126.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2978,4398.000000,95,0,58069.000000,1784.800000,extended,lora,180 +on9,0,0,24,1,0,3033,4453.000000,96,0,58102.000000,1806.800000,extended,lora,180 +on6,0,0,24,1,0,2254,4394.000000,96,0,44057.000000,1783.200000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,96,0,36763.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,480,4420.000000,96,0,7481.000000,1793.600000,extended,lora,180 +on10,0,0,24,1,0,3059,4479.000000,96,0,57942.000000,1817.200000,extended,lora,180 +on12,0,0,24,1,0,1002,4402.000000,96,0,21004.000000,1786.400000,extended,lora,180 +on1,0,0,24,1,0,1298,4338.000000,96,0,27471.000000,1760.800000,extended,lora,180 +on3,0,0,24,1,0,293,4413.000000,96,0,4203.000000,1790.800000,extended,lora,180 +on5,0,0,24,1,0,2047,4367.000000,96,0,40259.000000,1772.400000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,96,0,-1.000000,1728.000000,extended,lora,180 +on0,1,11,24,0,0,0,4893.000000,96,0,-1.000000,2238.800000,extended,lora,180 +on2,0,0,24,1,0,1440,4320.000000,96,0,31943.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1414,4454.000000,96,0,27311.000000,1807.200000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,97,0,6094.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,97,0,8775.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1980,4320.000000,97,0,41495.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1165,4385.000000,97,0,23887.000000,1779.600000,extended,lora,180 +on7,0,0,24,1,0,120,4420.000000,97,0,3398.000000,1793.600000,extended,lora,180 +on1,0,0,24,1,0,389,4329.000000,97,0,8935.000000,1757.200000,extended,lora,180 +on11,0,0,24,1,0,1620,4320.000000,97,0,33944.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1153,4373.000000,97,0,23727.000000,1774.800000,extended,lora,180 +on0,1,10,24,0,0,0,4842.000000,97,0,-1.000000,2192.800000,extended,lora,180 +on9,0,0,24,1,0,865,4445.000000,97,0,16045.000000,1803.600000,extended,lora,180 +on12,0,0,24,1,0,1358,4398.000000,97,0,28220.000000,1784.800000,extended,lora,180 +on12,0,0,24,1,0,2934,4354.000000,98,0,59376.000000,1767.200000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,98,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,920,4320.000000,98,0,20518.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,720,4320.000000,98,0,16888.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3240,4320.000000,98,0,68067.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1080,4320.000000,98,0,24529.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,136,4436.000000,98,0,3559.000000,1800.000000,extended,lora,180 +on1,0,0,24,1,0,606,4366.000000,98,0,14301.000000,1772.000000,extended,lora,180 +on0,1,11,24,0,0,0,4809.000000,98,0,-1.000000,2205.200000,extended,lora,180 +on11,0,0,24,1,0,216,4336.000000,98,0,7127.000000,1760.000000,extended,lora,180 +on8,0,0,24,1,0,334,4454.000000,98,0,7287.000000,1807.200000,extended,lora,180 +on2,0,0,24,1,0,3549,4429.000000,98,0,70679.000000,1797.200000,extended,lora,180 +on4,0,0,24,1,0,3060,4320.000000,98,0,62082.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2235,4375.000000,99,0,45425.000000,1775.600000,extended,lora,180 +on4,0,0,24,1,0,1980,4320.000000,99,0,41851.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2520,4320.000000,99,0,52548.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,911,4320.000000,99,0,20343.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,1800,4320.000000,99,0,38664.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1379,4419.000000,99,0,28317.000000,1793.200000,extended,lora,180 +on0,1,11,24,0,0,0,4590.000000,99,0,-1.000000,2117.600000,extended,lora,180 +on7,0,0,24,1,0,4140,4320.000000,99,0,85309.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,99,0,290.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,571,4331.000000,99,0,13415.000000,1758.000000,extended,lora,180 +on1,0,0,24,1,0,3779,4479.000000,99,0,74874.000000,1817.200000,extended,lora,180 +on12,0,0,24,1,0,1471,4331.000000,99,0,30938.000000,1758.000000,extended,lora,180 +on2,0,0,24,1,0,1440,4320.000000,100,0,32290.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,411,4351.000000,100,0,7685.000000,1766.000000,extended,lora,180 +on10,0,0,24,1,0,2679,4459.000000,100,0,52489.000000,1809.200000,extended,lora,180 +on7,0,0,24,1,0,1800,4320.000000,100,0,37321.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,900,4320.000000,100,0,18581.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,100,0,4347.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1418,4458.000000,100,0,27364.000000,1808.800000,extended,lora,180 +on11,0,0,24,1,0,1404,4444.000000,100,0,27204.000000,1803.200000,extended,lora,180 +on9,0,0,24,1,0,2094,4414.000000,100,0,42864.000000,1791.200000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,100,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,2880,4320.000000,100,0,59240.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4975.000000,100,0,-1.000000,2271.600000,extended,lora,180 +on8,0,0,24,1,0,480,4420.000000,100,0,7525.000000,1793.600000,extended,lora,180 +on4,0,0,24,1,0,3538,4418.000000,101,0,69072.000000,1792.800000,extended,lora,180 +on0,1,9,24,0,0,0,4624.000000,101,0,-1.000000,2080.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,179,4479.000000,101,0,3486.000000,1817.200000,extended,lora,180 +on12,0,0,24,1,0,360,4320.000000,101,0,8213.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2443,4403.000000,101,0,47394.000000,1786.800000,extended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,101,0,37839.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,101,0,22498.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,962,4362.000000,101,0,21381.000000,1770.400000,extended,lora,180 +on10,0,0,24,1,0,180,4320.000000,101,0,4504.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1353,4393.000000,101,0,28204.000000,1782.800000,extended,lora,180 +on3,0,0,24,1,0,448,4388.000000,102,0,9336.000000,1780.800000,extended,lora,180 +on1,0,0,24,1,0,3420,4320.000000,102,0,69034.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,2700,4320.000000,102,0,55135.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1910,4410.000000,102,0,36870.000000,1789.600000,extended,lora,180 +on0,1,10,24,0,0,0,4634.000000,102,0,-1.000000,2109.600000,extended,lora,180 +on10,0,0,24,1,0,1313,4353.000000,102,0,27362.000000,1766.800000,extended,lora,180 +on8,0,0,24,1,0,1296,4336.000000,102,0,27202.000000,1760.000000,extended,lora,180 +on11,0,0,24,1,0,899,4479.000000,102,0,17375.000000,1817.200000,extended,lora,180 +on7,0,0,24,1,0,999,4399.000000,102,0,20525.000000,1785.200000,extended,lora,180 +on12,0,0,24,1,0,180,4320.000000,102,0,6582.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,102,0,12992.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,47,4347.000000,103,0,1261.000000,1764.400000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,103,0,13204.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3811,4331.000000,103,0,76774.000000,1758.000000,extended,lora,180 +on3,0,0,24,1,0,3673,4373.000000,103,0,73763.000000,1774.800000,extended,lora,180 +on12,0,0,24,1,0,2610,4390.000000,103,0,52076.000000,1781.600000,extended,lora,180 +on0,1,10,24,0,0,0,4752.000000,103,0,-1.000000,2156.800000,extended,lora,180 +on4,0,0,24,1,0,4140,4320.000000,103,0,83913.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,103,0,10141.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,103,0,1101.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1062,4462.000000,103,0,19458.000000,1810.400000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,3423,4320.000000,103,0,68722.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,1953,4453.000000,104,0,37190.000000,1806.800000,extended,lora,180 +on2,0,0,24,1,0,67,4367.000000,104,0,3224.000000,1772.400000,extended,lora,180 +on9,0,0,24,1,0,3600,4320.000000,104,0,73100.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,197,4320.000000,104,0,3881.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,278,4398.000000,104,0,4041.000000,1784.800000,extended,lora,180 +on7,0,0,24,1,0,791,4371.000000,104,0,15902.000000,1774.000000,extended,lora,180 +on0,1,11,24,0,0,0,4919.000000,104,0,-1.000000,2249.200000,extended,lora,180 +on4,0,0,24,1,0,3003,4423.000000,104,0,59898.000000,1794.800000,extended,lora,180 +on10,0,0,24,1,0,1158,4378.000000,104,0,22411.000000,1776.800000,extended,lora,180 +on11,0,0,24,1,0,1620,4320.000000,104,0,33447.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1260,4320.000000,104,0,27341.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1857,4357.000000,104,0,37030.000000,1768.400000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,105,0,5153.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,156,4456.000000,105,0,3070.000000,1808.000000,extended,lora,180 +on9,0,0,24,1,0,1329,4369.000000,105,0,26249.000000,1773.200000,extended,lora,180 +on1,0,0,24,1,0,900,4320.000000,105,0,20160.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3600,4320.000000,105,0,74319.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4942.000000,105,0,-1.000000,2232.800000,extended,lora,180 +on5,0,0,24,1,0,2520,4320.000000,105,0,52903.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,75,4375.000000,105,0,3230.000000,1775.600000,extended,lora,180 +on8,0,0,24,1,0,1508,4368.000000,105,0,30691.000000,1772.800000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,3060,4320.000000,105,0,63331.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1800,4320.000000,105,0,37977.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,106,0,2130.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,216,4336.000000,106,0,4139.000000,1760.000000,extended,lora,180 +on12,0,0,24,1,0,1800,4320.000000,106,0,37401.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,106,0,15934.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3142,4382.000000,106,0,64188.000000,1778.400000,extended,lora,180 +on0,1,11,24,0,0,0,4926.000000,106,0,-1.000000,2252.000000,extended,lora,180 +on3,0,0,24,1,0,3600,4320.000000,106,0,73427.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,106,0,26115.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,559,4320.000000,106,0,13870.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,357,4477.000000,106,0,3979.000000,1816.400000,extended,lora,180 +on9,0,0,24,1,0,2429,4389.000000,106,0,47796.000000,1781.200000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,932,4332.000000,106,0,19457.000000,1758.400000,extended,lora,180 +on10,0,0,24,1,0,1832,4332.000000,107,0,38312.000000,1758.400000,extended,lora,180 +on4,0,0,24,1,0,1369,4409.000000,107,0,27391.000000,1789.200000,extended,lora,180 +on0,1,10,24,0,0,0,4549.000000,107,0,-1.000000,2075.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1970,4470.000000,107,0,38152.000000,1813.600000,extended,lora,180 +on6,0,0,24,1,0,219,4339.000000,107,0,7063.000000,1761.200000,extended,lora,180 +on11,0,0,24,1,0,995,4395.000000,107,0,18858.000000,1783.600000,extended,lora,180 +on5,0,0,24,1,0,363,4320.000000,107,0,8766.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,2369,4329.000000,107,0,48037.000000,1757.200000,extended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,107,0,46046.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3318,4378.000000,107,0,67817.000000,1776.800000,extended,lora,180 +on12,0,0,24,1,0,3420,4320.000000,107,0,71715.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3960,4320.000000,108,0,81743.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1907,4407.000000,108,0,38102.000000,1788.400000,extended,lora,180 +on2,0,0,24,1,0,1080,4320.000000,108,0,24541.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,108,0,27025.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,108,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1440,4320.000000,108,0,29519.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,108,0,2858.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,586,4346.000000,108,0,11197.000000,1764.000000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,108,0,9439.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,983,4383.000000,108,0,20458.000000,1778.800000,extended,lora,180 +on4,0,0,24,1,0,2700,4320.000000,108,0,56801.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1620,4320.000000,108,0,33454.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,5044.000000,108,0,-1.000000,2299.200000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,109,0,22068.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3060,4320.000000,109,0,63153.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3600,4320.000000,109,0,72772.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,145,4445.000000,109,0,660.000000,1803.600000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,109,0,26515.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,109,0,46656.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4687.000000,109,0,-1.000000,2156.400000,extended,lora,180 +on11,0,0,24,1,0,269,4389.000000,109,0,5648.000000,1781.200000,extended,lora,180 +on3,0,0,24,1,0,46,4346.000000,109,0,500.000000,1764.000000,extended,lora,180 +on4,0,0,24,1,0,243,4363.000000,109,0,5808.000000,1770.800000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,109,0,13361.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2921,4341.000000,109,0,58051.000000,1762.000000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,512,4452.000000,110,0,9224.000000,1806.400000,extended,lora,180 +on12,0,0,24,1,0,1288,4328.000000,110,0,26236.000000,1756.800000,extended,lora,180 +on0,1,10,24,0,0,0,4892.000000,110,0,-1.000000,2212.800000,extended,lora,180 +on5,0,0,24,1,0,990,4390.000000,110,0,20073.000000,1781.600000,extended,lora,180 +on8,0,0,24,1,0,273,4393.000000,110,0,6470.000000,1782.800000,extended,lora,180 +on7,0,0,24,1,0,1080,4320.000000,110,0,24525.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,870,4450.000000,110,0,17630.000000,1805.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,400,4340.000000,110,0,9384.000000,1761.600000,extended,lora,180 +on2,0,0,24,1,0,36,4336.000000,110,0,1053.000000,1760.000000,extended,lora,180 +on11,0,0,24,1,0,1429,4469.000000,110,0,26076.000000,1813.200000,extended,lora,180 +on9,0,0,24,1,0,233,4353.000000,110,0,6630.000000,1766.800000,extended,lora,180 +on2,0,0,24,1,0,1195,4415.000000,111,0,23165.000000,1791.600000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,111,0,11713.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2880,4320.000000,111,0,59150.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3204,4444.000000,111,0,64469.000000,1803.200000,extended,lora,180 +on0,1,12,24,0,0,0,5076.000000,111,0,-1.000000,2337.600000,extended,lora,180 +on6,0,0,24,1,0,4140,4320.000000,111,0,83901.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1315,4355.000000,111,0,27946.000000,1767.600000,extended,lora,180 +on9,0,0,24,1,0,1307,4347.000000,111,0,27786.000000,1764.400000,extended,lora,180 +on5,0,0,24,1,0,1050,4450.000000,111,0,18934.000000,1805.600000,extended,lora,180 +on11,0,0,24,1,0,905,4320.000000,111,0,18774.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1645,4325.000000,111,0,34980.000000,1755.600000,extended,lora,180 +on1,0,0,24,1,0,3098,4338.000000,111,0,64629.000000,1760.800000,extended,lora,180 +on12,0,0,24,1,0,180,4320.000000,111,0,4271.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2588,4368.000000,112,0,53057.000000,1772.800000,extended,lora,180 +on5,0,0,24,1,0,2785,4385.000000,112,0,57569.000000,1779.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,2881,4320.000000,112,0,58351.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,112,0,7623.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1880,4380.000000,112,0,39400.000000,1777.600000,extended,lora,180 +on7,0,0,24,1,0,761,4341.000000,112,0,17473.000000,1762.000000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,112,0,22031.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4767.000000,112,0,-1.000000,2162.800000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,112,0,1870.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2704,4320.000000,112,0,57409.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1620,4320.000000,112,0,35792.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,35,4335.000000,113,0,1905.000000,1759.600000,extended,lora,180 +on12,0,0,24,1,0,330,4450.000000,113,0,5466.000000,1805.600000,extended,lora,180 +on11,0,0,24,1,0,581,4341.000000,113,0,12939.000000,1762.000000,extended,lora,180 +on10,0,0,24,1,0,405,4345.000000,113,0,8416.000000,1763.600000,extended,lora,180 +on3,0,0,24,1,0,3010,4430.000000,113,0,60231.000000,1797.600000,extended,lora,180 +on7,0,0,24,1,0,1800,4320.000000,113,0,38393.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,4108,4448.000000,113,0,80229.000000,1804.800000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,113,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,1724,4404.000000,113,0,35560.000000,1787.200000,extended,lora,180 +on9,0,0,24,1,0,383,4323.000000,113,0,8576.000000,1754.800000,extended,lora,180 +on0,1,11,24,0,0,0,4680.000000,113,0,-1.000000,2153.600000,extended,lora,180 +on4,0,0,24,1,0,2340,4320.000000,113,0,48740.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,153,4453.000000,113,0,2065.000000,1806.800000,extended,lora,180 +on5,0,0,24,1,0,3580,4460.000000,114,0,69067.000000,1809.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,114,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,209,4329.000000,114,0,5259.000000,1757.200000,extended,lora,180 +on7,0,0,24,1,0,3960,4320.000000,114,0,79913.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2537,4320.000000,114,0,52938.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,114,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,114,0,35756.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1901,4401.000000,114,0,39451.000000,1786.000000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,114,0,10144.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4591.000000,114,0,-1.000000,2092.400000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,114,0,907.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,272,4392.000000,114,0,5099.000000,1782.400000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,114,0,13703.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1080,4320.000000,115,0,23663.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4762.000000,115,0,-1.000000,2160.800000,extended,lora,180 +on12,0,0,24,1,0,470,4410.000000,115,0,10073.000000,1789.600000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,115,0,13465.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,347,4467.000000,115,0,4932.000000,1812.400000,extended,lora,180 +on8,0,0,24,1,0,644,4404.000000,115,0,13305.000000,1787.200000,extended,lora,180 +on1,0,0,24,1,0,1800,4320.000000,115,0,36240.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,2880,4320.000000,115,0,58285.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1495,4355.000000,115,0,29096.000000,1767.600000,extended,lora,180 +on3,0,0,24,1,0,105,4405.000000,115,0,2549.000000,1787.600000,extended,lora,180 +on5,0,0,24,1,0,3780,4320.000000,115,0,75926.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1134,4354.000000,116,0,25148.000000,1767.200000,extended,lora,180 +on9,0,0,24,1,0,337,4457.000000,116,0,5135.000000,1808.400000,extended,lora,180 +on6,0,0,24,1,0,414,4354.000000,116,0,7517.000000,1767.200000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,116,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,84,4384.000000,116,0,2257.000000,1779.200000,extended,lora,180 +on8,0,0,24,1,0,2646,4426.000000,116,0,53937.000000,1796.000000,extended,lora,180 +on1,0,0,24,1,0,2263,4403.000000,116,0,46080.000000,1786.800000,extended,lora,180 +on12,0,0,24,1,0,1440,4320.000000,116,0,29219.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3489,4369.000000,116,0,70391.000000,1773.200000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,116,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,105,4405.000000,116,0,2417.000000,1787.600000,extended,lora,180 +on11,0,0,24,1,0,2187,4327.000000,116,0,45920.000000,1756.400000,extended,lora,180 +on0,1,10,24,0,0,0,4621.000000,116,0,-1.000000,2104.400000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,117,0,17189.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,117,0,23576.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3900,4420.000000,117,0,76907.000000,1793.600000,extended,lora,180 +on12,0,0,24,1,0,1260,4320.000000,117,0,26873.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,4237,4397.000000,117,0,84895.000000,1784.400000,extended,lora,180 +on0,1,11,24,0,0,0,4721.000000,117,0,-1.000000,2170.000000,extended,lora,180 +on5,0,0,24,1,0,1440,4320.000000,117,0,29475.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2755,4355.000000,117,0,57499.000000,1767.600000,extended,lora,180 +on2,0,0,24,1,0,368,4320.000000,117,0,8598.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1980,4320.000000,117,0,40625.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,205,4325.000000,117,0,4076.000000,1755.600000,extended,lora,180 +on7,0,0,24,1,0,401,4341.000000,117,0,8438.000000,1762.000000,extended,lora,180 +on1,0,0,24,1,0,77,4377.000000,118,0,1916.000000,1776.400000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,118,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,2520,4320.000000,118,0,53728.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2407,4367.000000,118,0,48434.000000,1772.400000,extended,lora,180 +on0,1,11,24,0,0,0,4715.000000,118,0,-1.000000,2167.600000,extended,lora,180 +on5,0,0,24,1,0,2700,4320.000000,118,0,56733.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,180,4320.000000,118,0,6687.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1260,4320.000000,118,0,26360.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,145,4445.000000,118,0,1756.000000,1803.600000,extended,lora,180 +on3,0,0,24,1,0,669,4429.000000,118,0,12265.000000,1797.200000,extended,lora,180 +on11,0,0,24,1,0,392,4332.000000,118,0,9089.000000,1758.400000,extended,lora,180 +on12,0,0,24,1,0,403,4343.000000,118,0,8929.000000,1762.800000,extended,lora,180 +on2,0,0,24,1,0,3390,4450.000000,118,0,66638.000000,1805.600000,extended,lora,180 +on7,0,0,24,1,0,377,4320.000000,119,0,10269.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,451,4391.000000,119,0,10109.000000,1782.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,806,4386.000000,119,0,15152.000000,1780.000000,extended,lora,180 +on9,0,0,24,1,0,1771,4451.000000,119,0,34435.000000,1806.000000,extended,lora,180 +on6,0,0,24,1,0,1525,4385.000000,119,0,31992.000000,1779.600000,extended,lora,180 +on3,0,0,24,1,0,152,4452.000000,119,0,2547.000000,1806.400000,extended,lora,180 +on8,0,0,24,1,0,1260,4320.000000,119,0,26544.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,172,4472.000000,119,0,2707.000000,1814.400000,extended,lora,180 +on4,0,0,24,1,0,667,4427.000000,119,0,13550.000000,1796.400000,extended,lora,180 +on0,1,10,24,0,0,0,4849.000000,119,0,-1.000000,2195.600000,extended,lora,180 +on11,0,0,24,1,0,1467,4327.000000,119,0,32152.000000,1756.400000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,3600,4320.000000,120,0,72673.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1371,4411.000000,120,0,26119.000000,1790.000000,extended,lora,180 +on10,0,0,24,1,0,2880,4320.000000,120,0,58521.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1036,4436.000000,120,0,20561.000000,1800.000000,extended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,120,0,43801.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1440,4320.000000,120,0,31743.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4963.000000,120,0,-1.000000,2292.400000,extended,lora,180 +on4,0,0,24,1,0,128,4428.000000,120,0,2104.000000,1796.800000,extended,lora,180 +on11,0,0,24,1,0,3295,4355.000000,120,0,68318.000000,1767.600000,extended,lora,180 +on9,0,0,24,1,0,3,4320.000000,120,0,2264.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2276,4416.000000,120,0,43640.000000,1792.000000,extended,lora,180 +on6,0,0,24,1,0,952,4352.000000,120,0,20401.000000,1766.400000,extended,lora,180 +on3,0,0,24,1,0,2619,4399.000000,120,0,51830.000000,1785.200000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,121,0,19136.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,3240,4320.000000,121,0,67710.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,121,0,3448.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1620,4320.000000,121,0,34873.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,4295,4455.000000,121,0,84319.000000,1807.600000,extended,lora,180 +on0,1,9,24,0,0,0,4845.000000,121,0,-1.000000,2168.400000,extended,lora,180 +on12,0,0,24,1,0,1228,4448.000000,121,0,23970.000000,1804.800000,extended,lora,180 +on6,0,0,24,1,0,273,4393.000000,121,0,6125.000000,1782.800000,extended,lora,180 +on1,0,0,24,1,0,407,4347.000000,121,0,7675.000000,1764.400000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1101,4321.000000,121,0,24130.000000,1754.000000,extended,lora,180 +on1,0,0,24,1,0,1508,4368.000000,122,0,29370.000000,1772.800000,extended,lora,180 +on6,0,0,24,1,0,482,4422.000000,122,0,7730.000000,1794.400000,extended,lora,180 +on5,0,0,24,1,0,720,4320.000000,122,0,15344.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,478,4418.000000,122,0,7570.000000,1792.800000,extended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,122,0,29210.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,122,0,22718.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,extended,lora,180 +on0,1,11,24,0,0,0,5020.000000,122,0,-1.000000,2289.600000,extended,lora,180 +on3,0,0,24,1,0,54,4354.000000,122,0,3098.000000,1767.200000,extended,lora,180 +on4,0,0,24,1,0,947,4347.000000,122,0,20808.000000,1764.400000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,122,0,37587.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,69,4369.000000,122,0,2938.000000,1773.200000,extended,lora,180 +on2,0,0,24,1,0,3420,4320.000000,122,0,70233.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,153,4453.000000,123,0,1537.000000,1806.800000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,267,4387.000000,123,0,5978.000000,1780.400000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,123,0,33018.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4658.000000,123,0,-1.000000,2093.600000,extended,lora,180 +on5,0,0,24,1,0,2197,4337.000000,123,0,43476.000000,1760.400000,extended,lora,180 +on3,0,0,24,1,0,370,4320.000000,123,0,8100.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3600,4320.000000,123,0,75285.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1800,4320.000000,123,0,39548.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,123,0,19957.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,306,4426.000000,123,0,5818.000000,1796.000000,extended,lora,180 +on2,0,0,24,1,0,3909,4429.000000,124,0,77376.000000,1797.200000,extended,lora,180 +on12,0,0,24,1,0,841,4421.000000,124,0,16610.000000,1794.000000,extended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,124,0,44422.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3600,4320.000000,124,0,74475.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,3931,4451.000000,124,0,77216.000000,1806.000000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,124,0,23287.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4739.000000,124,0,-1.000000,2126.000000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,745,4325.000000,124,0,16770.000000,1755.600000,extended,lora,180 +on5,0,0,24,1,0,1655,4335.000000,124,0,34143.000000,1759.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,3060,4320.000000,124,0,62008.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,89,4389.000000,125,0,3523.000000,1781.200000,extended,lora,180 +on2,0,0,24,1,0,671,4431.000000,125,0,11417.000000,1798.000000,extended,lora,180 +on4,0,0,24,1,0,1019,4419.000000,125,0,21474.000000,1793.200000,extended,lora,180 +on7,0,0,24,1,0,360,4320.000000,125,0,8813.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,192,4320.000000,125,0,6596.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,720,4320.000000,125,0,15846.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3174,4414.000000,125,0,63160.000000,1791.200000,extended,lora,180 +on5,0,0,24,1,0,1087,4320.000000,125,0,22553.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1508,4368.000000,125,0,31660.000000,1772.800000,extended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,125,0,31839.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4853.000000,125,0,-1.000000,2248.400000,extended,lora,180 +on12,0,0,24,1,0,95,4395.000000,125,0,3363.000000,1783.600000,extended,lora,180 +on6,0,0,24,1,0,3109,4349.000000,125,0,63000.000000,1765.200000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,447,4387.000000,126,0,8501.000000,1780.400000,extended,lora,180 +on6,0,0,24,1,0,965,4365.000000,126,0,21235.000000,1771.600000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,126,0,40005.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,267,4387.000000,126,0,4209.000000,1780.400000,extended,lora,180 +on0,1,11,24,0,0,0,4774.000000,126,0,-1.000000,2191.200000,extended,lora,180 +on2,0,0,24,1,0,911,4320.000000,126,0,21075.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1438,4478.000000,126,0,27969.000000,1816.800000,extended,lora,180 +on11,0,0,24,1,0,2880,4320.000000,126,0,59832.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,126,0,39081.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3777,4477.000000,126,0,73309.000000,1816.400000,extended,lora,180 +on12,0,0,24,1,0,2351,4320.000000,126,0,47754.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2463,4423.000000,126,0,47914.000000,1794.800000,extended,lora,180 +on6,0,0,24,1,0,481,4421.000000,127,0,7971.000000,1794.000000,extended,lora,180 +on0,1,12,24,0,0,0,4958.000000,127,0,-1.000000,2290.400000,extended,lora,180 +on4,0,0,24,1,0,540,4320.000000,127,0,11513.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,900,4320.000000,127,0,20093.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2577,4357.000000,127,0,53714.000000,1768.400000,extended,lora,180 +on10,0,0,24,1,0,881,4461.000000,127,0,15287.000000,1810.000000,extended,lora,180 +on2,0,0,24,1,0,468,4408.000000,127,0,7811.000000,1788.800000,extended,lora,180 +on5,0,0,24,1,0,1671,4351.000000,127,0,33098.000000,1766.000000,extended,lora,180 +on1,0,0,24,1,0,46,4346.000000,127,0,1382.000000,1764.000000,extended,lora,180 +on8,0,0,24,1,0,1614,4474.000000,127,0,30505.000000,1815.200000,extended,lora,180 +on9,0,0,24,1,0,1558,4418.000000,127,0,30665.000000,1792.800000,extended,lora,180 +on12,0,0,24,1,0,2068,4388.000000,127,0,42297.000000,1780.800000,extended,lora,180 +on11,0,0,24,1,0,87,4387.000000,127,0,1222.000000,1780.400000,extended,lora,180 +on0,1,8,24,0,0,0,4591.000000,128,0,-1.000000,2041.200000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,128,0,15726.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,128,0,10016.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3166,4406.000000,128,0,61587.000000,1788.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1029,4429.000000,128,0,19050.000000,1797.200000,extended,lora,180 +on6,0,0,24,1,0,2608,4388.000000,128,0,51012.000000,1780.800000,extended,lora,180 +on11,0,0,24,1,0,2160,4320.000000,128,0,43598.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2095,4415.000000,128,0,41444.000000,1791.600000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,128,0,24847.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,900,4320.000000,129,0,20113.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,129,0,42047.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1803,4320.000000,129,0,37555.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2700,4320.000000,129,0,55290.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,736,4320.000000,129,0,17617.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2520,4320.000000,129,0,51272.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,319,4439.000000,129,0,7114.000000,1801.200000,extended,lora,180 +on2,0,0,24,1,0,2340,4320.000000,129,0,48176.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4870.000000,129,0,-1.000000,2255.200000,extended,lora,180 +on4,0,0,24,1,0,360,4320.000000,129,0,8159.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1410,4450.000000,129,0,28446.000000,1805.600000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,129,0,2710.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,540,4320.000000,129,0,11622.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2782,4382.000000,130,0,54659.000000,1778.400000,extended,lora,180 +on8,0,0,24,1,0,609,4369.000000,130,0,12030.000000,1773.200000,extended,lora,180 +on12,0,0,24,1,0,0,4320.000000,130,0,3378.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3960,4320.000000,130,0,81621.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1457,4320.000000,130,0,32353.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,130,0,5294.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,853,4433.000000,130,0,16585.000000,1798.800000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,130,0,8689.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,708,4468.000000,130,0,12190.000000,1812.800000,extended,lora,180 +on0,1,12,24,0,0,0,4979.000000,130,0,-1.000000,2298.800000,extended,lora,180 +on11,0,0,24,1,0,4140,4320.000000,130,0,85990.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2753,4353.000000,130,0,54819.000000,1766.800000,extended,lora,180 +on9,0,0,24,1,0,742,4322.000000,130,0,16745.000000,1754.400000,extended,lora,180 +on1,0,0,24,1,0,1544,4404.000000,131,0,29746.000000,1787.200000,extended,lora,180 +on6,0,0,24,1,0,2520,4320.000000,131,0,51655.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2753,4353.000000,131,0,56188.000000,1766.800000,extended,lora,180 +on5,0,0,24,1,0,158,4458.000000,131,0,1921.000000,1808.800000,extended,lora,180 +on3,0,0,24,1,0,1901,4401.000000,131,0,36717.000000,1786.000000,extended,lora,180 +on4,0,0,24,1,0,2520,4320.000000,131,0,51491.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,180,4320.000000,131,0,4745.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,168,4468.000000,131,0,2081.000000,1812.800000,extended,lora,180 +on12,0,0,24,1,0,519,4459.000000,131,0,8672.000000,1809.200000,extended,lora,180 +on11,0,0,24,1,0,3240,4320.000000,131,0,65721.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4904.000000,131,0,-1.000000,2268.800000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,131,0,13120.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,764,4344.000000,131,0,14813.000000,1763.200000,extended,lora,180 +on10,0,0,24,1,0,180,4320.000000,132,0,4517.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,69,4369.000000,132,0,1019.000000,1773.200000,extended,lora,180 +on5,0,0,24,1,0,1620,4320.000000,132,0,35755.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,132,0,37218.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2160,4320.000000,132,0,44896.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,132,0,12144.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3509,4389.000000,132,0,69309.000000,1781.200000,extended,lora,180 +on8,0,0,24,1,0,64,4364.000000,132,0,1179.000000,1771.200000,extended,lora,180 +on0,1,12,24,0,0,0,4897.000000,132,0,-1.000000,2266.000000,extended,lora,180 +on2,0,0,24,1,0,1364,4404.000000,132,0,26917.000000,1787.200000,extended,lora,180 +on3,0,0,24,1,0,2770,4370.000000,132,0,57415.000000,1773.600000,extended,lora,180 +on4,0,0,24,1,0,3307,4367.000000,132,0,66107.000000,1772.400000,extended,lora,180 +on1,0,0,24,1,0,2700,4320.000000,132,0,57255.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,130,4430.000000,133,0,2891.000000,1797.600000,extended,lora,180 +on8,0,0,24,1,0,2290,4430.000000,133,0,45821.000000,1797.600000,extended,lora,180 +on2,0,0,24,1,0,223,4343.000000,133,0,4802.000000,1762.800000,extended,lora,180 +on5,0,0,24,1,0,2700,4320.000000,133,0,54373.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,133,0,18614.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2238,4378.000000,133,0,45661.000000,1776.800000,extended,lora,180 +on11,0,0,24,1,0,441,4381.000000,133,0,9863.000000,1778.000000,extended,lora,180 +on4,0,0,24,1,0,2064,4384.000000,133,0,41740.000000,1779.200000,extended,lora,180 +on0,1,12,24,0,0,0,4928.000000,133,0,-1.000000,2278.400000,extended,lora,180 +on9,0,0,24,1,0,720,4320.000000,133,0,14970.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2706,4320.000000,133,0,54533.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3467,4347.000000,133,0,70732.000000,1764.400000,extended,lora,180 +on12,0,0,24,1,0,140,4440.000000,133,0,3051.000000,1801.600000,extended,lora,180 +on8,0,0,24,1,0,1283,4323.000000,134,0,27443.000000,1754.800000,extended,lora,180 +on2,0,0,24,1,0,3744,4444.000000,134,0,74062.000000,1803.200000,extended,lora,180 +on0,1,9,24,0,0,0,4775.000000,134,0,-1.000000,2140.400000,extended,lora,180 +on11,0,0,24,1,0,613,4373.000000,134,0,11760.000000,1774.800000,extended,lora,180 +on1,0,0,24,1,0,1298,4338.000000,134,0,27283.000000,1760.800000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,361,4320.000000,134,0,9421.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1440,4320.000000,134,0,31570.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,134,0,18764.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1649,4329.000000,134,0,32767.000000,1757.200000,extended,lora,180 +on3,0,0,24,1,0,653,4413.000000,134,0,11920.000000,1790.800000,extended,lora,180 +on9,0,0,24,1,0,2880,4320.000000,135,0,59271.000000,1753.600000,extended,lora,180 +on0,1,8,24,0,0,0,4578.000000,135,0,-1.000000,2036.000000,extended,lora,180 +on4,0,0,24,1,0,851,4431.000000,135,0,17270.000000,1798.000000,extended,lora,180 +on6,0,0,24,1,0,3323,4383.000000,135,0,65839.000000,1778.800000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,135,0,23730.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,412,4352.000000,135,0,7919.000000,1766.400000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,135,0,8084.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,276,4396.000000,135,0,4682.000000,1784.000000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,135,0,2755.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,366,4320.000000,136,0,8387.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1389,4429.000000,136,0,26916.000000,1797.200000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,136,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,3467,4347.000000,136,0,69863.000000,1764.400000,extended,lora,180 +on0,1,11,24,0,0,0,4964.000000,136,0,-1.000000,2267.200000,extended,lora,180 +on10,0,0,24,1,0,1380,4420.000000,136,0,26756.000000,1793.600000,extended,lora,180 +on6,0,0,24,1,0,915,4320.000000,136,0,20977.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1819,4320.000000,136,0,36830.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,512,4452.000000,136,0,8547.000000,1806.400000,extended,lora,180 +on5,0,0,24,1,0,1620,4320.000000,136,0,34368.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2520,4320.000000,136,0,53632.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1009,4409.000000,136,0,21137.000000,1789.200000,extended,lora,180 +on4,0,0,24,1,0,809,4389.000000,136,0,15283.000000,1781.200000,extended,lora,180 +on12,0,0,24,1,0,591,4351.000000,137,0,13292.000000,1766.000000,extended,lora,180 +on1,0,0,24,1,0,3755,4455.000000,137,0,72360.000000,1807.600000,extended,lora,180 +on6,0,0,24,1,0,222,4342.000000,137,0,6276.000000,1762.400000,extended,lora,180 +on7,0,0,24,1,0,229,4349.000000,137,0,6436.000000,1765.200000,extended,lora,180 +on5,0,0,24,1,0,1440,4320.000000,137,0,29316.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,753,4333.000000,137,0,16624.000000,1758.800000,extended,lora,180 +on2,0,0,24,1,0,3212,4452.000000,137,0,63004.000000,1806.400000,extended,lora,180 +on10,0,0,24,1,0,4240,4400.000000,137,0,84938.000000,1785.600000,extended,lora,180 +on0,1,12,24,0,0,0,4738.000000,137,0,-1.000000,2202.400000,extended,lora,180 +on9,0,0,24,1,0,2546,4326.000000,137,0,53487.000000,1756.000000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,137,0,514.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,994,4394.000000,137,0,18365.000000,1783.200000,extended,lora,180 +on3,0,0,24,1,0,2503,4463.000000,137,0,48936.000000,1810.800000,extended,lora,180 +on9,0,0,24,1,0,3346,4406.000000,138,0,66372.000000,1788.000000,extended,lora,180 +on8,0,0,24,1,0,1135,4355.000000,138,0,24510.000000,1767.600000,extended,lora,180 +on6,0,0,24,1,0,104,4404.000000,138,0,1759.000000,1787.200000,extended,lora,180 +on3,0,0,24,1,0,802,4382.000000,138,0,15498.000000,1778.400000,extended,lora,180 +on11,0,0,24,1,0,900,4320.000000,138,0,20622.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1199,4419.000000,138,0,24350.000000,1793.200000,extended,lora,180 +on10,0,0,24,1,0,1800,4320.000000,138,0,39225.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,540,4320.000000,138,0,13294.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2880,4320.000000,138,0,59977.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3743,4443.000000,138,0,75555.000000,1802.800000,extended,lora,180 +on1,0,0,24,1,0,1620,4320.000000,138,0,35106.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,695,4455.000000,138,0,13116.000000,1807.600000,extended,lora,180 +on0,1,12,24,0,0,0,4942.000000,138,0,-1.000000,2284.000000,extended,lora,180 +on0,1,11,24,0,0,0,4910.000000,139,0,-1.000000,2245.600000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,139,0,14224.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,189,4320.000000,139,0,4222.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,729,4320.000000,139,0,16693.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1064,4464.000000,139,0,20433.000000,1811.200000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,139,0,4062.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1262,4320.000000,139,0,26103.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,510,4450.000000,139,0,10207.000000,1805.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,417,4357.000000,139,0,10367.000000,1768.400000,extended,lora,180 +on4,0,0,24,1,0,886,4466.000000,139,0,16533.000000,1812.000000,extended,lora,180 +on2,0,0,24,1,0,4,4320.000000,139,0,3506.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1300,4340.000000,139,0,26263.000000,1761.600000,extended,lora,180 +on10,0,0,24,1,0,335,4455.000000,140,0,5196.000000,1807.600000,extended,lora,180 +on8,0,0,24,1,0,1716,4396.000000,140,0,34303.000000,1784.000000,extended,lora,180 +on3,0,0,24,1,0,862,4442.000000,140,0,15803.000000,1802.400000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,140,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1440,4320.000000,140,0,30369.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,559,4320.000000,140,0,11476.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,897,4477.000000,140,0,15643.000000,1816.400000,extended,lora,180 +on5,0,0,24,1,0,1980,4320.000000,140,0,41518.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1579,4439.000000,140,0,30529.000000,1801.200000,extended,lora,180 +on1,0,0,24,1,0,2520,4320.000000,140,0,51205.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1798,4478.000000,140,0,34143.000000,1816.800000,extended,lora,180 +on4,0,0,24,1,0,615,4375.000000,140,0,11316.000000,1775.600000,extended,lora,180 +on0,1,11,24,0,0,0,5038.000000,140,0,-1.000000,2296.800000,extended,lora,180 +on5,0,0,24,1,0,3471,4351.000000,141,0,71060.000000,1766.000000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,321,4441.000000,141,0,5571.000000,1802.000000,extended,lora,180 +on2,0,0,24,1,0,790,4370.000000,141,0,15670.000000,1773.600000,extended,lora,180 +on6,0,0,24,1,0,1273,4320.000000,141,0,25761.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2520,4320.000000,141,0,51036.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4594.000000,141,0,-1.000000,2119.200000,extended,lora,180 +on1,0,0,24,1,0,41,4341.000000,141,0,781.000000,1762.000000,extended,lora,180 +on9,0,0,24,1,0,1239,4459.000000,141,0,24979.000000,1809.200000,extended,lora,180 +on7,0,0,24,1,0,3676,4376.000000,141,0,73735.000000,1776.000000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,141,0,25158.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1670,4350.000000,141,0,34970.000000,1765.600000,extended,lora,180 +on3,0,0,24,1,0,3346,4406.000000,141,0,65377.000000,1788.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,3149,4389.000000,142,0,62890.000000,1781.200000,extended,lora,180 +on9,0,0,24,1,0,2133,4453.000000,142,0,40013.000000,1806.800000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,142,0,6451.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,536,4476.000000,142,0,8381.000000,1816.000000,extended,lora,180 +on0,1,11,24,0,0,0,4890.000000,142,0,-1.000000,2237.600000,extended,lora,180 +on4,0,0,24,1,0,2046,4366.000000,142,0,40173.000000,1772.000000,extended,lora,180 +on7,0,0,24,1,0,1260,4320.000000,142,0,28350.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,142,0,2166.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,500,4440.000000,142,0,8541.000000,1801.600000,extended,lora,180 +on11,0,0,24,1,0,878,4458.000000,142,0,15758.000000,1808.800000,extended,lora,180 +on6,0,0,24,1,0,2520,4320.000000,142,0,53655.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,540,4320.000000,142,0,14225.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,540,4320.000000,143,0,11678.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2520,4320.000000,143,0,51132.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1694,4374.000000,143,0,32720.000000,1775.200000,extended,lora,180 +on0,1,12,24,0,0,0,4877.000000,143,0,-1.000000,2258.000000,extended,lora,180 +on2,0,0,24,1,0,0,4320.000000,143,0,2779.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1198,4418.000000,143,0,24265.000000,1792.800000,extended,lora,180 +on1,0,0,24,1,0,1852,4352.000000,143,0,37391.000000,1766.400000,extended,lora,180 +on5,0,0,24,1,0,2340,4320.000000,143,0,47898.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1035,4435.000000,143,0,20202.000000,1799.600000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,143,0,6194.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1440,4320.000000,143,0,30840.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1830,4330.000000,143,0,37551.000000,1757.600000,extended,lora,180 +on8,0,0,24,1,0,2713,4320.000000,143,0,54984.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1147,4367.000000,144,0,24892.000000,1772.400000,extended,lora,180 +on11,0,0,24,1,0,3922,4442.000000,144,0,78102.000000,1802.400000,extended,lora,180 +on6,0,0,24,1,0,539,4479.000000,144,0,9475.000000,1817.200000,extended,lora,180 +on5,0,0,24,1,0,1631,4320.000000,144,0,33216.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4764.000000,144,0,-1.000000,2212.800000,extended,lora,180 +on2,0,0,24,1,0,2700,4320.000000,144,0,55370.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,849,4429.000000,144,0,17141.000000,1797.200000,extended,lora,180 +on9,0,0,24,1,0,3178,4418.000000,144,0,62951.000000,1792.800000,extended,lora,180 +on1,0,0,24,1,0,1001,4401.000000,144,0,20107.000000,1786.000000,extended,lora,180 +on8,0,0,24,1,0,1122,4342.000000,144,0,24732.000000,1762.400000,extended,lora,180 +on7,0,0,24,1,0,810,4390.000000,144,0,16981.000000,1781.600000,extended,lora,180 +on10,0,0,24,1,0,2230,4370.000000,144,0,45621.000000,1773.600000,extended,lora,180 +on12,0,0,24,1,0,436,4376.000000,144,0,9635.000000,1776.000000,extended,lora,180 +on3,0,0,24,1,0,0,4320.000000,145,0,2458.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,145,0,6498.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,145,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1023,4423.000000,145,0,21442.000000,1794.800000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,145,0,17088.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,145,0,33390.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2189,4329.000000,145,0,44900.000000,1757.200000,extended,lora,180 +on10,0,0,24,1,0,1260,4320.000000,145,0,26350.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1440,4320.000000,145,0,31810.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2302,4442.000000,145,0,45060.000000,1802.400000,extended,lora,180 +on0,1,10,24,0,0,0,4892.000000,145,0,-1.000000,2212.800000,extended,lora,180 +on5,0,0,24,1,0,2880,4320.000000,145,0,58736.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,145,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,2880,4320.000000,146,0,60742.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2520,4320.000000,146,0,52342.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,59,4359.000000,146,0,1683.000000,1769.200000,extended,lora,180 +on11,0,0,24,1,0,264,4384.000000,146,0,4661.000000,1779.200000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,146,0,1523.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1780,4460.000000,146,0,33414.000000,1809.600000,extended,lora,180 +on12,0,0,24,1,0,817,4397.000000,146,0,17621.000000,1784.400000,extended,lora,180 +on2,0,0,24,1,0,1460,4320.000000,146,0,30534.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3808,4328.000000,146,0,77698.000000,1756.800000,extended,lora,180 +on4,0,0,24,1,0,1501,4361.000000,146,0,30694.000000,1770.000000,extended,lora,180 +on0,1,12,24,0,0,0,4692.000000,146,0,-1.000000,2184.000000,extended,lora,180 +on3,0,0,24,1,0,1166,4386.000000,146,0,22380.000000,1780.000000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,146,0,11708.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2814,4414.000000,147,0,56639.000000,1791.200000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,147,0,7471.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,329,4449.000000,147,0,6809.000000,1805.200000,extended,lora,180 +on0,1,11,24,0,0,0,4716.000000,147,0,-1.000000,2168.000000,extended,lora,180 +on12,0,0,24,1,0,540,4320.000000,147,0,14047.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,772,4352.000000,147,0,17359.000000,1766.400000,extended,lora,180 +on4,0,0,24,1,0,748,4328.000000,147,0,17519.000000,1756.800000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,147,0,33668.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,697,4457.000000,147,0,13885.000000,1808.400000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,2308,4448.000000,147,0,44625.000000,1804.800000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,147,0,26866.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,0,4320.000000,147,0,3117.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4632.000000,148,0,-1.000000,2083.200000,extended,lora,180 +on7,0,0,24,1,0,1585,4445.000000,148,0,30980.000000,1803.600000,extended,lora,180 +on2,0,0,24,1,0,607,4367.000000,148,0,12822.000000,1772.400000,extended,lora,180 +on11,0,0,24,1,0,3494,4374.000000,148,0,71220.000000,1775.200000,extended,lora,180 +on1,0,0,24,1,0,1301,4341.000000,148,0,27311.000000,1762.000000,extended,lora,180 +on5,0,0,24,1,0,716,4476.000000,148,0,12982.000000,1816.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,1618,4478.000000,148,0,30820.000000,1816.800000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,148,0,9544.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,985,4385.000000,148,0,20919.000000,1779.600000,extended,lora,180 +on6,0,0,24,1,0,1627,4320.000000,148,0,34317.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,2520,4320.000000,149,0,52901.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,2559,4339.000000,149,0,53061.000000,1761.200000,extended,lora,180 +on5,0,0,24,1,0,180,4320.000000,149,0,6483.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1776,4456.000000,149,0,35121.000000,1808.000000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,149,0,3300.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3170,4410.000000,149,0,63705.000000,1789.600000,extended,lora,180 +on3,0,0,24,1,0,3379,4439.000000,149,0,66651.000000,1801.200000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,149,0,23659.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4720.000000,149,0,-1.000000,2144.000000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,3729,4429.000000,149,0,74382.000000,1797.200000,extended,lora,180 +on8,0,0,24,1,0,1883,4383.000000,149,0,37429.000000,1778.800000,extended,lora,180 +on8,0,0,24,1,0,1065,4465.000000,150,0,20994.000000,1811.600000,extended,lora,180 +on4,0,0,24,1,0,3041,4461.000000,150,0,60340.000000,1810.000000,extended,lora,180 +on11,0,0,24,1,0,631,4391.000000,150,0,13809.000000,1782.000000,extended,lora,180 +on2,0,0,24,1,0,3170,4410.000000,150,0,62266.000000,1789.600000,extended,lora,180 +on9,0,0,24,1,0,407,4347.000000,150,0,9033.000000,1764.400000,extended,lora,180 +on1,0,0,24,1,0,1380,4420.000000,150,0,28655.000000,1793.600000,extended,lora,180 +on3,0,0,24,1,0,1146,4366.000000,150,0,24918.000000,1772.000000,extended,lora,180 +on12,0,0,24,1,0,360,4320.000000,150,0,9202.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1800,4320.000000,150,0,39056.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4780.000000,150,0,-1.000000,2219.200000,extended,lora,180 +on10,0,0,24,1,0,736,4320.000000,150,0,14943.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,612,4372.000000,150,0,13969.000000,1774.400000,extended,lora,180 +on7,0,0,24,1,0,1340,4380.000000,150,0,28815.000000,1777.600000,extended,lora,180 +on0,1,11,24,0,0,0,5133.000000,151,0,-1.000000,2334.800000,extended,lora,180 +on8,0,0,24,1,0,275,4395.000000,151,0,5776.000000,1783.600000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,151,0,13743.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,151,0,462.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1800,4320.000000,151,0,38508.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,727,4320.000000,151,0,15491.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3105,4345.000000,151,0,63020.000000,1763.600000,extended,lora,180 +on9,0,0,24,1,0,1604,4464.000000,151,0,31854.000000,1811.200000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,151,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,1620,4320.000000,151,0,33972.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,351,4471.000000,151,0,5616.000000,1814.000000,extended,lora,180 +on11,0,0,24,1,0,766,4346.000000,151,0,15331.000000,1764.000000,extended,lora,180 +on5,0,0,24,1,0,2700,4320.000000,151,0,55173.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,227,4347.000000,152,0,4583.000000,1764.400000,extended,lora,180 +on3,0,0,24,1,0,546,4320.000000,152,0,14367.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,989,4389.000000,152,0,20914.000000,1781.200000,extended,lora,180 +on10,0,0,24,1,0,1965,4465.000000,152,0,37975.000000,1811.600000,extended,lora,180 +on12,0,0,24,1,0,1583,4443.000000,152,0,30137.000000,1802.800000,extended,lora,180 +on11,0,0,24,1,0,1620,4320.000000,152,0,34246.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,152,0,40678.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,152,0,10114.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2538,4320.000000,152,0,52064.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4653.000000,152,0,-1.000000,2168.400000,extended,lora,180 +on2,0,0,24,1,0,635,4395.000000,152,0,14207.000000,1783.600000,extended,lora,180 +on1,0,0,24,1,0,822,4402.000000,152,0,15199.000000,1786.400000,extended,lora,180 +on6,0,0,24,1,0,1077,4477.000000,152,0,20754.000000,1816.400000,extended,lora,180 +on12,0,0,24,1,0,3129,4369.000000,153,0,62505.000000,1773.200000,extended,lora,180 +on5,0,0,24,1,0,3240,4320.000000,153,0,66222.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4622.000000,153,0,-1.000000,2156.000000,extended,lora,180 +on6,0,0,24,1,0,4140,4320.000000,153,0,83812.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3592,4472.000000,153,0,69359.000000,1814.400000,extended,lora,180 +on11,0,0,24,1,0,826,4406.000000,153,0,17234.000000,1788.000000,extended,lora,180 +on4,0,0,24,1,0,2289,4429.000000,153,0,46398.000000,1797.200000,extended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,153,0,26211.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,751,4331.000000,153,0,17074.000000,1758.000000,extended,lora,180 +on9,0,0,24,1,0,900,4320.000000,153,0,18567.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,400,4340.000000,153,0,9542.000000,1761.600000,extended,lora,180 +on2,0,0,24,1,0,241,4361.000000,153,0,5600.000000,1770.000000,extended,lora,180 +on10,0,0,24,1,0,3381,4441.000000,153,0,66382.000000,1802.000000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,154,0,5743.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,11,4320.000000,154,0,3425.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,387,4327.000000,154,0,9054.000000,1756.400000,extended,lora,180 +on12,0,0,24,1,0,2938,4358.000000,154,0,59330.000000,1768.800000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,669,4429.000000,154,0,13880.000000,1797.200000,extended,lora,180 +on7,0,0,24,1,0,4153,4320.000000,154,0,84705.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4893.000000,154,0,-1.000000,2238.800000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,154,0,34565.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,154,0,13720.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,474,4414.000000,154,0,8894.000000,1791.200000,extended,lora,180 +on3,0,0,24,1,0,3344,4404.000000,154,0,65080.000000,1787.200000,extended,lora,180 +on4,0,0,24,1,0,35,4335.000000,154,0,3265.000000,1759.600000,extended,lora,180 +on1,0,0,24,1,0,2340,4320.000000,155,0,47902.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2520,4320.000000,155,0,52918.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,965,4365.000000,155,0,20374.000000,1771.600000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,155,0,14075.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1620,4320.000000,155,0,32679.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3147,4387.000000,155,0,64189.000000,1780.400000,extended,lora,180 +on2,0,0,24,1,0,720,4320.000000,155,0,15882.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,155,0,2818.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2716,4320.000000,155,0,54255.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3240,4320.000000,155,0,65818.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3236,4476.000000,155,0,64029.000000,1816.000000,extended,lora,180 +on0,1,12,24,0,0,0,4928.000000,155,0,-1.000000,2278.400000,extended,lora,180 +on12,0,0,24,1,0,4140,4320.000000,155,0,86357.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2700,4320.000000,156,0,55157.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2520,4320.000000,156,0,52372.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,540,4320.000000,156,0,12028.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,882,4462.000000,156,0,15157.000000,1810.400000,extended,lora,180 +on7,0,0,24,1,0,1980,4320.000000,156,0,39927.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,502,4442.000000,156,0,10096.000000,1802.400000,extended,lora,180 +on8,0,0,24,1,0,435,4375.000000,156,0,9936.000000,1775.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,extended,lora,180 +on0,1,9,24,0,0,0,4798.000000,156,0,-1.000000,2149.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,3259,4320.000000,156,0,68069.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,919,4320.000000,156,0,20980.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1217,4437.000000,157,0,24085.000000,1800.400000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,24,0,0,0,4846.000000,157,0,-1.000000,2194.400000,extended,lora,180 +on7,0,0,24,1,0,164,4464.000000,157,0,1994.000000,1811.200000,extended,lora,180 +on10,0,0,24,1,0,2823,4423.000000,157,0,54566.000000,1794.800000,extended,lora,180 +on3,0,0,24,1,0,2340,4320.000000,157,0,49889.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,157,0,6213.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,157,0,8520.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1124,4344.000000,157,0,24245.000000,1763.200000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,100,4400.000000,157,0,2154.000000,1785.600000,extended,lora,180 +on12,0,0,24,1,0,3060,4320.000000,157,0,63685.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1892,4392.000000,157,0,37328.000000,1782.400000,extended,lora,180 +on12,0,0,24,1,0,3037,4457.000000,158,0,59549.000000,1808.400000,extended,lora,180 +on8,0,0,24,1,0,1647,4327.000000,158,0,33434.000000,1756.400000,extended,lora,180 +on7,0,0,24,1,0,3480,4360.000000,158,0,70213.000000,1769.600000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,158,0,2358.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1443,4320.000000,158,0,31336.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3960,4320.000000,158,0,80341.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,238,4358.000000,158,0,5350.000000,1768.800000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,158,0,11726.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4644.000000,158,0,-1.000000,2139.200000,extended,lora,180 +on1,0,0,24,1,0,277,4397.000000,158,0,5510.000000,1784.400000,extended,lora,180 +on3,0,0,24,1,0,360,4320.000000,158,0,10594.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,876,4456.000000,158,0,16028.000000,1808.000000,extended,lora,180 +on10,0,0,24,1,0,1688,4368.000000,159,0,35883.000000,1772.800000,extended,lora,180 +on8,0,0,24,1,0,180,4320.000000,159,0,4698.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,159,0,16061.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3217,4457.000000,159,0,63204.000000,1808.400000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,159,0,866.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,13,4320.000000,159,0,1026.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,417,4357.000000,159,0,10279.000000,1768.400000,extended,lora,180 +on5,0,0,24,1,0,657,4417.000000,159,0,12108.000000,1792.400000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,159,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1510,4370.000000,159,0,31908.000000,1773.600000,extended,lora,180 +on4,0,0,24,1,0,2160,4320.000000,159,0,43917.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4919.000000,159,0,-1.000000,2249.200000,extended,lora,180 +on9,0,0,24,1,0,638,4398.000000,159,0,11948.000000,1784.800000,extended,lora,180 +on11,0,0,24,1,0,2633,4413.000000,160,0,53762.000000,1790.800000,extended,lora,180 +on6,0,0,24,1,0,2700,4320.000000,160,0,55048.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,829,4409.000000,160,0,17046.000000,1789.200000,extended,lora,180 +on9,0,0,24,1,0,1778,4458.000000,160,0,35385.000000,1808.800000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,160,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,1911,4411.000000,160,0,39351.000000,1790.000000,extended,lora,180 +on0,1,11,24,0,0,0,4734.000000,160,0,-1.000000,2175.200000,extended,lora,180 +on3,0,0,24,1,0,0,4320.000000,160,0,2882.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2113,4433.000000,160,0,41302.000000,1798.800000,extended,lora,180 +on5,0,0,24,1,0,2121,4441.000000,160,0,41462.000000,1802.000000,extended,lora,180 +on12,0,0,24,1,0,655,4415.000000,160,0,11502.000000,1791.600000,extended,lora,180 +on10,0,0,24,1,0,369,4320.000000,160,0,8038.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,688,4448.000000,160,0,11662.000000,1804.800000,extended,lora,180 +on2,0,0,24,1,0,1,4320.000000,161,0,1927.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3436,4320.000000,161,0,69069.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2394,4354.000000,161,0,48121.000000,1767.200000,extended,lora,180 +on1,0,0,24,1,0,900,4320.000000,161,0,19509.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1620,4320.000000,161,0,34655.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,525,4465.000000,161,0,9747.000000,1811.600000,extended,lora,180 +on4,0,0,24,1,0,1471,4331.000000,161,0,29120.000000,1758.000000,extended,lora,180 +on0,1,12,24,0,0,0,4813.000000,161,0,-1.000000,2232.400000,extended,lora,180 +on11,0,0,24,1,0,4140,4320.000000,161,0,85059.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3960,4320.000000,161,0,80936.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,828,4408.000000,161,0,17833.000000,1788.800000,extended,lora,180 +on6,0,0,24,1,0,2378,4338.000000,161,0,48281.000000,1760.800000,extended,lora,180 +on12,0,0,24,1,0,1230,4450.000000,161,0,24443.000000,1805.600000,extended,lora,180 +on11,0,0,24,1,0,773,4353.000000,162,0,14630.000000,1766.800000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,2031,4351.000000,162,0,40927.000000,1766.000000,extended,lora,180 +on1,0,0,24,1,0,2288,4428.000000,162,0,44214.000000,1796.800000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1260,4320.000000,162,0,26955.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,719,4479.000000,162,0,11155.000000,1817.200000,extended,lora,180 +on7,0,0,24,1,0,209,4329.000000,162,0,6592.000000,1757.200000,extended,lora,180 +on5,0,0,24,1,0,3763,4463.000000,162,0,73612.000000,1810.800000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,162,0,513.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4603.000000,162,0,-1.000000,2097.200000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,162,0,37953.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1139,4359.000000,162,0,25098.000000,1769.200000,extended,lora,180 +on5,0,0,24,1,0,1192,4412.000000,163,0,23765.000000,1790.400000,extended,lora,180 +on8,0,0,24,1,0,1440,4320.000000,163,0,29833.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,533,4473.000000,163,0,9968.000000,1814.800000,extended,lora,180 +on1,0,0,24,1,0,2422,4382.000000,163,0,50043.000000,1778.400000,extended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,163,0,53838.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,345,4465.000000,163,0,4772.000000,1811.600000,extended,lora,180 +on0,1,12,24,0,0,0,4813.000000,163,0,-1.000000,2232.400000,extended,lora,180 +on7,0,0,24,1,0,668,4428.000000,163,0,13263.000000,1796.800000,extended,lora,180 +on9,0,0,24,1,0,374,4320.000000,163,0,10128.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2782,4382.000000,163,0,56969.000000,1778.400000,extended,lora,180 +on12,0,0,24,1,0,1247,4467.000000,163,0,23605.000000,1812.400000,extended,lora,180 +on4,0,0,24,1,0,1680,4360.000000,163,0,35372.000000,1769.600000,extended,lora,180 +on11,0,0,24,1,0,233,4353.000000,163,0,4932.000000,1766.800000,extended,lora,180 +on8,0,0,24,1,0,180,4320.000000,164,0,7033.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,164,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,488,4428.000000,164,0,10393.000000,1796.800000,extended,lora,180 +on11,0,0,24,1,0,1495,4355.000000,164,0,32105.000000,1767.600000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,164,0,33351.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1260,4320.000000,164,0,27620.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,5021.000000,164,0,-1.000000,2264.400000,extended,lora,180 +on2,0,0,24,1,0,1400,4440.000000,164,0,27443.000000,1801.600000,extended,lora,180 +on6,0,0,24,1,0,521,4461.000000,164,0,10233.000000,1810.000000,extended,lora,180 +on10,0,0,24,1,0,3479,4359.000000,164,0,69830.000000,1769.200000,extended,lora,180 +on3,0,0,24,1,0,720,4320.000000,164,0,16268.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,164,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,1800,4320.000000,164,0,37828.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2977,4397.000000,165,0,58684.000000,1784.400000,extended,lora,180 +on7,0,0,24,1,0,1440,4320.000000,165,0,29793.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1293,4333.000000,165,0,27821.000000,1758.800000,extended,lora,180 +on3,0,0,24,1,0,2331,4471.000000,165,0,44797.000000,1814.000000,extended,lora,180 +on8,0,0,24,1,0,479,4419.000000,165,0,9844.000000,1793.200000,extended,lora,180 +on0,1,12,24,0,0,0,4999.000000,165,0,-1.000000,2306.800000,extended,lora,180 +on4,0,0,24,1,0,1354,4394.000000,165,0,27981.000000,1783.200000,extended,lora,180 +on12,0,0,24,1,0,2700,4320.000000,165,0,55734.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,585,4345.000000,165,0,12526.000000,1763.600000,extended,lora,180 +on2,0,0,24,1,0,1080,4320.000000,165,0,23556.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2376,4336.000000,165,0,48516.000000,1760.000000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,165,0,5340.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,463,4403.000000,165,0,10004.000000,1786.800000,extended,lora,180 +on5,0,0,24,1,0,2700,4320.000000,166,0,56481.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,166,0,6427.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4753.000000,166,0,-1.000000,2182.800000,extended,lora,180 +on2,0,0,24,1,0,360,4320.000000,166,0,8519.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1979,4479.000000,166,0,36387.000000,1817.200000,extended,lora,180 +on4,0,0,24,1,0,141,4441.000000,166,0,1230.000000,1802.000000,extended,lora,180 +on1,0,0,24,1,0,144,4444.000000,166,0,1390.000000,1803.200000,extended,lora,180 +on6,0,0,24,1,0,3055,4475.000000,166,0,60110.000000,1815.600000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,166,0,18910.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2443,4403.000000,166,0,49454.000000,1786.800000,extended,lora,180 +on10,0,0,24,1,0,540,4320.000000,166,0,12787.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2242,4382.000000,166,0,45231.000000,1778.400000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,166,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,3655,4355.000000,167,0,74243.000000,1767.600000,extended,lora,180 +on1,0,0,24,1,0,287,4407.000000,167,0,6013.000000,1788.400000,extended,lora,180 +on10,0,0,24,1,0,1114,4334.000000,167,0,24548.000000,1759.200000,extended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,167,0,37623.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,51,4351.000000,167,0,2372.000000,1766.000000,extended,lora,180 +on0,1,11,24,0,0,0,4710.000000,167,0,-1.000000,2165.600000,extended,lora,180 +on2,0,0,24,1,0,1635,4320.000000,167,0,33020.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,166,4466.000000,167,0,2532.000000,1812.000000,extended,lora,180 +on12,0,0,24,1,0,360,4320.000000,167,0,8155.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3240,4320.000000,167,0,68207.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,167,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,490,4430.000000,167,0,8315.000000,1797.600000,extended,lora,180 +on6,0,0,24,1,0,799,4379.000000,167,0,15333.000000,1777.200000,extended,lora,180 +on11,0,0,24,1,0,1608,4468.000000,168,0,29595.000000,1812.800000,extended,lora,180 +on2,0,0,24,1,0,1492,4352.000000,168,0,29755.000000,1766.400000,extended,lora,180 +on6,0,0,24,1,0,900,4320.000000,168,0,21282.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,168,0,8901.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,553,4320.000000,168,0,11258.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,639,4399.000000,168,0,11098.000000,1785.200000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,168,0,5517.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1688,4368.000000,168,0,33164.000000,1772.800000,extended,lora,180 +on0,1,12,24,0,0,0,5018.000000,168,0,-1.000000,2314.400000,extended,lora,180 +on7,0,0,24,1,0,1946,4446.000000,168,0,37146.000000,1804.000000,extended,lora,180 +on4,0,0,24,1,0,1855,4355.000000,168,0,37306.000000,1767.600000,extended,lora,180 +on3,0,0,24,1,0,3600,4320.000000,168,0,74518.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,154,4454.000000,168,0,559.000000,1807.200000,extended,lora,180 +on4,0,0,24,1,0,2594,4374.000000,169,0,52128.000000,1775.200000,extended,lora,180 +on6,0,0,24,1,0,2036,4356.000000,169,0,40723.000000,1768.000000,extended,lora,180 +on11,0,0,24,1,0,2700,4320.000000,169,0,55935.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,169,0,24280.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,173,4473.000000,169,0,1697.000000,1814.800000,extended,lora,180 +on1,0,0,24,1,0,268,4388.000000,169,0,4606.000000,1780.800000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,169,0,20660.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,360,4320.000000,169,0,9449.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4707.000000,169,0,-1.000000,2164.400000,extended,lora,180 +on3,0,0,24,1,0,696,4456.000000,169,0,13506.000000,1808.000000,extended,lora,180 +on10,0,0,24,1,0,1980,4320.000000,169,0,40900.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1260,4320.000000,169,0,25963.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,170,0,32873.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1260,4320.000000,170,0,27256.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2880,4320.000000,170,0,59564.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,675,4435.000000,170,0,11314.000000,1799.600000,extended,lora,180 +on8,0,0,24,1,0,2349,4320.000000,170,0,49569.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1266,4320.000000,170,0,27416.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,558,4320.000000,170,0,11154.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,170,0,699.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,900,4320.000000,170,0,20210.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3638,4338.000000,170,0,73036.000000,1760.800000,extended,lora,180 +on0,1,12,24,0,0,0,4874.000000,170,0,-1.000000,2256.800000,extended,lora,180 +on6,0,0,24,1,0,3420,4320.000000,170,0,70895.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2700,4320.000000,170,0,57525.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,171,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,0,4320.000000,171,0,1820.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1701,4381.000000,171,0,34245.000000,1778.000000,extended,lora,180 +on5,0,0,24,1,0,1943,4443.000000,171,0,38437.000000,1802.800000,extended,lora,180 +on7,0,0,24,1,0,237,4357.000000,171,0,4828.000000,1768.400000,extended,lora,180 +on11,0,0,24,1,0,2224,4364.000000,171,0,44805.000000,1771.200000,extended,lora,180 +on8,0,0,24,1,0,1071,4471.000000,171,0,18815.000000,1814.000000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,171,0,7811.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,171,0,13420.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2340,4320.000000,171,0,47340.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4459.000000,171,0,-1.000000,2065.200000,extended,lora,180 +on1,0,0,24,1,0,1183,4403.000000,171,0,22580.000000,1786.800000,extended,lora,180 +on12,0,0,24,1,0,3500,4380.000000,171,0,70027.000000,1777.600000,extended,lora,180 +on10,0,0,24,1,0,639,4399.000000,172,0,11939.000000,1785.200000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,172,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,1466,4326.000000,172,0,30297.000000,1756.000000,extended,lora,180 +on2,0,0,24,1,0,1612,4472.000000,172,0,30457.000000,1814.400000,extended,lora,180 +on0,1,10,24,0,0,0,4852.000000,172,0,-1.000000,2196.800000,extended,lora,180 +on8,0,0,24,1,0,3240,4320.000000,172,0,65494.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1244,4464.000000,172,0,24638.000000,1811.200000,extended,lora,180 +on7,0,0,24,1,0,1207,4427.000000,172,0,24798.000000,1796.400000,extended,lora,180 +on4,0,0,24,1,0,2055,4375.000000,172,0,41537.000000,1775.600000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,172,0,5038.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,114,4414.000000,172,0,1032.000000,1791.200000,extended,lora,180 +on3,0,0,24,1,0,900,4320.000000,172,0,21562.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,172,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,3780,4320.000000,173,0,78029.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4571.000000,173,0,-1.000000,2135.600000,extended,lora,180 +on11,0,0,24,1,0,3605,4320.000000,173,0,72550.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3240,4320.000000,173,0,65699.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1505,4365.000000,173,0,29452.000000,1771.600000,extended,lora,180 +on8,0,0,24,1,0,2520,4320.000000,173,0,52061.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1066,4466.000000,173,0,21184.000000,1812.000000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,173,0,1858.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,173,0,17259.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,617,4377.000000,173,0,12762.000000,1776.400000,extended,lora,180 +on5,0,0,24,1,0,406,4346.000000,173,0,9289.000000,1764.000000,extended,lora,180 +on2,0,0,24,1,0,1952,4452.000000,173,0,36953.000000,1806.400000,extended,lora,180 +on4,0,0,24,1,0,2443,4403.000000,173,0,49790.000000,1786.800000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,1800,4320.000000,174,0,37258.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2891,4320.000000,174,0,61078.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,444,4384.000000,174,0,7797.000000,1779.200000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,174,0,20017.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1080,4320.000000,174,0,24226.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2774,4374.000000,174,0,54973.000000,1775.200000,extended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,174,0,46026.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,174,0,35458.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,627,4387.000000,174,0,12257.000000,1780.400000,extended,lora,180 +on9,0,0,24,1,0,164,4464.000000,174,0,559.000000,1811.200000,extended,lora,180 +on0,1,11,24,0,0,0,4695.000000,174,0,-1.000000,2159.600000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,174,0,28232.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2160,4320.000000,175,0,44824.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,781,4361.000000,175,0,17470.000000,1770.000000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,175,0,10617.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,207,4327.000000,175,0,6588.000000,1756.400000,extended,lora,180 +on0,1,11,24,0,0,0,4942.000000,175,0,-1.000000,2258.400000,extended,lora,180 +on12,0,0,24,1,0,2520,4320.000000,175,0,52785.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,943,4343.000000,175,0,18937.000000,1762.800000,extended,lora,180 +on7,0,0,24,1,0,659,4419.000000,175,0,13666.000000,1793.200000,extended,lora,180 +on3,0,0,24,1,0,1440,4320.000000,175,0,31265.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,851,4431.000000,175,0,17630.000000,1798.000000,extended,lora,180 +on1,0,0,24,1,0,0,4320.000000,175,0,3427.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,175,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,175,0,41412.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2404,4364.000000,176,0,49475.000000,1771.200000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,132,4432.000000,176,0,644.000000,1798.400000,extended,lora,180 +on7,0,0,24,1,0,2495,4455.000000,176,0,49635.000000,1807.600000,extended,lora,180 +on6,0,0,24,1,0,615,4375.000000,176,0,12961.000000,1775.600000,extended,lora,180 +on11,0,0,24,1,0,1474,4334.000000,176,0,29327.000000,1759.200000,extended,lora,180 +on9,0,0,24,1,0,1501,4361.000000,176,0,29167.000000,1770.000000,extended,lora,180 +on10,0,0,24,1,0,1739,4419.000000,176,0,35662.000000,1793.200000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,176,0,814.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1800,4320.000000,176,0,38522.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4845.000000,176,0,-1.000000,2219.600000,extended,lora,180 +on1,0,0,24,1,0,2823,4423.000000,176,0,54954.000000,1794.800000,extended,lora,180 +on4,0,0,24,1,0,995,4395.000000,176,0,20856.000000,1783.600000,extended,lora,180 +on10,0,0,24,1,0,95,4395.000000,177,0,429.000000,1783.600000,extended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,177,0,51297.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,227,4347.000000,177,0,5973.000000,1764.400000,extended,lora,180 +on7,0,0,24,1,0,1173,4393.000000,177,0,23534.000000,1782.800000,extended,lora,180 +on8,0,0,24,1,0,1620,4320.000000,177,0,34583.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,360,4320.000000,177,0,7818.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,299,4419.000000,177,0,5813.000000,1793.200000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,177,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,2340,4320.000000,177,0,47713.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4975.000000,177,0,-1.000000,2271.600000,extended,lora,180 +on1,0,0,24,1,0,2372,4332.000000,177,0,47541.000000,1758.400000,extended,lora,180 +on11,0,0,24,1,0,900,4320.000000,177,0,21063.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,720,4320.000000,177,0,16637.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,178,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,287,4407.000000,178,0,4757.000000,1788.400000,extended,lora,180 +on3,0,0,24,1,0,1800,4320.000000,178,0,37943.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,254,4374.000000,178,0,4917.000000,1775.200000,extended,lora,180 +on2,0,0,24,1,0,1980,4320.000000,178,0,41677.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4637.000000,178,0,-1.000000,2136.400000,extended,lora,180 +on7,0,0,24,1,0,3090,4330.000000,178,0,63291.000000,1757.600000,extended,lora,180 +on5,0,0,24,1,0,1662,4342.000000,178,0,34025.000000,1762.400000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,178,0,14918.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,178,0,13356.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,387,4327.000000,178,0,10325.000000,1756.400000,extended,lora,180 +on11,0,0,24,1,0,900,4320.000000,178,0,20526.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3378,4438.000000,178,0,67900.000000,1800.800000,extended,lora,180 +on3,0,0,24,1,0,1260,4320.000000,179,0,26505.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3240,4320.000000,179,0,66377.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1080,4320.000000,179,0,23785.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,180,4320.000000,179,0,6019.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4767.000000,179,0,-1.000000,2188.400000,extended,lora,180 +on9,0,0,24,1,0,22,4322.000000,179,0,3410.000000,1754.400000,extended,lora,180 +on1,0,0,24,1,0,511,4451.000000,179,0,8640.000000,1806.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,179,0,12463.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,3420,4320.000000,179,0,71909.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1583,4443.000000,179,0,31395.000000,1802.800000,extended,lora,180 +on10,0,0,24,1,0,401,4341.000000,179,0,8480.000000,1762.000000,extended,lora,180 +on6,0,0,24,1,0,3649,4349.000000,179,0,74350.000000,1765.200000,extended,lora,180 +on1,0,0,24,1,0,0,4320.000000,180,0,3561.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,631,4391.000000,180,0,13177.000000,1782.000000,extended,lora,180 +on2,0,0,24,1,0,2540,4320.000000,180,0,53641.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,294,4414.000000,180,0,5829.000000,1791.200000,extended,lora,180 +on3,0,0,24,1,0,838,4418.000000,180,0,17032.000000,1792.800000,extended,lora,180 +on7,0,0,24,1,0,125,4425.000000,180,0,3383.000000,1795.600000,extended,lora,180 +on10,0,0,24,1,0,3420,4320.000000,180,0,70307.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,423,4363.000000,180,0,9919.000000,1770.800000,extended,lora,180 +on6,0,0,24,1,0,3644,4344.000000,180,0,72644.000000,1763.200000,extended,lora,180 +on0,1,12,24,0,0,0,4992.000000,180,0,-1.000000,2304.000000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,180,0,42121.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1260,4320.000000,180,0,27682.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,351,4471.000000,180,0,5669.000000,1814.000000,extended,lora,180 +on12,0,0,24,1,0,115,4415.000000,181,0,2814.000000,1791.600000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,181,0,19117.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,80,4380.000000,181,0,2974.000000,1777.600000,extended,lora,180 +on4,0,0,24,1,0,540,4320.000000,181,0,11520.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,914,4320.000000,181,0,19277.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,4263,4423.000000,181,0,84947.000000,1794.800000,extended,lora,180 +on0,1,10,24,0,0,0,4906.000000,181,0,-1.000000,2218.400000,extended,lora,180 +on9,0,0,24,1,0,1355,4395.000000,181,0,27674.000000,1783.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1151,4371.000000,181,0,24201.000000,1774.000000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,181,0,8030.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1980,4320.000000,181,0,42409.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1440,4320.000000,182,0,31865.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,635,4395.000000,182,0,14054.000000,1783.600000,extended,lora,180 +on6,0,0,24,1,0,1143,4363.000000,182,0,23540.000000,1770.800000,extended,lora,180 +on3,0,0,24,1,0,586,4346.000000,182,0,14214.000000,1764.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,2700,4320.000000,182,0,54651.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3780,4320.000000,182,0,78645.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,62,4362.000000,182,0,3221.000000,1770.400000,extended,lora,180 +on11,0,0,24,1,0,2340,4320.000000,182,0,48913.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,182,0,6542.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4874.000000,182,0,-1.000000,2205.600000,extended,lora,180 +on10,0,0,24,1,0,1800,4320.000000,182,0,39539.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1037,4437.000000,183,0,21366.000000,1800.400000,extended,lora,180 +on9,0,0,24,1,0,571,4331.000000,183,0,11862.000000,1758.000000,extended,lora,180 +on7,0,0,24,1,0,2823,4423.000000,183,0,56047.000000,1794.800000,extended,lora,180 +on6,0,0,24,1,0,2024,4344.000000,183,0,42688.000000,1763.200000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,183,0,12038.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4741.000000,183,0,-1.000000,2152.400000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,183,0,23048.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2160,4320.000000,183,0,46567.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,370,4320.000000,183,0,7721.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,258,4378.000000,183,0,5400.000000,1776.800000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,2050,4370.000000,183,0,42528.000000,1773.600000,extended,lora,180 +on2,0,0,24,1,0,1935,4435.000000,184,0,36662.000000,1799.600000,extended,lora,180 +on9,0,0,24,1,0,2075,4395.000000,184,0,42913.000000,1783.600000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,184,0,19749.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,720,4320.000000,184,0,17641.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1367,4407.000000,184,0,26567.000000,1788.400000,extended,lora,180 +on1,0,0,24,1,0,189,4320.000000,184,0,6354.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,184,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1869,4369.000000,184,0,36822.000000,1773.200000,extended,lora,180 +on4,0,0,24,1,0,2489,4449.000000,184,0,49954.000000,1805.200000,extended,lora,180 +on12,0,0,24,1,0,2160,4320.000000,184,0,45319.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2134,4454.000000,184,0,42753.000000,1807.200000,extended,lora,180 +on0,1,11,24,0,0,0,4800.000000,184,0,-1.000000,2201.600000,extended,lora,180 +on8,0,0,24,1,0,1085,4320.000000,184,0,22574.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2026,4346.000000,185,0,42763.000000,1764.000000,extended,lora,180 +on2,0,0,24,1,0,24,4324.000000,185,0,2058.000000,1755.200000,extended,lora,180 +on3,0,0,24,1,0,2488,4448.000000,185,0,49187.000000,1804.800000,extended,lora,180 +on4,0,0,24,1,0,321,4441.000000,185,0,5826.000000,1802.000000,extended,lora,180 +on9,0,0,24,1,0,2678,4458.000000,185,0,51862.000000,1808.800000,extended,lora,180 +on11,0,0,24,1,0,72,4372.000000,185,0,2218.000000,1774.400000,extended,lora,180 +on8,0,0,24,1,0,3368,4428.000000,185,0,67082.000000,1796.800000,extended,lora,180 +on0,1,12,24,0,0,0,4798.000000,185,0,-1.000000,2226.400000,extended,lora,180 +on12,0,0,24,1,0,705,4465.000000,185,0,14206.000000,1811.600000,extended,lora,180 +on5,0,0,24,1,0,636,4396.000000,185,0,14366.000000,1784.000000,extended,lora,180 +on7,0,0,24,1,0,977,4377.000000,185,0,19574.000000,1776.400000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,185,0,16418.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3266,4326.000000,185,0,67242.000000,1756.000000,extended,lora,180 +on3,0,0,24,1,0,497,4437.000000,186,0,9998.000000,1800.400000,extended,lora,180 +on9,0,0,24,1,0,213,4333.000000,186,0,5685.000000,1758.800000,extended,lora,180 +on12,0,0,24,1,0,3362,4422.000000,186,0,66370.000000,1794.400000,extended,lora,180 +on0,1,10,24,0,0,0,4812.000000,186,0,-1.000000,2180.800000,extended,lora,180 +on6,0,0,24,1,0,1554,4414.000000,186,0,30872.000000,1791.200000,extended,lora,180 +on2,0,0,24,1,0,2619,4399.000000,186,0,52313.000000,1785.200000,extended,lora,180 +on5,0,0,24,1,0,94,4394.000000,186,0,2439.000000,1783.200000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,186,0,12328.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,495,4435.000000,186,0,10158.000000,1799.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,186,0,39493.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2607,4387.000000,186,0,52473.000000,1780.400000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,643,4403.000000,187,0,11932.000000,1786.800000,extended,lora,180 +on10,0,0,24,1,0,309,4429.000000,187,0,7024.000000,1797.200000,extended,lora,180 +on12,0,0,24,1,0,1548,4408.000000,187,0,30584.000000,1788.800000,extended,lora,180 +on9,0,0,24,1,0,120,4420.000000,187,0,2275.000000,1793.600000,extended,lora,180 +on0,1,11,24,0,0,0,4800.000000,187,0,-1.000000,2201.600000,extended,lora,180 +on3,0,0,24,1,0,4140,4320.000000,187,0,85089.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1931,4431.000000,187,0,36446.000000,1798.000000,extended,lora,180 +on11,0,0,24,1,0,752,4332.000000,187,0,15698.000000,1758.400000,extended,lora,180 +on2,0,0,24,1,0,1641,4321.000000,187,0,35716.000000,1754.000000,extended,lora,180 +on7,0,0,24,1,0,736,4320.000000,187,0,15858.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,136,4436.000000,187,0,2115.000000,1800.000000,extended,lora,180 +on5,0,0,24,1,0,1446,4320.000000,187,0,30424.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2628,4408.000000,188,0,52410.000000,1788.800000,extended,lora,180 +on8,0,0,24,1,0,1980,4320.000000,188,0,40223.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1134,4354.000000,188,0,24710.000000,1767.200000,extended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,188,0,25895.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2874,4474.000000,188,0,55922.000000,1815.200000,extended,lora,180 +on0,1,10,24,0,0,0,4516.000000,188,0,-1.000000,2062.400000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,188,0,2547.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,188,0,17196.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2274,4414.000000,188,0,46523.000000,1791.200000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,188,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,188,0,14090.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,464,4404.000000,188,0,9940.000000,1787.200000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,188,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1100,4320.000000,189,0,23810.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1462,4322.000000,189,0,31492.000000,1754.400000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,189,0,12598.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4780.000000,189,0,-1.000000,2219.200000,extended,lora,180 +on6,0,0,24,1,0,557,4320.000000,189,0,12758.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,0,4320.000000,189,0,2990.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,138,4438.000000,189,0,3150.000000,1800.800000,extended,lora,180 +on10,0,0,24,1,0,1260,4320.000000,189,0,26071.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1198,4418.000000,189,0,23970.000000,1792.800000,extended,lora,180 +on4,0,0,24,1,0,198,4320.000000,189,0,6665.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,189,0,40947.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2322,4462.000000,189,0,45704.000000,1810.400000,extended,lora,180 +on8,0,0,24,1,0,2912,4332.000000,189,0,59655.000000,1758.400000,extended,lora,180 +on11,0,0,24,1,0,2880,4320.000000,190,0,59409.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1143,4363.000000,190,0,23314.000000,1770.800000,extended,lora,180 +on10,0,0,24,1,0,1539,4399.000000,190,0,32177.000000,1785.200000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,190,0,5240.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1174,4394.000000,190,0,23474.000000,1783.200000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,190,0,11396.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,190,0,16398.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1741,4421.000000,190,0,33439.000000,1794.000000,extended,lora,180 +on0,1,11,24,0,0,0,4943.000000,190,0,-1.000000,2258.800000,extended,lora,180 +on1,0,0,24,1,0,2605,4385.000000,190,0,50973.000000,1779.600000,extended,lora,180 +on6,0,0,24,1,0,2663,4443.000000,190,0,50813.000000,1802.800000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,190,0,18921.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,191,0,13112.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1889,4389.000000,191,0,37333.000000,1781.200000,extended,lora,180 +on8,0,0,24,1,0,1028,4428.000000,191,0,19186.000000,1796.800000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,3510,4390.000000,191,0,68959.000000,1781.600000,extended,lora,180 +on0,1,11,24,0,0,0,4748.000000,191,0,-1.000000,2180.800000,extended,lora,180 +on5,0,0,24,1,0,312,4432.000000,191,0,3906.000000,1798.400000,extended,lora,180 +on10,0,0,24,1,0,2550,4330.000000,191,0,52239.000000,1757.600000,extended,lora,180 +on2,0,0,24,1,0,360,4320.000000,191,0,8776.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,832,4412.000000,191,0,17732.000000,1790.400000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,191,0,24181.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,848,4428.000000,191,0,17892.000000,1796.800000,extended,lora,180 +on1,0,0,24,1,0,1298,4338.000000,191,0,27117.000000,1760.800000,extended,lora,180 +on7,0,0,24,1,0,3240,4320.000000,192,0,65280.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3060,4320.000000,192,0,62081.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,192,0,40954.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,4087,4427.000000,192,0,81645.000000,1796.400000,extended,lora,180 +on6,0,0,24,1,0,104,4404.000000,192,0,1087.000000,1787.200000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,192,0,31317.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1664,4344.000000,192,0,35747.000000,1763.200000,extended,lora,180 +on2,0,0,24,1,0,1698,4378.000000,192,0,35907.000000,1776.800000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,192,0,20016.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1865,4365.000000,192,0,38967.000000,1771.600000,extended,lora,180 +on0,1,12,24,0,0,0,5116.000000,192,0,-1.000000,2353.600000,extended,lora,180 +on11,0,0,24,1,0,317,4437.000000,192,0,5852.000000,1800.400000,extended,lora,180 +on1,0,0,24,1,0,1858,4358.000000,192,0,39127.000000,1768.800000,extended,lora,180 +on9,0,0,24,1,0,2643,4423.000000,193,0,50937.000000,1794.800000,extended,lora,180 +on0,1,12,24,0,0,0,4847.000000,193,0,-1.000000,2246.000000,extended,lora,180 +on8,0,0,24,1,0,1515,4375.000000,193,0,30314.000000,1775.600000,extended,lora,180 +on6,0,0,24,1,0,2546,4326.000000,193,0,50777.000000,1756.000000,extended,lora,180 +on12,0,0,24,1,0,698,4458.000000,193,0,13455.000000,1808.800000,extended,lora,180 +on10,0,0,24,1,0,1860,4360.000000,193,0,37993.000000,1769.600000,extended,lora,180 +on3,0,0,24,1,0,3240,4320.000000,193,0,67595.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,360,4320.000000,193,0,9799.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,193,0,2512.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3452,4332.000000,193,0,71545.000000,1758.400000,extended,lora,180 +on1,0,0,24,1,0,1477,4337.000000,193,0,30154.000000,1760.400000,extended,lora,180 +on5,0,0,24,1,0,2827,4427.000000,193,0,56770.000000,1796.400000,extended,lora,180 +on2,0,0,24,1,0,817,4397.000000,193,0,15317.000000,1784.400000,extended,lora,180 +on12,0,0,24,1,0,3545,4425.000000,194,0,69184.000000,1795.600000,extended,lora,180 +on11,0,0,24,1,0,1080,4320.000000,194,0,23258.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2789,4389.000000,194,0,54498.000000,1781.200000,extended,lora,180 +on10,0,0,24,1,0,2570,4350.000000,194,0,51394.000000,1765.600000,extended,lora,180 +on8,0,0,24,1,0,1497,4357.000000,194,0,29337.000000,1768.400000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,194,0,4869.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,48,4348.000000,194,0,2363.000000,1764.800000,extended,lora,180 +on0,1,12,24,0,0,0,5026.000000,194,0,-1.000000,2317.600000,extended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,194,0,51234.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1707,4387.000000,194,0,35800.000000,1780.400000,extended,lora,180 +on7,0,0,24,1,0,1507,4367.000000,194,0,29177.000000,1772.400000,extended,lora,180 +on9,0,0,24,1,0,2744,4344.000000,194,0,54338.000000,1763.200000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,194,0,2535.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2435,4395.000000,195,0,47063.000000,1783.600000,extended,lora,180 +on10,0,0,24,1,0,436,4376.000000,195,0,8255.000000,1776.000000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,195,0,12025.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3695,4395.000000,195,0,75609.000000,1783.600000,extended,lora,180 +on7,0,0,24,1,0,490,4430.000000,195,0,8415.000000,1797.600000,extended,lora,180 +on12,0,0,24,1,0,4137,4477.000000,195,0,79860.000000,1816.400000,extended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,195,0,39292.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3636,4336.000000,195,0,75449.000000,1760.000000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,195,0,17796.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4911.000000,195,0,-1.000000,2271.600000,extended,lora,180 +on2,0,0,24,1,0,900,4320.000000,195,0,20997.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2880,4320.000000,195,0,58512.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1234,4454.000000,195,0,22322.000000,1807.200000,extended,lora,180 +on3,0,0,24,1,0,209,4329.000000,196,0,4332.000000,1757.200000,extended,lora,180 +on10,0,0,24,1,0,3268,4328.000000,196,0,65669.000000,1756.800000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,24,0,0,0,4639.000000,196,0,-1.000000,2111.600000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,196,0,20407.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2129,4449.000000,196,0,40436.000000,1805.200000,extended,lora,180 +on11,0,0,24,1,0,2807,4407.000000,196,0,55891.000000,1788.400000,extended,lora,180 +on2,0,0,24,1,0,340,4460.000000,196,0,4492.000000,1809.600000,extended,lora,180 +on7,0,0,24,1,0,1080,4320.000000,196,0,24451.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,196,0,8083.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1337,4377.000000,196,0,25937.000000,1776.400000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,720,4320.000000,196,0,17120.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,777,4357.000000,197,0,16034.000000,1768.400000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,938,4338.000000,197,0,18761.000000,1760.800000,extended,lora,180 +on7,0,0,24,1,0,908,4320.000000,197,0,18921.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1080,4320.000000,197,0,22517.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1671,4351.000000,197,0,33033.000000,1766.000000,extended,lora,180 +on3,0,0,24,1,0,2507,4467.000000,197,0,49829.000000,1812.400000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,197,0,12616.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,360,4320.000000,197,0,10370.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4907.000000,197,0,-1.000000,2218.800000,extended,lora,180 +on5,0,0,24,1,0,180,4320.000000,197,0,6371.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,36,4336.000000,197,0,1973.000000,1760.000000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,198,0,3159.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,198,0,23161.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,255,4375.000000,198,0,4709.000000,1775.600000,extended,lora,180 +on0,1,10,24,0,0,0,4853.000000,198,0,-1.000000,2197.200000,extended,lora,180 +on3,0,0,24,1,0,804,4384.000000,198,0,15024.000000,1779.200000,extended,lora,180 +on11,0,0,24,1,0,859,4439.000000,198,0,15184.000000,1801.200000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,3060,4320.000000,198,0,64492.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1440,4320.000000,198,0,30928.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1435,4475.000000,198,0,27867.000000,1815.600000,extended,lora,180 +on8,0,0,24,1,0,900,4320.000000,198,0,19244.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,192,4320.000000,198,0,4549.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,199,0,32652.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,180,4320.000000,199,0,6586.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1201,4421.000000,199,0,22492.000000,1794.000000,extended,lora,180 +on12,0,0,24,1,0,777,4357.000000,199,0,15817.000000,1768.400000,extended,lora,180 +on6,0,0,24,1,0,2340,4320.000000,199,0,49801.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2854,4454.000000,199,0,56614.000000,1807.200000,extended,lora,180 +on11,0,0,24,1,0,1131,4351.000000,199,0,22332.000000,1766.000000,extended,lora,180 +on1,0,0,24,1,0,1980,4320.000000,199,0,40487.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,0,4320.000000,199,0,3315.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,680,4440.000000,199,0,11842.000000,1801.600000,extended,lora,180 +on0,1,11,24,0,0,0,4977.000000,199,0,-1.000000,2272.400000,extended,lora,180 +on7,0,0,24,1,0,793,4373.000000,199,0,15657.000000,1774.800000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,3144,4384.000000,200,0,61449.000000,1779.200000,extended,lora,180 +on1,0,0,24,1,0,2880,4320.000000,200,0,58845.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,133,4433.000000,200,0,3652.000000,1798.800000,extended,lora,180 +on11,0,0,24,1,0,377,4320.000000,200,0,8638.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,405,4345.000000,200,0,8798.000000,1763.600000,extended,lora,180 +on2,0,0,24,1,0,2700,4320.000000,200,0,55918.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4769.000000,200,0,-1.000000,2138.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,3310,4370.000000,200,0,66274.000000,1773.600000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,200,0,20458.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,111,4411.000000,200,0,3492.000000,1790.000000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,1,0,11955.001280,1756.544000,hintandextended,lora,180 +on4,0,0,25,1,0,330,4630.603840,1,1,4678.603840,1943.329741,hintandextended,lora,180 +on9,0,0,25,1,0,1282,4500.000000,1,1,29260.001280,1882.463795,hintandextended,lora,180 +on12,0,0,25,1,0,936,4500.000000,1,1,22695.001280,1865.983590,hintandextended,lora,180 +on11,0,0,24,1,0,2394,4354.001280,1,0,47139.001280,1795.840717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4792.812800,1,0,-1.000000,2224.330240,hintandextended,lora,180 +on7,0,0,26,1,0,1018,4882.603840,1,3,18446.603840,2000.129536,hintandextended,lora,180 +on2,0,0,26,1,0,786,4680.000000,1,2,18285.001280,1929.919795,hintandextended,lora,180 +on1,0,0,25,1,0,1155,4500.000000,1,2,25707.001280,1882.400000,hintandextended,lora,180 +on10,0,0,24,1,0,367,4320.000000,1,0,8378.001280,1755.680205,hintandextended,lora,180 +on3,0,0,25,1,0,1509,4549.603840,1,1,29421.603840,1863.521946,hintandextended,lora,180 +on8,0,0,24,1,0,314,4434.001280,1,0,4518.001280,1799.200717,hintandextended,lora,180 +on5,0,0,25,1,0,654,4500.000000,1,1,16421.002560,1828.640000,hintandextended,lora,180 +on6,0,0,24,1,0,859,4439.001280,2,0,16497.001280,1801.200717,hintandextended,lora,180 +on7,0,0,24,1,0,117,4417.001280,2,0,3083.001280,1803.984922,hintandextended,lora,180 +on2,0,0,24,1,0,995,4395.001280,2,0,20178.001280,1783.600717,hintandextended,lora,180 +on12,0,0,25,1,0,294,4500.000000,2,1,6177.001280,1828.800000,hintandextended,lora,180 +on8,0,0,25,1,0,664,4500.000000,2,1,13759.001280,1828.543795,hintandextended,lora,180 +on3,0,0,26,1,0,1413,4849.000000,2,3,28146.001280,2030.687590,hintandextended,lora,180 +on1,0,0,28,1,0,1278,5200.000000,2,5,24692.001280,2185.758771,hintandextended,lora,180 +on11,0,0,24,1,0,509,4449.001280,2,0,7608.001280,1833.584717,hintandextended,lora,180 +on5,0,0,25,1,0,106,4586.603840,2,1,3243.603840,1888.674150,hintandextended,lora,180 +on4,0,0,26,1,0,657,4821.603840,2,2,13920.603840,2034.369946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4883.815360,2,0,-1.000000,2260.730445,hintandextended,lora,180 +on10,0,0,26,1,0,1373,4821.603840,2,2,24853.603840,1962.241741,hintandextended,lora,180 +on9,0,0,25,1,0,1133,4640.003840,2,1,20338.003840,1898.721741,hintandextended,lora,180 +on3,0,0,27,1,0,1049,4860.000000,3,3,18936.001280,1992.415795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5020.619200,3,0,-1.000000,2315.451776,hintandextended,lora,180 +on4,0,0,24,1,0,421,4361.001280,3,0,9831.001280,1798.384717,hintandextended,lora,180 +on6,0,0,27,1,0,1224,5000.003840,3,3,22769.003840,2076.353331,hintandextended,lora,180 +on11,0,0,24,1,0,63,4363.001280,3,0,1348.001280,1770.800717,hintandextended,lora,180 +on7,0,0,25,1,0,919,4640.003840,3,1,16615.003840,1929.153741,hintandextended,lora,180 +on2,0,0,25,1,0,779,4500.000000,3,1,16455.001280,1847.808000,hintandextended,lora,180 +on10,0,0,25,1,0,157,4637.603840,3,1,1508.603840,1908.818150,hintandextended,lora,180 +on12,0,0,29,1,0,1406,5220.000000,3,5,22609.001280,2195.647386,hintandextended,lora,180 +on1,0,0,26,1,0,1326,4680.000000,3,2,27567.001280,1934.047590,hintandextended,lora,180 +on8,0,0,24,1,0,580,4340.001280,3,0,14225.001280,1761.600717,hintandextended,lora,180 +on5,0,0,26,1,0,614,4820.003840,3,2,9991.003840,1988.610150,hintandextended,lora,180 +on9,0,0,25,1,0,1173,4640.003840,3,1,19096.003840,1881.601741,hintandextended,lora,180 +on12,0,0,24,1,0,564,4324.001280,4,0,10984.001280,1768.800512,hintandextended,lora,180 +on10,0,0,27,1,0,1207,4860.000000,4,3,22760.001280,2029.007795,hintandextended,lora,180 +on9,0,0,24,1,0,337,4371.000000,4,1,10425.001280,1785.104000,hintandextended,lora,180 +on2,0,0,26,1,0,510,4821.603840,4,2,10586.603840,1984.417946,hintandextended,lora,180 +on7,0,0,24,1,0,2181,4321.001280,4,0,45929.001280,1754.000717,hintandextended,lora,180 +on1,0,0,26,1,0,864,4820.003840,4,2,17952.003840,2002.881741,hintandextended,lora,180 +on5,0,0,24,1,0,653,4369.000000,4,1,17792.001280,1784.080205,hintandextended,lora,180 +on3,0,0,25,1,0,121,4601.603840,4,1,1269.603840,1894.369946,hintandextended,lora,180 +on6,0,0,24,1,0,1067,4467.001280,4,0,18491.001280,1820.560512,hintandextended,lora,180 +on4,0,0,30,1,0,1563,5400.000000,4,6,26175.001280,2226.606976,hintandextended,lora,180 +on0,1,12,24,0,0,0,4743.211520,4,0,-1.000000,2204.489933,hintandextended,lora,180 +on8,0,0,24,1,0,12,4320.000000,4,0,1108.001280,1754.623795,hintandextended,lora,180 +on11,0,0,25,1,0,78,4500.000000,4,1,4638.001280,1873.503795,hintandextended,lora,180 +on8,0,0,24,1,0,59,4359.001280,5,0,2228.001280,1769.200717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5021.619200,5,0,-1.000000,2315.851776,hintandextended,lora,180 +on5,0,0,26,1,0,855,4680.000000,5,3,20897.001280,1982.846976,hintandextended,lora,180 +on2,0,0,25,1,0,137,4617.003840,5,1,2388.003840,1872.401946,hintandextended,lora,180 +on9,0,0,25,1,0,683,4500.000000,5,1,14255.001280,1828.640000,hintandextended,lora,180 +on3,0,0,25,1,0,1212,4500.000000,5,1,23739.001280,1828.800000,hintandextended,lora,180 +on1,0,0,24,1,0,174,4572.003840,5,1,5536.003840,1883.122150,hintandextended,lora,180 +on11,0,0,24,1,0,124,4339.000000,5,1,5376.001280,1792.992000,hintandextended,lora,180 +on7,0,0,27,1,0,762,5000.003840,5,3,10403.003840,2048.209946,hintandextended,lora,180 +on6,0,0,25,1,0,787,4547.003840,5,1,16507.003840,1904.881536,hintandextended,lora,180 +on12,0,0,29,1,0,1376,5361.603840,5,5,21058.603840,2209.025536,hintandextended,lora,180 +on10,0,0,27,1,0,901,4860.000000,5,3,16347.001280,2015.839386,hintandextended,lora,180 +on4,0,0,26,1,0,389,4680.000000,5,2,10243.001280,1960.815795,hintandextended,lora,180 +on8,0,0,24,1,0,1980,4320.000000,6,0,41374.001280,1753.600205,hintandextended,lora,180 +on1,0,0,24,1,0,1177,4397.001280,6,0,24519.001280,1790.704717,hintandextended,lora,180 +on5,0,0,24,1,0,651,4411.001280,6,0,11782.001280,1809.264717,hintandextended,lora,180 +on6,0,0,24,1,0,1620,4320.000000,6,0,33243.001280,1753.600205,hintandextended,lora,180 +on10,0,0,26,1,0,995,4821.603840,6,2,18052.603840,1954.242150,hintandextended,lora,180 +on3,0,0,24,1,0,930,4330.001280,6,0,20220.001280,1757.600922,hintandextended,lora,180 +on0,1,12,24,0,0,0,4691.208960,6,0,-1.000000,2183.688499,hintandextended,lora,180 +on2,0,0,25,1,0,1374,4500.000000,6,1,27682.001280,1825.600205,hintandextended,lora,180 +on11,0,0,28,1,0,1559,5040.000000,6,5,29095.001280,2108.062976,hintandextended,lora,180 +on4,0,0,25,1,0,1560,4600.603840,6,1,29256.603840,1894.481946,hintandextended,lora,180 +on7,0,0,24,1,0,28,4328.001280,6,0,2702.001280,1824.064307,hintandextended,lora,180 +on9,0,0,25,1,0,892,4500.000000,6,1,17891.001280,1845.023181,hintandextended,lora,180 +on12,0,0,24,1,0,193,4320.000000,6,0,4019.001280,1753.600205,hintandextended,lora,180 +on2,0,0,27,1,0,2835,5124.000000,7,6,60479.001280,2195.231795,hintandextended,lora,180 +on10,0,0,25,1,0,531,4500.000000,7,1,11030.001280,1913.408614,hintandextended,lora,180 +on3,0,0,25,1,0,703,4500.000000,7,1,16486.001280,1859.744000,hintandextended,lora,180 +on6,0,0,24,1,0,3240,4320.000000,7,0,67412.001280,1782.240205,hintandextended,lora,180 +on5,0,0,27,1,0,1239,4860.000000,7,3,25512.001280,2073.120000,hintandextended,lora,180 +on4,0,0,25,1,0,1515,4500.000000,7,2,35761.602560,1864.256614,hintandextended,lora,180 +on12,0,0,24,1,0,16,4320.000000,7,0,450.001280,1776.448410,hintandextended,lora,180 +on9,0,0,24,1,0,950,4350.001280,7,0,21454.001280,1802.400922,hintandextended,lora,180 +on8,0,0,25,1,0,863,4640.003840,7,2,21614.003840,1927.521331,hintandextended,lora,180 +on7,0,0,26,1,0,813,4820.003840,7,2,16646.003840,2026.242355,hintandextended,lora,180 +on11,0,0,25,1,0,203,4500.000000,7,2,9469.001280,1879.200000,hintandextended,lora,180 +on1,0,0,25,1,0,260,4500.000000,7,1,4999.001280,1868.800614,hintandextended,lora,180 +on0,1,12,24,0,0,0,4615.008960,7,0,-1.000000,2153.210342,hintandextended,lora,180 +on7,0,0,24,1,0,846,4482.000000,8,2,20245.001280,1827.040000,hintandextended,lora,180 +on2,0,0,24,1,0,547,4320.000000,8,0,13380.001280,1753.600410,hintandextended,lora,180 +on11,0,0,24,1,0,277,4397.001280,8,0,5591.001280,1784.400717,hintandextended,lora,180 +on12,0,0,25,1,0,706,4500.000000,8,2,14925.001280,1827.840000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4601.607680,8,0,-1.000000,2147.847168,hintandextended,lora,180 +on6,0,0,25,1,0,1003,4500.000000,8,2,22619.001280,1872.895795,hintandextended,lora,180 +on3,0,0,24,1,0,1297,4337.001280,8,0,28775.001280,1760.400717,hintandextended,lora,180 +on5,0,0,25,1,0,1743,4500.000000,8,1,33671.001280,1835.263795,hintandextended,lora,180 +on4,0,0,26,1,0,1523,4680.000000,8,2,29728.001280,1923.680000,hintandextended,lora,180 +on1,0,0,25,1,0,1628,4500.000000,8,1,36170.001280,1900.159795,hintandextended,lora,180 +on8,0,0,26,1,0,1894,4821.603840,8,2,33832.603840,1954.241741,hintandextended,lora,180 +on9,0,0,24,1,0,3,4320.000000,8,0,1816.001280,1753.600410,hintandextended,lora,180 +on10,0,0,26,1,0,1447,4820.003840,8,2,28935.003840,2032.354150,hintandextended,lora,180 +on4,0,0,26,1,0,598,4680.000000,9,2,11466.001280,1939.967795,hintandextended,lora,180 +on12,0,0,25,1,0,396,4795.003840,9,2,6484.003840,1943.601946,hintandextended,lora,180 +on1,0,0,25,1,0,316,4500.000000,9,1,6324.001280,1858.688410,hintandextended,lora,180 +on5,0,0,24,1,0,41,4341.001280,9,0,2176.001280,1790.385126,hintandextended,lora,180 +on8,0,0,25,1,0,774,4500.000000,9,1,17419.001280,1843.712000,hintandextended,lora,180 +on2,0,0,25,1,0,106,4586.003840,9,1,2336.003840,1888.386150,hintandextended,lora,180 +on7,0,0,25,1,0,2340,4500.000000,9,1,48647.602560,1828.752000,hintandextended,lora,180 +on6,0,0,25,1,0,511,4674.000000,9,2,9825.001280,1929.279795,hintandextended,lora,180 +on11,0,0,25,1,0,588,4742.003840,9,2,9985.003840,1976.449741,hintandextended,lora,180 +on10,0,0,26,1,0,994,4680.000000,9,2,20223.001280,1932.383590,hintandextended,lora,180 +on0,1,12,24,0,0,0,5159.221760,9,0,-1.000000,2370.894234,hintandextended,lora,180 +on9,0,0,26,1,0,993,4820.003840,9,2,17579.003840,2014.033536,hintandextended,lora,180 +on3,0,0,26,1,0,1157,4821.603840,9,2,20384.603840,1962.977946,hintandextended,lora,180 +on10,0,0,27,1,0,865,4860.000000,10,3,14855.001280,2052.495795,hintandextended,lora,180 +on4,0,0,25,1,0,2062,4500.000000,10,1,42318.001280,1837.072205,hintandextended,lora,180 +on2,0,0,25,1,0,959,4500.000000,10,1,20546.001280,1864.960614,hintandextended,lora,180 +on5,0,0,26,1,0,697,4820.003840,10,2,9750.003840,1964.065536,hintandextended,lora,180 +on7,0,0,24,1,0,120,4420.001280,10,0,2096.001280,1797.280922,hintandextended,lora,180 +on1,0,0,26,1,0,282,4680.000000,10,2,9590.001280,1938.671386,hintandextended,lora,180 +on11,0,0,25,1,0,226,4500.000000,10,1,5426.001280,1896.000000,hintandextended,lora,180 +on3,0,0,25,1,0,383,4640.003840,10,1,5586.003840,1903.345741,hintandextended,lora,180 +on8,0,0,26,1,0,721,4680.000000,10,2,13515.001280,1907.743590,hintandextended,lora,180 +on9,0,0,25,1,0,2218,4616.000000,10,3,45002.001280,1908.863795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.215360,10,0,-1.000000,2260.091469,hintandextended,lora,180 +on6,0,0,26,1,0,899,4830.603840,10,3,13676.603840,1969.346150,hintandextended,lora,180 +on12,0,0,25,1,0,4,4500.000000,10,1,2256.603840,1864.719590,hintandextended,lora,180 +on9,0,0,24,1,0,180,4320.000000,11,0,6006.001280,1760.223795,hintandextended,lora,180 +on12,0,0,26,1,0,1175,4821.603840,11,2,23124.603840,2011.521741,hintandextended,lora,180 +on8,0,0,26,1,0,974,4820.003840,11,2,17237.003840,1968.945741,hintandextended,lora,180 +on5,0,0,25,1,0,2461,4500.000000,11,1,48427.001280,1825.600205,hintandextended,lora,180 +on3,0,0,27,1,0,891,4860.000000,11,3,19089.001280,2050.175795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5063.617920,11,0,-1.000000,2332.651878,hintandextended,lora,180 +on1,0,0,24,1,0,2642,4320.000000,11,1,56311.001280,1753.600205,hintandextended,lora,180 +on6,0,0,24,1,0,495,4399.000000,11,1,12450.001280,1831.919590,hintandextended,lora,180 +on2,0,0,25,1,0,813,4640.003840,11,1,12610.003840,1909.985946,hintandextended,lora,180 +on7,0,0,24,1,0,427,4367.001280,11,0,9097.001280,1784.464717,hintandextended,lora,180 +on10,0,0,27,1,0,1166,5000.003840,11,3,19249.003840,2106.353741,hintandextended,lora,180 +on4,0,0,26,1,0,831,4765.000000,11,3,17077.001280,1959.567590,hintandextended,lora,180 +on11,0,0,27,1,0,1211,4860.000000,11,3,22963.001280,2033.023795,hintandextended,lora,180 +on11,0,0,26,1,0,837,4680.000000,12,2,16574.001280,1952.512000,hintandextended,lora,180 +on6,0,0,25,1,0,813,4640.003840,12,1,14021.003840,1881.601741,hintandextended,lora,180 +on4,0,0,25,1,0,101,4581.603840,12,1,1351.603840,1858.290150,hintandextended,lora,180 +on1,0,0,26,1,0,1209,4680.000000,12,2,25456.001280,1955.679590,hintandextended,lora,180 +on5,0,0,26,1,0,1055,4820.003840,12,2,21257.003840,2010.897946,hintandextended,lora,180 +on9,0,0,26,1,0,1069,4680.000000,12,2,23080.001280,1948.319795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5020.619200,12,0,-1.000000,2315.451366,hintandextended,lora,180 +on7,0,0,24,1,0,448,4388.001280,12,0,8010.001280,1808.928717,hintandextended,lora,180 +on2,0,0,27,1,0,1163,5000.003840,12,3,23240.003840,2063.041536,hintandextended,lora,180 +on10,0,0,24,1,0,663,4423.001280,12,0,13861.001280,1823.440717,hintandextended,lora,180 +on8,0,0,26,1,0,993,4680.000000,12,2,21097.001280,1932.319590,hintandextended,lora,180 +on12,0,0,24,1,0,61,4361.001280,12,0,1191.001280,1770.000717,hintandextended,lora,180 +on3,0,0,26,1,0,979,4820.003840,12,2,16734.003840,1978.865946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4716.208960,13,0,-1.000000,2193.688499,hintandextended,lora,180 +on2,0,0,25,1,0,137,4617.603840,13,1,2638.603840,1873.650150,hintandextended,lora,180 +on1,0,0,24,1,0,1080,4341.000000,13,2,23403.602560,1834.368205,hintandextended,lora,180 +on8,0,0,24,1,0,155,4455.001280,13,0,2478.001280,1842.865126,hintandextended,lora,180 +on5,0,0,25,1,0,833,4500.000000,13,1,17634.001280,1868.832205,hintandextended,lora,180 +on9,0,0,26,1,0,1534,4821.603840,13,2,26835.603840,1974.721946,hintandextended,lora,180 +on3,0,0,25,1,0,1288,4500.000000,13,1,26674.001280,1879.040000,hintandextended,lora,180 +on10,0,0,25,1,0,293,4500.000000,13,1,7457.001280,1825.600205,hintandextended,lora,180 +on12,0,0,26,1,0,973,4680.000000,13,3,21183.001280,1950.719795,hintandextended,lora,180 +on7,0,0,26,1,0,2253,4680.000000,13,3,45779.001280,1958.080000,hintandextended,lora,180 +on11,0,0,24,1,0,540,4320.000000,13,0,12118.001280,1780.224000,hintandextended,lora,180 +on4,0,0,25,1,0,2094,4500.000000,13,1,41685.001280,1854.448205,hintandextended,lora,180 +on6,0,0,25,1,0,2643,4500.000000,13,1,53573.001280,1828.800000,hintandextended,lora,180 +on3,0,0,25,1,0,293,4500.000000,14,1,8716.001280,1855.712000,hintandextended,lora,180 +on7,0,0,25,1,0,738,4558.000000,14,2,14930.001280,1876.687590,hintandextended,lora,180 +on4,0,0,25,1,0,581,4500.000000,14,1,13645.001280,1847.136205,hintandextended,lora,180 +on12,0,0,24,1,0,1800,4320.000000,14,0,38044.001280,1785.440000,hintandextended,lora,180 +on1,0,0,26,1,0,1028,4680.000000,14,2,22067.001280,1965.599795,hintandextended,lora,180 +on5,0,0,25,1,0,125,4500.000000,14,1,4280.001280,1844.224000,hintandextended,lora,180 +on8,0,0,25,1,0,851,4500.000000,14,1,19464.001280,1828.640000,hintandextended,lora,180 +on11,0,0,26,1,0,635,4821.603840,14,2,8877.603840,1982.882150,hintandextended,lora,180 +on10,0,0,24,1,0,75,4375.001280,14,0,3023.001280,1808.240102,hintandextended,lora,180 +on2,0,0,29,1,0,1433,5360.003840,14,5,22227.003840,2208.849331,hintandextended,lora,180 +on0,1,12,24,0,0,0,4932.616640,14,0,-1.000000,2280.252595,hintandextended,lora,180 +on9,0,0,27,1,0,934,5000.003840,14,4,15090.003840,2098.464512,hintandextended,lora,180 +on6,0,0,25,1,0,117,4597.003840,14,1,3183.003840,1884.626355,hintandextended,lora,180 +on0,1,12,24,0,0,0,5162.820480,15,0,-1.000000,2372.333312,hintandextended,lora,180 +on11,0,0,26,1,0,900,4913.003840,15,3,19304.003840,2113.585946,hintandextended,lora,180 +on4,0,0,24,1,0,1166,4437.601280,15,1,25032.601280,1800.640717,hintandextended,lora,180 +on1,0,0,25,1,0,709,4640.003840,15,1,13744.003840,1915.490150,hintandextended,lora,180 +on8,0,0,25,1,0,1129,4530.203840,15,1,25193.203840,1866.210150,hintandextended,lora,180 +on3,0,0,24,1,0,275,4395.001280,15,0,5971.001280,1783.600717,hintandextended,lora,180 +on5,0,0,26,1,0,859,4820.003840,15,2,17981.003840,1995.521946,hintandextended,lora,180 +on10,0,0,24,1,0,2700,4320.000000,15,0,55195.001280,1755.840000,hintandextended,lora,180 +on6,0,0,25,1,0,276,4576.603840,15,1,6131.603840,1965.314150,hintandextended,lora,180 +on2,0,0,24,1,0,611,4371.001280,15,0,13584.001280,1774.000717,hintandextended,lora,180 +on12,0,0,27,1,0,907,4860.000000,15,3,19144.001280,2052.080205,hintandextended,lora,180 +on9,0,0,25,1,0,715,4631.000000,15,2,17821.001280,1941.952205,hintandextended,lora,180 +on7,0,0,25,1,0,1314,4500.000000,15,1,27312.001280,1848.960000,hintandextended,lora,180 +on11,0,0,25,1,0,57,4537.003840,16,1,2987.003840,1900.625741,hintandextended,lora,180 +on5,0,0,25,1,0,258,4500.000000,16,1,8926.001280,1850.591590,hintandextended,lora,180 +on7,0,0,25,1,0,128,4500.000000,16,1,4468.001280,1853.440205,hintandextended,lora,180 +on1,0,0,27,1,0,724,5001.603840,16,3,9087.603840,2030.577741,hintandextended,lora,180 +on2,0,0,25,1,0,384,4500.000000,16,1,11665.001280,1874.944000,hintandextended,lora,180 +on4,0,0,25,1,0,453,4640.003840,16,1,4628.003840,1894.081946,hintandextended,lora,180 +on0,1,12,24,0,0,0,5026.219200,16,0,-1.000000,2317.692186,hintandextended,lora,180 +on9,0,0,26,1,0,633,4820.003840,16,2,11825.003840,1985.441536,hintandextended,lora,180 +on8,0,0,25,1,0,1416,4500.000000,16,1,29707.001280,1860.160000,hintandextended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,16,0,21849.001280,1785.183795,hintandextended,lora,180 +on10,0,0,27,1,0,624,4860.000000,16,3,16066.001280,2063.743386,hintandextended,lora,180 +on6,0,0,24,1,0,26,4326.001280,16,0,2827.001280,1756.000717,hintandextended,lora,180 +on3,0,0,25,1,0,1127,4527.603840,16,1,22010.603840,1893.665741,hintandextended,lora,180 +on2,0,0,28,1,0,972,5040.000000,17,4,23480.001280,2174.719181,hintandextended,lora,180 +on8,0,0,24,1,0,117,4417.001280,17,0,1790.001280,1820.368717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5021.619200,17,0,-1.000000,2315.851162,hintandextended,lora,180 +on5,0,0,25,1,0,453,4640.003840,17,1,6875.003840,1881.601741,hintandextended,lora,180 +on4,0,0,26,1,0,504,4680.000000,17,2,8811.001280,1960.799795,hintandextended,lora,180 +on12,0,0,27,1,0,577,5000.003840,17,3,8971.003840,2066.241741,hintandextended,lora,180 +on7,0,0,24,1,0,595,4355.001280,17,0,12777.001280,1789.520717,hintandextended,lora,180 +on3,0,0,25,1,0,822,4640.003840,17,1,12937.003840,1881.601741,hintandextended,lora,180 +on6,0,0,25,1,0,348,4500.000000,17,1,6715.001280,1828.640000,hintandextended,lora,180 +on10,0,0,29,1,0,1238,5220.000000,17,5,21479.001280,2169.007386,hintandextended,lora,180 +on11,0,0,28,1,0,1275,5184.603840,17,5,21640.603840,2126.368717,hintandextended,lora,180 +on9,0,0,26,1,0,696,4680.000000,17,2,16444.001280,1953.023590,hintandextended,lora,180 +on1,0,0,26,1,0,954,4820.003840,17,2,16604.003840,1999.889536,hintandextended,lora,180 +on5,0,0,25,1,0,652,4500.000000,18,2,21556.001280,1944.000410,hintandextended,lora,180 +on12,0,0,24,1,0,1401,4441.001280,18,0,25817.001280,1802.000922,hintandextended,lora,180 +on7,0,0,24,1,0,0,4320.000000,18,0,664.001280,1756.544000,hintandextended,lora,180 +on0,1,11,24,0,0,0,4879.212800,18,0,-1.000000,2233.291674,hintandextended,lora,180 +on1,0,0,25,1,0,2814,4500.000000,18,1,57378.001280,1828.800000,hintandextended,lora,180 +on11,0,0,26,1,0,748,4680.000000,18,2,13130.001280,1904.416205,hintandextended,lora,180 +on4,0,0,24,1,0,859,4439.001280,18,0,15839.001280,1824.625126,hintandextended,lora,180 +on8,0,0,24,1,0,472,4412.001280,18,0,9054.001280,1813.600717,hintandextended,lora,180 +on2,0,0,25,1,0,752,4640.003840,18,1,13290.003840,1900.449946,hintandextended,lora,180 +on6,0,0,26,1,0,304,4820.603840,18,2,4270.603840,2029.058560,hintandextended,lora,180 +on3,0,0,24,1,0,354,4474.001280,18,0,4110.001280,1830.561126,hintandextended,lora,180 +on9,0,0,24,0,0,4321,4320.000000,18,0,-1.000000,1728.000000,hintandextended,lora,180 +on10,0,0,27,1,0,973,5000.603840,18,3,15999.603840,2104.834150,hintandextended,lora,180 +on7,0,0,26,1,0,733,4680.000000,19,2,13104.001280,1903.743590,hintandextended,lora,180 +on2,0,0,24,1,0,285,4405.001280,19,0,5713.001280,1787.600717,hintandextended,lora,180 +on1,0,0,25,1,0,302,4500.000000,19,1,9591.001280,1875.168000,hintandextended,lora,180 +on10,0,0,24,1,0,2871,4471.001280,19,0,55624.001280,1842.640717,hintandextended,lora,180 +on6,0,0,25,1,0,2583,4500.000000,19,1,52443.001280,1870.208000,hintandextended,lora,180 +on11,0,0,24,1,0,1606,4466.001280,19,0,29886.001280,1812.000717,hintandextended,lora,180 +on9,0,0,26,1,0,320,4838.001280,19,2,5891.001280,2003.264307,hintandextended,lora,180 +on3,0,0,26,1,0,453,4820.003840,19,2,9751.003840,1992.385741,hintandextended,lora,180 +on5,0,0,24,1,0,2452,4412.001280,19,0,49652.001280,1790.400717,hintandextended,lora,180 +on12,0,0,26,1,0,880,4821.603840,19,2,13265.603840,1962.562150,hintandextended,lora,180 +on0,1,12,24,0,0,0,4884.211520,19,0,-1.000000,2260.889523,hintandextended,lora,180 +on4,0,0,25,1,0,0,4500.000000,19,1,3184.602560,1836.816205,hintandextended,lora,180 +on8,0,0,25,1,0,653,4500.000000,19,1,15696.001280,1857.440205,hintandextended,lora,180 +on1,0,0,25,1,0,403,4523.003840,20,1,8303.003840,1834.801946,hintandextended,lora,180 +on8,0,0,26,1,0,1204,4820.003840,20,2,21440.003840,1953.601946,hintandextended,lora,180 +on11,0,0,24,1,0,541,4320.000000,20,0,12994.001280,1783.040205,hintandextended,lora,180 +on10,0,0,25,1,0,797,4580.000000,20,2,14964.001280,1892.687795,hintandextended,lora,180 +on5,0,0,25,1,0,2313,4500.000000,20,1,45979.001280,1854.240205,hintandextended,lora,180 +on3,0,0,26,1,0,775,4820.003840,20,2,15124.003840,2037.761536,hintandextended,lora,180 +on6,0,0,26,1,0,909,4714.000000,20,3,21280.001280,2023.583590,hintandextended,lora,180 +on9,0,0,24,1,0,180,4320.000000,20,0,4885.001280,1753.600410,hintandextended,lora,180 +on0,1,12,24,0,0,0,4906.016640,20,0,-1.000000,2269.611776,hintandextended,lora,180 +on4,0,0,24,1,0,512,4452.001280,20,0,8143.001280,1865.664922,hintandextended,lora,180 +on2,0,0,25,1,0,832,4640.003840,20,1,13154.003840,1881.601946,hintandextended,lora,180 +on7,0,0,28,1,0,1302,5040.000000,20,4,23471.001280,2059.887386,hintandextended,lora,180 +on12,0,0,24,1,0,2730,4330.001280,20,0,56192.001280,1757.600717,hintandextended,lora,180 +on12,0,0,27,1,0,1708,4860.000000,21,4,39950.001280,2161.600000,hintandextended,lora,180 +on9,0,0,25,1,0,3780,4500.000000,21,1,78723.001280,1828.800000,hintandextended,lora,180 +on6,0,0,25,1,0,2046,4500.000000,21,2,45020.001280,1875.008410,hintandextended,lora,180 +on8,0,0,24,1,0,541,4320.000000,21,0,12321.001280,1753.600410,hintandextended,lora,180 +on7,0,0,24,1,0,360,4320.000000,21,0,8646.001280,1753.600410,hintandextended,lora,180 +on5,0,0,24,1,0,1323,4363.001280,21,0,28238.001280,1795.600717,hintandextended,lora,180 +on10,0,0,25,1,0,1716,4500.000000,21,1,35729.001280,1855.520410,hintandextended,lora,180 +on1,0,0,24,1,0,134,4434.001280,21,0,825.001280,1852.481126,hintandextended,lora,180 +on11,0,0,25,1,0,1404,4500.000000,21,1,31596.001280,1941.984000,hintandextended,lora,180 +on2,0,0,24,1,0,900,4320.000000,21,0,21181.001280,1759.680410,hintandextended,lora,180 +on4,0,0,25,1,0,807,4500.000000,21,2,17023.001280,1829.760000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4451.002560,21,0,-1.000000,2087.606963,hintandextended,lora,180 +on3,0,0,24,1,0,2340,4320.000000,21,0,50291.001280,1814.080205,hintandextended,lora,180 +on5,0,0,24,1,0,231,4351.001280,22,0,6093.001280,1797.424922,hintandextended,lora,180 +on9,0,0,26,1,0,1248,4680.000000,22,2,24282.001280,1955.743795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4743.811520,22,0,-1.000000,2204.730138,hintandextended,lora,180 +on10,0,0,25,1,0,470,4500.000000,22,1,12640.001280,1930.623590,hintandextended,lora,180 +on8,0,0,26,1,0,839,4680.000000,22,2,19301.001280,1939.103386,hintandextended,lora,180 +on7,0,0,24,1,0,1440,4320.000000,22,0,31393.001280,1753.600205,hintandextended,lora,180 +on2,0,0,25,1,0,531,4500.000000,22,1,9214.001280,1828.640000,hintandextended,lora,180 +on11,0,0,24,1,0,1,4320.000000,22,0,962.001280,1828.544410,hintandextended,lora,180 +on1,0,0,26,1,0,459,4820.603840,22,2,6253.603840,1982.274150,hintandextended,lora,180 +on12,0,0,24,1,0,787,4367.001280,22,0,15287.001280,1830.640922,hintandextended,lora,180 +on4,0,0,26,1,0,563,4821.603840,22,2,12801.603840,2068.482150,hintandextended,lora,180 +on3,0,0,29,1,0,1372,5361.603840,22,6,19462.603840,2241.440717,hintandextended,lora,180 +on6,0,0,25,1,0,2399,4500.000000,22,1,51725.001280,1862.080000,hintandextended,lora,180 +on6,0,0,25,1,0,294,4500.000000,23,1,5555.001280,1828.800000,hintandextended,lora,180 +on2,0,0,26,1,0,544,4680.000000,23,2,12002.001280,1955.167386,hintandextended,lora,180 +on3,0,0,26,1,0,1120,4680.000000,23,2,25078.001280,1929.279795,hintandextended,lora,180 +on11,0,0,25,1,0,156,4636.603840,23,1,3734.603840,1908.674150,hintandextended,lora,180 +on9,0,0,25,1,0,676,4500.000000,23,1,15441.001280,1835.584000,hintandextended,lora,180 +on1,0,0,26,1,0,685,4821.603840,23,2,12163.603840,2036.658150,hintandextended,lora,180 +on0,1,12,24,0,0,0,5010.817920,23,0,-1.000000,2311.531264,hintandextended,lora,180 +on8,0,0,25,1,0,409,4500.000000,23,1,8111.001280,1828.912000,hintandextended,lora,180 +on10,0,0,24,1,0,149,4449.001280,23,0,3574.001280,1811.984717,hintandextended,lora,180 +on12,0,0,25,1,0,1054,4500.000000,23,1,21431.001280,1828.640000,hintandextended,lora,180 +on4,0,0,25,1,0,377,4500.000000,23,1,8271.003840,1857.440000,hintandextended,lora,180 +on7,0,0,26,1,0,1076,4820.003840,23,2,21591.003840,1997.969946,hintandextended,lora,180 +on5,0,0,24,1,0,1440,4484.000000,23,1,30071.602560,1866.672000,hintandextended,lora,180 +on5,0,0,25,1,0,993,4640.003840,24,1,15778.003840,1881.601741,hintandextended,lora,180 +on2,0,0,24,1,0,353,4473.001280,24,0,5924.001280,1849.488512,hintandextended,lora,180 +on8,0,0,24,1,0,545,4320.000000,24,0,11961.001280,1755.840000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4800.214080,24,0,-1.000000,2227.290138,hintandextended,lora,180 +on7,0,0,25,1,0,328,4628.603840,24,1,6084.603840,1893.153946,hintandextended,lora,180 +on6,0,0,26,1,0,993,4680.000000,24,2,18932.001280,1932.479795,hintandextended,lora,180 +on9,0,0,24,1,0,747,4327.001280,24,0,15618.001280,1756.400717,hintandextended,lora,180 +on3,0,0,24,1,0,25,4325.001280,24,0,1352.001280,1760.720307,hintandextended,lora,180 +on4,0,0,26,1,0,1449,4680.000000,24,3,31120.001280,1925.471795,hintandextended,lora,180 +on10,0,0,26,1,0,746,4820.003840,24,2,12121.003840,1974.881536,hintandextended,lora,180 +on11,0,0,27,1,0,1278,4860.000000,24,4,26899.001280,2032.047590,hintandextended,lora,180 +on1,0,0,25,1,0,360,4500.000000,24,1,7678.602560,1827.056205,hintandextended,lora,180 +on12,0,0,25,1,0,1022,4500.000000,24,1,23139.001280,1867.264000,hintandextended,lora,180 +on5,0,0,26,1,0,1334,4680.000000,25,2,28263.001280,1922.335795,hintandextended,lora,180 +on6,0,0,24,1,0,1440,4320.000000,25,0,30706.001280,1753.600410,hintandextended,lora,180 +on11,0,0,25,1,0,453,4573.603840,25,1,8948.603840,1883.329946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4935.614080,25,0,-1.000000,2281.450342,hintandextended,lora,180 +on2,0,0,24,1,0,2802,4402.001280,25,0,57440.001280,1815.040717,hintandextended,lora,180 +on3,0,0,24,1,0,0,4320.000000,25,0,1511.001280,1771.360410,hintandextended,lora,180 +on10,0,0,25,1,0,388,4500.000000,25,1,11511.001280,1875.007795,hintandextended,lora,180 +on12,0,0,26,1,0,895,4680.000000,25,2,18871.001280,1929.008410,hintandextended,lora,180 +on7,0,0,26,1,0,766,4820.003840,25,2,17068.003840,2026.017331,hintandextended,lora,180 +on1,0,0,25,1,0,1120,4575.000000,25,2,23990.001280,1893.039795,hintandextended,lora,180 +on8,0,0,24,1,0,369,4320.000000,25,0,8787.001280,1755.103795,hintandextended,lora,180 +on9,0,0,25,1,0,624,4500.000000,25,1,16908.001280,1835.936000,hintandextended,lora,180 +on4,0,0,27,1,0,1231,5000.003840,25,3,24150.003840,2104.145536,hintandextended,lora,180 +on4,0,0,25,1,0,633,4640.003840,26,1,9857.003840,1888.865741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4886.016640,26,0,-1.000000,2261.610752,hintandextended,lora,180 +on8,0,0,24,1,0,418,4358.001280,26,0,9697.001280,1784.000717,hintandextended,lora,180 +on3,0,0,25,1,0,785,4640.003840,26,1,14331.003840,1885.281741,hintandextended,lora,180 +on2,0,0,29,1,0,1539,5360.003840,26,6,22187.003840,2191.665126,hintandextended,lora,180 +on12,0,0,27,1,0,1447,4860.000000,26,3,25928.001280,1989.439590,hintandextended,lora,180 +on1,0,0,25,1,0,833,4500.000000,26,1,20911.001280,1857.280000,hintandextended,lora,180 +on9,0,0,24,1,0,0,4320.000000,26,0,1711.001280,1781.984205,hintandextended,lora,180 +on6,0,0,27,1,0,774,4860.000000,26,4,16756.001280,2039.791386,hintandextended,lora,180 +on5,0,0,24,1,0,610,4370.001280,26,0,14171.001280,1785.440717,hintandextended,lora,180 +on11,0,0,25,1,0,311,4500.000000,26,1,6973.001280,1825.600205,hintandextended,lora,180 +on7,0,0,27,1,0,1156,4860.000000,26,3,22027.001280,2036.159386,hintandextended,lora,180 +on10,0,0,27,1,0,1092,5000.003840,26,4,16916.003840,2053.921946,hintandextended,lora,180 +on8,0,0,24,1,0,1440,4320.000000,27,0,29243.001280,1755.840614,hintandextended,lora,180 +on1,0,0,26,1,0,1114,4739.000000,27,4,20083.001280,1931.903795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5249.220480,27,0,-1.000000,2406.893517,hintandextended,lora,180 +on10,0,0,24,1,0,181,4320.000000,27,0,4077.001280,1769.408000,hintandextended,lora,180 +on12,0,0,25,1,0,622,4634.000000,27,2,12543.001280,1935.407795,hintandextended,lora,180 +on4,0,0,26,1,0,1032,4820.003840,27,2,18119.003840,1982.241946,hintandextended,lora,180 +on9,0,0,25,1,0,0,4500.000000,27,1,2655.602560,1855.759795,hintandextended,lora,180 +on11,0,0,25,1,0,633,4640.003840,27,1,9606.003840,1890.562150,hintandextended,lora,180 +on3,0,0,24,1,0,2340,4320.000000,27,0,47962.001280,1782.240205,hintandextended,lora,180 +on5,0,0,26,1,0,631,4680.000000,27,2,17959.001280,1995.839386,hintandextended,lora,180 +on7,0,0,27,1,0,794,5000.003840,27,3,12703.003840,2062.561741,hintandextended,lora,180 +on2,0,0,25,1,0,473,4500.000000,27,1,9446.001280,1828.480000,hintandextended,lora,180 +on6,0,0,26,1,0,320,4821.603840,27,2,4238.603840,1982.625946,hintandextended,lora,180 +on6,0,0,24,1,0,568,4328.001280,28,0,13856.001280,1762.880922,hintandextended,lora,180 +on1,0,0,24,1,0,3060,4320.000000,28,0,62648.001280,1769.280205,hintandextended,lora,180 +on12,0,0,24,1,0,1620,4320.000000,28,0,34858.001280,1756.800000,hintandextended,lora,180 +on7,0,0,25,1,0,0,4500.000000,28,1,2557.602560,1850.672614,hintandextended,lora,180 +on10,0,0,26,1,0,846,4680.000000,28,2,14846.001280,1926.656410,hintandextended,lora,180 +on0,1,12,24,0,0,0,4774.610240,28,0,-1.000000,2217.048806,hintandextended,lora,180 +on3,0,0,26,1,0,453,4680.000000,28,2,7866.001280,1929.184205,hintandextended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,28,0,28145.001280,1781.984410,hintandextended,lora,180 +on4,0,0,24,1,0,348,4468.001280,28,0,6357.001280,1812.800922,hintandextended,lora,180 +on5,0,0,25,1,0,1610,4500.000000,28,1,31399.001280,1867.840000,hintandextended,lora,180 +on8,0,0,27,1,0,1105,4860.000000,28,4,21054.001280,2001.440000,hintandextended,lora,180 +on9,0,0,25,1,0,662,4640.003840,28,1,14016.003840,1938.881946,hintandextended,lora,180 +on11,0,0,24,1,0,2891,4320.000000,28,0,60348.001280,1753.600205,hintandextended,lora,180 +on11,0,0,29,1,0,1181,5360.003840,29,5,21582.003840,2268.017126,hintandextended,lora,180 +on12,0,0,26,1,0,753,4940.603840,29,3,12139.603840,2044.369946,hintandextended,lora,180 +on8,0,0,25,1,0,633,4640.003840,29,1,9784.003840,1881.601741,hintandextended,lora,180 +on3,0,0,26,1,0,578,4680.000000,29,2,11978.001280,1954.447181,hintandextended,lora,180 +on9,0,0,25,1,0,667,4500.000000,29,1,14660.001280,1839.360000,hintandextended,lora,180 +on1,0,0,25,1,0,1009,4500.000000,29,1,21422.001280,1854.400000,hintandextended,lora,180 +on7,0,0,25,1,0,252,4500.000000,29,2,9624.001280,1874.304000,hintandextended,lora,180 +on2,0,0,26,1,0,880,4821.005120,29,2,14821.005120,1971.282662,hintandextended,lora,180 +on4,0,0,25,1,0,293,4500.000000,29,1,6624.001280,1836.448205,hintandextended,lora,180 +on10,0,0,26,1,0,1143,4680.000000,29,2,23568.001280,1937.439590,hintandextended,lora,180 +on5,0,0,24,1,0,0,4320.000000,29,0,2914.001280,1799.904205,hintandextended,lora,180 +on0,1,12,24,0,0,0,5030.617920,29,0,-1.000000,2319.451674,hintandextended,lora,180 +on6,0,0,25,1,0,1705,4500.000000,29,1,33853.001280,1842.272000,hintandextended,lora,180 +on6,0,0,26,1,0,1229,4821.603840,30,2,19365.603840,2013.921741,hintandextended,lora,180 +on7,0,0,26,1,0,577,4680.000000,30,2,11133.001280,1963.952205,hintandextended,lora,180 +on4,0,0,25,1,0,579,4657.003840,30,2,10457.003840,1894.513536,hintandextended,lora,180 +on12,0,0,24,1,0,720,4320.000000,30,0,15426.001280,1799.104410,hintandextended,lora,180 +on1,0,0,25,1,0,2425,4500.000000,30,1,50099.001280,1843.743795,hintandextended,lora,180 +on8,0,0,26,1,0,568,4821.603840,30,2,11294.603840,2032.801536,hintandextended,lora,180 +on5,0,0,24,1,0,0,4320.000000,30,0,2070.001280,1784.544410,hintandextended,lora,180 +on3,0,0,24,1,0,279,4443.000000,30,2,10297.001280,1907.824410,hintandextended,lora,180 +on10,0,0,25,1,0,2503,4728.603840,30,2,50260.603840,1945.521741,hintandextended,lora,180 +on9,0,0,25,1,0,158,4500.000000,30,1,5593.001280,1853.728410,hintandextended,lora,180 +on0,1,12,24,0,0,0,5027.819200,30,0,-1.000000,2318.333824,hintandextended,lora,180 +on11,0,0,24,1,0,1080,4320.000000,30,0,24402.001280,1753.600205,hintandextended,lora,180 +on2,0,0,25,1,0,997,4500.000000,30,1,19204.001280,1842.623795,hintandextended,lora,180 +on12,0,0,26,1,0,914,4820.003840,31,2,15056.003840,1980.321536,hintandextended,lora,180 +on0,1,12,24,0,0,0,5127.021760,31,0,-1.000000,2358.012390,hintandextended,lora,180 +on6,0,0,25,1,0,289,4500.000000,31,1,7591.002560,1829.615590,hintandextended,lora,180 +on11,0,0,28,1,0,857,5040.000000,31,4,19203.001280,2114.767590,hintandextended,lora,180 +on1,0,0,25,1,0,360,4500.000000,31,1,7754.005120,1828.799386,hintandextended,lora,180 +on4,0,0,26,1,0,305,4680.000000,31,2,12126.001280,1982.271795,hintandextended,lora,180 +on3,0,0,26,1,0,961,4820.003840,31,2,19363.003840,1990.337741,hintandextended,lora,180 +on7,0,0,24,1,0,62,4362.001280,31,0,882.001280,1770.400717,hintandextended,lora,180 +on8,0,0,28,1,0,1214,5180.003840,31,4,24553.003840,2173.408922,hintandextended,lora,180 +on10,0,0,25,1,0,633,4640.003840,31,1,12286.003840,1881.601741,hintandextended,lora,180 +on5,0,0,29,1,0,1151,5220.000000,31,5,24393.001280,2206.063795,hintandextended,lora,180 +on2,0,0,27,1,0,685,4860.000000,31,4,14896.001280,2004.095590,hintandextended,lora,180 +on9,0,0,24,1,0,180,4320.000000,31,0,4920.001280,1756.544000,hintandextended,lora,180 +on1,0,0,25,1,0,1816,4500.000000,32,1,39254.001280,1882.336000,hintandextended,lora,180 +on11,0,0,27,1,0,1058,5000.003840,32,4,16687.003840,2049.857946,hintandextended,lora,180 +on10,0,0,26,1,0,682,4680.000000,32,2,11010.001280,1932.159795,hintandextended,lora,180 +on12,0,0,24,1,0,0,4320.000000,32,0,1757.001280,1756.544000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4756.012800,32,0,-1.000000,2209.609626,hintandextended,lora,180 +on4,0,0,24,1,0,1364,4404.001280,32,0,26985.001280,1787.200717,hintandextended,lora,180 +on9,0,0,25,1,0,668,4500.000000,32,1,16527.001280,1844.544205,hintandextended,lora,180 +on5,0,0,25,1,0,164,4500.000000,32,1,4264.001280,1844.864205,hintandextended,lora,180 +on7,0,0,24,1,0,960,4360.001280,32,0,18516.001280,1769.600922,hintandextended,lora,180 +on6,0,0,27,1,0,619,5000.003840,32,4,11170.003840,2066.609536,hintandextended,lora,180 +on3,0,0,25,1,0,522,4500.000000,32,1,10560.001280,1828.848000,hintandextended,lora,180 +on2,0,0,27,1,0,1124,4860.000000,32,3,23256.001280,2043.167795,hintandextended,lora,180 +on8,0,0,25,1,0,633,4640.003840,32,1,10720.003840,1881.601741,hintandextended,lora,180 +on11,0,0,26,1,0,1174,4821.603840,33,2,22328.603840,2011.521946,hintandextended,lora,180 +on7,0,0,25,1,0,132,4500.000000,33,1,4273.001280,1828.800205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4957.214080,33,0,-1.000000,2290.092595,hintandextended,lora,180 +on6,0,0,25,1,0,3960,4500.000000,33,1,79946.001280,1854.240205,hintandextended,lora,180 +on10,0,0,24,1,0,404,4344.001280,33,0,9434.001280,1775.840922,hintandextended,lora,180 +on1,0,0,24,1,0,955,4355.001280,33,0,19795.001280,1820.241331,hintandextended,lora,180 +on5,0,0,25,1,0,626,4500.000000,33,1,15308.001280,1882.784000,hintandextended,lora,180 +on2,0,0,24,1,0,617,4377.001280,33,0,13745.001280,1805.041126,hintandextended,lora,180 +on8,0,0,24,1,0,1307,4347.001280,33,0,28735.001280,1793.040922,hintandextended,lora,180 +on3,0,0,25,1,0,385,4505.603840,33,1,9594.603840,1880.913946,hintandextended,lora,180 +on12,0,0,27,1,0,1143,4876.000000,33,4,19955.003840,2096.000614,hintandextended,lora,180 +on9,0,0,24,1,0,0,4320.000000,33,0,2128.001280,1756.544410,hintandextended,lora,180 +on4,0,0,26,1,0,1120,4680.000000,33,2,22167.001280,1905.871795,hintandextended,lora,180 +on9,0,0,28,1,0,2089,5090.000000,34,5,36703.001280,2118.414976,hintandextended,lora,180 +on11,0,0,24,1,0,1032,4432.001280,34,0,20258.001280,1826.784717,hintandextended,lora,180 +on1,0,0,25,1,0,2486,4500.000000,34,1,49105.001280,1857.440000,hintandextended,lora,180 +on8,0,0,27,1,0,1466,4860.000000,34,3,25589.001280,2028.271795,hintandextended,lora,180 +on3,0,0,25,1,0,1380,4500.000000,34,1,31716.001280,1867.040000,hintandextended,lora,180 +on5,0,0,25,1,0,1630,4640.003840,34,1,31876.003840,1886.049741,hintandextended,lora,180 +on2,0,0,24,1,0,727,4320.000000,34,0,15598.001280,1810.368410,hintandextended,lora,180 +on6,0,0,29,1,0,1923,5361.603840,34,6,32903.603840,2266.929536,hintandextended,lora,180 +on4,0,0,25,1,0,907,4500.000000,34,1,20418.003840,1850.784000,hintandextended,lora,180 +on10,0,0,26,1,0,1714,4680.000000,34,2,32742.001280,1903.423590,hintandextended,lora,180 +on7,0,0,25,1,0,1057,4500.000000,34,1,24608.001280,1828.640000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4881.615360,34,0,-1.000000,2259.850445,hintandextended,lora,180 +on12,0,0,25,1,0,1339,4559.003840,34,1,25749.003840,1849.201741,hintandextended,lora,180 +on1,0,0,25,1,0,331,4500.000000,35,1,7525.001280,1832.848000,hintandextended,lora,180 +on5,0,0,26,1,0,1178,4807.000000,35,4,26716.001280,2002.735590,hintandextended,lora,180 +on11,0,0,27,1,0,1084,4860.000000,35,3,20273.001280,2025.855590,hintandextended,lora,180 +on9,0,0,26,1,0,564,4680.000000,35,3,15478.001280,2006.367181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.015360,35,0,-1.000000,2259.210854,hintandextended,lora,180 +on3,0,0,26,1,0,701,4820.003840,35,2,11723.003840,1999.041331,hintandextended,lora,180 +on12,0,0,25,1,0,1235,4640.003840,35,1,24828.003840,1923.361536,hintandextended,lora,180 +on6,0,0,27,1,0,795,5000.003840,35,4,15638.003840,2084.657536,hintandextended,lora,180 +on10,0,0,24,1,0,3,4320.000000,35,0,3184.001280,1753.600205,hintandextended,lora,180 +on8,0,0,25,1,0,175,4500.000000,35,2,6318.001280,1847.519795,hintandextended,lora,180 +on7,0,0,27,1,0,1324,5017.000000,35,4,24668.001280,2071.039795,hintandextended,lora,180 +on4,0,0,24,1,0,544,4434.000000,35,1,11563.001280,1801.984000,hintandextended,lora,180 +on2,0,0,25,1,0,223,4523.003840,35,1,6478.003840,1891.825946,hintandextended,lora,180 +on11,0,0,26,1,0,1171,4820.003840,36,2,19146.003840,2009.985536,hintandextended,lora,180 +on7,0,0,25,1,0,536,4500.000000,36,1,10277.001280,1857.087795,hintandextended,lora,180 +on6,0,0,24,1,0,126,4431.000000,36,1,4865.001280,1847.087795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5029.220480,36,0,-1.000000,2318.891674,hintandextended,lora,180 +on12,0,0,25,1,0,689,4500.000000,36,1,14340.001280,1845.760000,hintandextended,lora,180 +on9,0,0,26,1,0,818,4680.000000,36,2,17230.001280,1932.479795,hintandextended,lora,180 +on5,0,0,25,1,0,767,4500.000000,36,1,18986.001280,1848.495386,hintandextended,lora,180 +on4,0,0,26,1,0,485,4821.603840,36,2,5026.603840,1985.825536,hintandextended,lora,180 +on3,0,0,24,1,0,0,4320.000000,36,0,1412.001280,1784.928000,hintandextended,lora,180 +on2,0,0,26,1,0,536,4821.603840,36,2,10438.603840,1998.401536,hintandextended,lora,180 +on1,0,0,26,1,0,819,4820.003840,36,2,14500.003840,1978.833741,hintandextended,lora,180 +on8,0,0,25,1,0,737,4500.000000,36,1,17390.003840,1857.663386,hintandextended,lora,180 +on10,0,0,25,1,0,748,4647.000000,36,2,23026.001280,1977.423795,hintandextended,lora,180 +on11,0,0,25,1,0,525,4500.000000,37,1,13270.001280,1847.808000,hintandextended,lora,180 +on12,0,0,26,1,0,572,4680.000000,37,2,16078.001280,1976.895795,hintandextended,lora,180 +on6,0,0,24,1,0,532,4472.001280,37,0,9242.001280,1814.400717,hintandextended,lora,180 +on10,0,0,28,1,0,1051,5049.000000,37,5,19506.001280,2091.022976,hintandextended,lora,180 +on2,0,0,28,1,0,1039,5148.000000,37,4,19667.603840,2129.951795,hintandextended,lora,180 +on1,0,0,28,1,0,1073,5040.000000,37,5,24527.001280,2150.239181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4984.815360,37,0,-1.000000,2301.131264,hintandextended,lora,180 +on5,0,0,24,1,0,0,4320.000000,37,0,2682.001280,1781.824614,hintandextended,lora,180 +on7,0,0,25,1,0,403,4762.603840,37,2,7331.603840,1967.681946,hintandextended,lora,180 +on8,0,0,24,1,0,1572,4320.000000,37,1,34151.001280,1753.600205,hintandextended,lora,180 +on3,0,0,25,1,0,746,4640.003840,37,1,13430.003840,1881.601741,hintandextended,lora,180 +on9,0,0,25,1,0,336,4500.000000,37,1,7170.001280,1836.255795,hintandextended,lora,180 +on4,0,0,25,1,0,1800,4500.000000,37,1,36569.602560,1850.448410,hintandextended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,hintandextended,lora,180 +on8,0,0,25,1,0,3913,4500.000000,38,1,77598.001280,1825.600205,hintandextended,lora,180 +on12,0,0,25,1,0,489,4609.603840,38,1,9655.603840,1877.186150,hintandextended,lora,180 +on11,0,0,26,1,0,1976,4936.000000,38,5,46398.001280,2121.631795,hintandextended,lora,180 +on1,0,0,25,1,0,1031,4500.000000,38,1,20434.001280,1885.183795,hintandextended,lora,180 +on4,0,0,24,1,0,202,4322.001280,38,0,3979.001280,1793.024717,hintandextended,lora,180 +on3,0,0,25,1,0,532,4500.000000,38,1,9494.001280,1884.127795,hintandextended,lora,180 +on5,0,0,25,1,0,643,4500.000000,38,1,15026.001280,1907.120410,hintandextended,lora,180 +on6,0,0,26,1,0,1083,4821.603840,38,2,20595.603840,2085.121741,hintandextended,lora,180 +on2,0,0,24,1,0,1949,4449.001280,38,0,38936.001280,1820.880922,hintandextended,lora,180 +on7,0,0,26,1,0,2114,4680.000000,38,2,40465.001280,1958.240000,hintandextended,lora,180 +on9,0,0,25,1,0,458,4500.000000,38,1,12409.001280,1877.023590,hintandextended,lora,180 +on0,1,11,24,0,0,0,4603.207680,38,0,-1.000000,2122.889421,hintandextended,lora,180 +on6,0,0,24,1,0,1975,4475.001280,39,0,39124.001280,1815.600717,hintandextended,lora,180 +on2,0,0,26,1,0,1049,4820.003840,39,2,17234.003840,1953.601946,hintandextended,lora,180 +on7,0,0,25,1,0,625,4565.603840,39,1,12663.603840,1920.977946,hintandextended,lora,180 +on8,0,0,25,1,0,810,4500.000000,39,1,19838.001280,1859.680000,hintandextended,lora,180 +on3,0,0,24,1,0,3065,4320.000000,39,0,64176.001280,1768.320205,hintandextended,lora,180 +on1,0,0,26,1,0,1888,4820.003840,39,2,36076.003840,1962.722150,hintandextended,lora,180 +on5,0,0,24,1,0,725,4320.000000,39,0,17074.001280,1755.840000,hintandextended,lora,180 +on9,0,0,24,1,0,1768,4448.001280,39,0,35916.001280,1804.800717,hintandextended,lora,180 +on4,0,0,27,1,0,2148,5001.603840,39,3,40338.603840,2071.361741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.215360,39,0,-1.000000,2260.091878,hintandextended,lora,180 +on12,0,0,27,1,0,2000,4860.000000,39,3,40177.001280,2069.071795,hintandextended,lora,180 +on11,0,0,24,1,0,643,4403.001280,39,0,12503.001280,1825.744512,hintandextended,lora,180 +on10,0,0,26,1,0,3275,4680.000000,39,3,67297.001280,1952.799795,hintandextended,lora,180 +on1,0,0,29,1,0,1244,5360.003840,40,6,19917.003840,2255.249331,hintandextended,lora,180 +on7,0,0,29,1,0,1383,5220.000000,40,5,23335.001280,2168.719386,hintandextended,lora,180 +on9,0,0,25,1,0,1306,4500.000000,40,1,26441.001280,1828.800000,hintandextended,lora,180 +on2,0,0,25,1,0,1797,4500.000000,40,1,35980.001280,1828.800000,hintandextended,lora,180 +on4,0,0,24,1,0,600,4360.001280,40,0,13987.001280,1769.600717,hintandextended,lora,180 +on12,0,0,27,1,0,1062,4860.000000,40,3,19757.001280,2051.807795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4740.011520,40,0,-1.000000,2203.208909,hintandextended,lora,180 +on6,0,0,24,1,0,497,4437.001280,40,0,10380.001280,1800.400717,hintandextended,lora,180 +on11,0,0,24,1,0,72,4372.001280,40,0,3486.001280,1776.800717,hintandextended,lora,180 +on10,0,0,25,1,0,854,4640.003840,40,1,14147.003840,1918.145741,hintandextended,lora,180 +on5,0,0,24,1,0,329,4449.001280,40,0,5313.001280,1818.704717,hintandextended,lora,180 +on3,0,0,25,1,0,634,4640.003840,40,1,10540.003840,1881.809741,hintandextended,lora,180 +on8,0,0,27,1,0,920,4860.000000,40,3,15566.001280,2004.527590,hintandextended,lora,180 +on5,0,0,28,1,0,889,5181.603840,41,4,12009.603840,2136.689126,hintandextended,lora,180 +on3,0,0,25,1,0,738,4597.000000,41,2,20696.001280,1929.424205,hintandextended,lora,180 +on1,0,0,25,1,0,633,4640.003840,41,1,10017.003840,1881.601946,hintandextended,lora,180 +on10,0,0,25,1,0,971,4551.603840,41,1,20857.603840,1925.762560,hintandextended,lora,180 +on9,0,0,24,1,0,125,4425.001280,41,0,1328.001280,1866.544922,hintandextended,lora,180 +on11,0,0,25,1,0,294,4500.000000,41,1,6673.001280,1844.048410,hintandextended,lora,180 +on4,0,0,26,1,0,453,4680.000000,41,3,9857.001280,1910.080000,hintandextended,lora,180 +on12,0,0,26,1,0,567,4680.000000,41,2,11848.001280,1960.655795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5023.819200,41,0,-1.000000,2316.735872,hintandextended,lora,180 +on8,0,0,25,1,0,3862,4500.000000,41,1,76857.001280,1873.120000,hintandextended,lora,180 +on2,0,0,26,1,0,993,5000.003840,41,3,17725.003840,2154.449741,hintandextended,lora,180 +on7,0,0,24,1,0,25,4433.603840,41,1,1488.603840,1825.009536,hintandextended,lora,180 +on6,0,0,25,1,0,858,4500.000000,41,1,17565.001280,1873.824205,hintandextended,lora,180 +on10,0,0,26,1,0,1099,4820.003840,42,2,20184.003840,1997.441331,hintandextended,lora,180 +on4,0,0,25,1,0,645,4640.003840,42,2,14372.003840,1908.321331,hintandextended,lora,180 +on9,0,0,24,1,0,278,4398.001280,42,0,4770.001280,1813.440717,hintandextended,lora,180 +on8,0,0,24,1,0,0,4320.000000,42,0,1276.001280,1756.544205,hintandextended,lora,180 +on2,0,0,27,1,0,742,4860.000000,42,3,17913.001280,2061.759795,hintandextended,lora,180 +on12,0,0,24,1,0,585,4345.001280,42,0,14212.001280,1763.600717,hintandextended,lora,180 +on11,0,0,26,1,0,1057,4820.003840,42,2,18073.003840,1988.273331,hintandextended,lora,180 +on5,0,0,27,1,0,1338,4860.000000,42,3,23391.001280,2032.560205,hintandextended,lora,180 +on0,1,12,24,0,0,0,5020.016640,42,0,-1.000000,2315.211162,hintandextended,lora,180 +on3,0,0,30,1,0,1529,5400.000000,42,6,27254.001280,2277.215181,hintandextended,lora,180 +on6,0,0,25,1,0,897,4500.000000,42,1,20024.001280,1852.847795,hintandextended,lora,180 +on7,0,0,26,1,0,512,4680.000000,42,2,9585.001280,1924.640000,hintandextended,lora,180 +on1,0,0,25,1,0,269,4569.003840,42,1,4930.003840,1853.202150,hintandextended,lora,180 +on6,0,0,24,1,0,611,4371.001280,43,0,11405.001280,1794.480922,hintandextended,lora,180 +on7,0,0,26,1,0,454,4820.603840,43,2,6140.603840,1961.153946,hintandextended,lora,180 +on9,0,0,25,1,0,363,4500.000000,43,1,10234.003840,1842.623386,hintandextended,lora,180 +on10,0,0,26,1,0,914,4821.603840,43,2,15998.603840,1987.201946,hintandextended,lora,180 +on1,0,0,25,1,0,473,4500.000000,43,1,10074.001280,1828.640000,hintandextended,lora,180 +on3,0,0,25,1,0,1020,4500.000000,43,1,22992.001280,1840.800205,hintandextended,lora,180 +on5,0,0,24,1,0,576,4336.003840,43,0,11565.003840,1801.761126,hintandextended,lora,180 +on11,0,0,27,1,0,972,4860.000000,43,3,15837.001280,2027.262976,hintandextended,lora,180 +on4,0,0,24,1,0,140,4440.001280,43,0,3267.001280,1829.984717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.215360,43,0,-1.000000,2260.090445,hintandextended,lora,180 +on8,0,0,24,1,0,1473,4333.001280,43,0,29807.001280,1758.800717,hintandextended,lora,180 +on12,0,0,27,1,0,918,4860.000000,43,3,19905.001280,2064.703386,hintandextended,lora,180 +on2,0,0,24,1,0,335,4455.001280,43,0,5980.001280,1835.984717,hintandextended,lora,180 +on9,0,0,25,1,0,2453,4500.000000,44,1,52065.001280,1828.543795,hintandextended,lora,180 +on2,0,0,24,1,0,0,4320.000000,44,0,2832.001280,1767.872205,hintandextended,lora,180 +on1,0,0,27,1,0,739,4860.000000,44,3,11459.001280,2045.184614,hintandextended,lora,180 +on0,1,12,24,0,0,0,5005.815360,44,0,-1.000000,2309.532493,hintandextended,lora,180 +on8,0,0,25,1,0,804,4500.000000,44,1,17652.001280,1835.360000,hintandextended,lora,180 +on4,0,0,25,1,0,436,4640.003840,44,1,6285.003840,1881.809946,hintandextended,lora,180 +on6,0,0,25,1,0,900,4500.000000,44,1,21463.602560,1833.648614,hintandextended,lora,180 +on11,0,0,24,1,0,1632,4320.000000,44,0,33050.001280,1754.880000,hintandextended,lora,180 +on5,0,0,24,1,0,45,4345.001280,44,0,2653.001280,1789.360512,hintandextended,lora,180 +on7,0,0,27,1,0,739,5001.603840,44,3,9761.603840,2136.050560,hintandextended,lora,180 +on12,0,0,26,1,0,379,4680.000000,44,2,9600.001280,1987.583181,hintandextended,lora,180 +on3,0,0,25,1,0,2555,4515.603840,44,1,52226.603840,1831.841741,hintandextended,lora,180 +on10,0,0,24,1,0,295,4415.001280,44,0,6125.001280,1820.240922,hintandextended,lora,180 +on4,0,0,27,1,0,2080,5001.603840,45,3,37823.603840,2057.921536,hintandextended,lora,180 +on5,0,0,25,1,0,1581,4500.000000,45,1,34304.001280,1835.199795,hintandextended,lora,180 +on10,0,0,27,1,0,2000,4860.000000,45,3,37662.001280,1975.999386,hintandextended,lora,180 +on1,0,0,24,1,0,1180,4400.001280,45,0,22402.001280,1785.600717,hintandextended,lora,180 +on12,0,0,24,1,0,410,4350.001280,45,0,9138.001280,1765.600922,hintandextended,lora,180 +on9,0,0,24,1,0,1752,4432.003840,45,0,34464.003840,1798.401741,hintandextended,lora,180 +on8,0,0,25,1,0,768,4500.000000,45,2,20450.001280,1846.720000,hintandextended,lora,180 +on3,0,0,28,1,0,2134,5040.000000,45,4,41045.001280,2086.703386,hintandextended,lora,180 +on7,0,0,25,1,0,1260,4500.000000,45,1,25779.602560,1828.496000,hintandextended,lora,180 +on2,0,0,24,1,0,732,4320.000000,45,0,15881.001280,1763.424205,hintandextended,lora,180 +on11,0,0,25,1,0,1632,4640.003840,45,1,31155.003840,1892.801741,hintandextended,lora,180 +on6,0,0,24,1,0,1579,4439.001280,45,0,30995.001280,1801.200717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4850.214080,45,0,-1.000000,2247.289523,hintandextended,lora,180 +on6,0,0,26,1,0,1171,4680.000000,46,3,27134.001280,1929.280000,hintandextended,lora,180 +on11,0,0,25,1,0,525,4500.000000,46,1,11234.001280,1828.543795,hintandextended,lora,180 +on3,0,0,28,1,0,1745,5073.000000,46,6,33089.001280,2151.215386,hintandextended,lora,180 +on2,0,0,25,1,0,813,4640.003840,46,1,15570.003840,1910.241741,hintandextended,lora,180 +on12,0,0,25,1,0,993,4640.003840,46,1,18502.003840,1909.985741,hintandextended,lora,180 +on8,0,0,24,1,0,360,4320.000000,46,0,9950.001280,1770.303181,hintandextended,lora,180 +on1,0,0,25,1,0,994,4573.000000,46,2,18342.001280,1872.399795,hintandextended,lora,180 +on9,0,0,29,1,0,1727,5220.000000,46,5,32346.001280,2161.087386,hintandextended,lora,180 +on4,0,0,27,1,0,1414,5000.003840,46,3,22430.003840,2032.257331,hintandextended,lora,180 +on10,0,0,24,1,0,1064,4494.000000,46,1,22270.001280,1886.719590,hintandextended,lora,180 +on5,0,0,26,1,0,638,4777.000000,46,2,11395.603840,1957.695590,hintandextended,lora,180 +on0,1,12,24,0,0,0,4902.616640,46,0,-1.000000,2268.250957,hintandextended,lora,180 +on7,0,0,25,1,0,643,4500.000000,46,1,15410.001280,1860.687590,hintandextended,lora,180 +on11,0,0,25,1,0,1260,4500.000000,47,2,26691.602560,1862.288819,hintandextended,lora,180 +on2,0,0,24,1,0,107,4407.001280,47,0,3282.001280,1788.401126,hintandextended,lora,180 +on7,0,0,26,1,0,634,4722.000000,47,2,10909.603840,1974.992000,hintandextended,lora,180 +on4,0,0,24,1,0,511,4451.001280,47,0,10749.001280,1907.185331,hintandextended,lora,180 +on3,0,0,25,1,0,1080,4500.000000,47,1,24921.602560,1963.536410,hintandextended,lora,180 +on5,0,0,24,1,0,186,4320.000000,47,0,7083.001280,1755.104205,hintandextended,lora,180 +on12,0,0,24,1,0,876,4459.603840,47,1,15779.603840,1809.490355,hintandextended,lora,180 +on1,0,0,24,1,0,809,4389.001280,47,0,15619.001280,1844.720717,hintandextended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,47,0,-1.000000,1728.000000,hintandextended,lora,180 +on9,0,0,24,1,0,900,4320.000000,47,0,20100.001280,1782.240410,hintandextended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,47,0,39434.001280,1780.800205,hintandextended,lora,180 +on10,0,0,25,1,0,1553,4500.000000,47,1,31430.001280,1829.120000,hintandextended,lora,180 +on0,1,11,24,0,0,0,4789.414080,47,0,-1.000000,2197.373005,hintandextended,lora,180 +on11,0,0,26,1,0,996,4821.603840,48,2,18352.603840,2013.665331,hintandextended,lora,180 +on0,1,12,24,0,0,0,5024.819200,48,0,-1.000000,2317.131981,hintandextended,lora,180 +on10,0,0,24,1,0,476,4416.003840,48,0,10756.003840,1810.881536,hintandextended,lora,180 +on5,0,0,26,1,0,795,4821.603840,48,2,16219.603840,2019.393536,hintandextended,lora,180 +on8,0,0,25,1,0,1374,4500.000000,48,1,27889.001280,1837.503795,hintandextended,lora,180 +on2,0,0,25,1,0,348,4500.000000,48,2,10596.001280,1848.847795,hintandextended,lora,180 +on3,0,0,25,1,0,561,4500.000000,48,1,16058.001280,1880.832000,hintandextended,lora,180 +on9,0,0,26,1,0,634,4680.000000,48,2,12514.001280,1919.743795,hintandextended,lora,180 +on12,0,0,25,1,0,967,4500.000000,48,1,21781.001280,1852.576000,hintandextended,lora,180 +on1,0,0,24,1,0,185,4320.000000,48,0,4543.001280,1809.024410,hintandextended,lora,180 +on6,0,0,26,1,0,854,4820.003840,48,2,12674.003840,1979.537741,hintandextended,lora,180 +on4,0,0,25,1,0,1323,4543.603840,48,1,28050.603840,1843.041741,hintandextended,lora,180 +on7,0,0,25,1,0,907,4930.000000,48,4,18191.001280,2082.511795,hintandextended,lora,180 +on7,0,0,27,1,0,1502,4860.000000,49,3,27782.001280,2007.887590,hintandextended,lora,180 +on12,0,0,27,1,0,1207,5000.003840,49,3,22084.003840,2064.961536,hintandextended,lora,180 +on3,0,0,24,1,0,571,4331.001280,49,0,12066.001280,1786.384717,hintandextended,lora,180 +on6,0,0,24,1,0,307,4321.000000,49,1,7588.001280,1754.208205,hintandextended,lora,180 +on10,0,0,24,1,0,180,4320.000000,49,0,5602.001280,1756.640000,hintandextended,lora,180 +on9,0,0,25,1,0,1071,4500.000000,49,1,20759.001280,1828.640000,hintandextended,lora,180 +on4,0,0,26,1,0,1158,4749.000000,49,3,21924.001280,1956.815590,hintandextended,lora,180 +on11,0,0,26,1,0,1095,4820.003840,49,2,20919.003840,1983.489331,hintandextended,lora,180 +on2,0,0,25,1,0,1033,4640.003840,49,1,17096.003840,1881.601741,hintandextended,lora,180 +on5,0,0,27,1,0,724,5000.603840,49,4,12226.603840,2057.601741,hintandextended,lora,180 +on8,0,0,24,1,0,173,4473.001280,49,0,2286.001280,1814.800717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4898.616640,49,0,-1.000000,2266.650138,hintandextended,lora,180 +on1,0,0,24,1,0,787,4367.001280,49,0,16936.001280,1772.400717,hintandextended,lora,180 +on7,0,0,24,1,0,1462,4322.001280,50,0,31514.001280,1754.400717,hintandextended,lora,180 +on3,0,0,24,1,0,3930,4450.001280,50,0,78719.001280,1810.464717,hintandextended,lora,180 +on9,0,0,25,1,0,665,4500.000000,50,1,17338.001280,1879.520000,hintandextended,lora,180 +on12,0,0,24,1,0,1216,4436.001280,50,0,22512.001280,1801.473126,hintandextended,lora,180 +on6,0,0,24,1,0,540,4320.000000,50,0,14202.001280,1868.864819,hintandextended,lora,180 +on5,0,0,26,1,0,1679,4680.000000,50,2,34237.001280,1969.568614,hintandextended,lora,180 +on8,0,0,25,1,0,2520,4500.000000,50,1,52683.602560,1867.952205,hintandextended,lora,180 +on11,0,0,24,1,0,360,4320.000000,50,0,10417.001280,1785.280614,hintandextended,lora,180 +on10,0,0,26,1,0,1157,4680.000000,50,3,19582.001280,1991.584205,hintandextended,lora,180 +on1,0,0,25,1,0,3967,4500.000000,50,1,82226.001280,1884.640000,hintandextended,lora,180 +on4,0,0,25,1,0,1892,4529.000000,50,3,36445.001280,1848.448000,hintandextended,lora,180 +on2,0,0,25,1,0,1713,4640.003840,50,1,31674.003840,1881.601946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4556.006400,50,0,-1.000000,2129.609318,hintandextended,lora,180 +on0,1,12,24,0,0,0,4948.217920,51,0,-1.000000,2286.493312,hintandextended,lora,180 +on10,0,0,27,1,0,1267,4860.000000,51,3,25560.001280,2036.479590,hintandextended,lora,180 +on7,0,0,24,1,0,180,4320.000000,51,0,4734.001280,1761.824410,hintandextended,lora,180 +on9,0,0,26,1,0,859,4761.000000,51,3,19609.001280,2003.551795,hintandextended,lora,180 +on4,0,0,25,1,0,1034,4500.000000,51,1,23499.001280,1828.640000,hintandextended,lora,180 +on5,0,0,26,1,0,494,4820.603840,51,2,9286.603840,2013.953741,hintandextended,lora,180 +on11,0,0,25,1,0,1496,4500.000000,51,1,32022.001280,1840.160205,hintandextended,lora,180 +on2,0,0,26,1,0,1187,4820.003840,51,2,23659.003840,1995.793536,hintandextended,lora,180 +on8,0,0,26,1,0,838,4745.002560,51,2,14884.002560,1959.345843,hintandextended,lora,180 +on12,0,0,24,1,0,622,4382.001280,51,0,13290.001280,1809.760512,hintandextended,lora,180 +on6,0,0,24,1,0,495,4435.001280,51,0,9126.001280,1799.600922,hintandextended,lora,180 +on3,0,0,25,1,0,2340,4500.000000,51,1,48886.602560,1857.392000,hintandextended,lora,180 +on1,0,0,26,1,0,993,4820.003840,51,2,19769.003840,1953.809741,hintandextended,lora,180 +on2,0,0,25,1,0,453,4640.003840,52,1,7015.003840,1881.601741,hintandextended,lora,180 +on11,0,0,24,1,0,1835,4335.001280,52,0,37720.001280,1788.240717,hintandextended,lora,180 +on6,0,0,24,1,0,0,4320.000000,52,0,2666.001280,1753.664000,hintandextended,lora,180 +on5,0,0,25,1,0,818,4535.000000,52,2,23559.001280,1935.904205,hintandextended,lora,180 +on12,0,0,25,1,0,672,4500.000000,52,1,17478.001280,1865.119590,hintandextended,lora,180 +on1,0,0,27,1,0,1120,4860.000000,52,3,19847.001280,1973.120000,hintandextended,lora,180 +on10,0,0,26,1,0,950,4821.603840,52,2,20008.603840,1998.721536,hintandextended,lora,180 +on7,0,0,26,1,0,385,4680.000000,52,2,10653.001280,1933.167590,hintandextended,lora,180 +on3,0,0,26,1,0,569,4821.603840,52,2,10814.603840,1990.945946,hintandextended,lora,180 +on9,0,0,24,1,0,621,4393.001280,52,1,13994.001280,1783.072717,hintandextended,lora,180 +on4,0,0,28,1,0,1068,5180.003840,52,4,17638.003840,2164.321126,hintandextended,lora,180 +on8,0,0,24,1,0,346,4478.001280,52,1,6855.001280,1844.928717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4943.216640,52,0,-1.000000,2284.490752,hintandextended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,hintandextended,lora,180 +on11,0,0,26,1,0,2481,4820.603840,53,2,46418.603840,2014.530355,hintandextended,lora,180 +on1,0,0,25,1,0,1080,4500.000000,53,1,24181.001280,1870.944614,hintandextended,lora,180 +on9,0,0,25,1,0,912,4500.000000,53,1,20912.603840,1864.800410,hintandextended,lora,180 +on10,0,0,26,1,0,1156,4680.000000,53,2,20751.001280,1974.368205,hintandextended,lora,180 +on8,0,0,25,1,0,1453,4500.000000,53,1,31265.001280,1885.440205,hintandextended,lora,180 +on12,0,0,26,1,0,974,4820.003840,53,4,17492.003840,1960.001536,hintandextended,lora,180 +on6,0,0,24,1,0,3240,4320.000000,53,0,66809.001280,1753.600205,hintandextended,lora,180 +on5,0,0,24,1,0,2337,4477.001280,53,0,46258.001280,1845.040922,hintandextended,lora,180 +on4,0,0,24,1,0,515,4455.001280,53,0,7810.001280,1848.624717,hintandextended,lora,180 +on7,0,0,24,1,0,550,4320.000000,53,0,12292.001280,1781.984410,hintandextended,lora,180 +on2,0,0,24,1,0,753,4333.001280,53,0,17332.001280,1758.800922,hintandextended,lora,180 +on0,1,11,24,0,0,0,4898.214080,53,0,-1.000000,2240.891776,hintandextended,lora,180 +on4,0,0,25,1,0,0,4500.000000,54,1,2060.602560,1854.032614,hintandextended,lora,180 +on5,0,0,26,1,0,699,4820.003840,54,2,12693.003840,1978.961741,hintandextended,lora,180 +on12,0,0,25,1,0,633,4640.003840,54,1,9756.003840,1899.681946,hintandextended,lora,180 +on7,0,0,28,1,0,1219,5040.000000,54,4,19801.001280,2082.079386,hintandextended,lora,180 +on6,0,0,28,1,0,1164,5180.003840,54,4,16310.003840,2125.105331,hintandextended,lora,180 +on8,0,0,25,1,0,540,4500.000000,54,1,9596.001280,1857.280205,hintandextended,lora,180 +on3,0,0,26,1,0,826,4680.000000,54,2,16150.001280,1939.264205,hintandextended,lora,180 +on2,0,0,24,1,0,576,4336.001280,54,0,12533.001280,1788.640922,hintandextended,lora,180 +on11,0,0,27,1,0,1078,5001.603840,54,3,19962.603840,2062.210355,hintandextended,lora,180 +on1,0,0,25,1,0,2426,4500.000000,54,1,50251.001280,1839.808000,hintandextended,lora,180 +on9,0,0,25,1,0,1180,4580.603840,54,1,24229.603840,1934.962150,hintandextended,lora,180 +on0,1,12,24,0,0,0,5125.821760,54,0,-1.000000,2357.534234,hintandextended,lora,180 +on10,0,0,25,1,0,1164,4500.000000,54,1,24068.001280,1836.127795,hintandextended,lora,180 +on2,0,0,24,1,0,673,4433.001280,55,0,12220.001280,1813.200922,hintandextended,lora,180 +on7,0,0,25,1,0,2005,4500.000000,55,1,45220.001280,1879.679590,hintandextended,lora,180 +on11,0,0,25,1,0,328,4628.603840,55,1,5133.603840,1904.770150,hintandextended,lora,180 +on8,0,0,24,1,0,322,4442.001280,55,0,4973.001280,1879.424512,hintandextended,lora,180 +on6,0,0,26,1,0,2254,4821.603840,55,2,45381.603840,2011.265946,hintandextended,lora,180 +on5,0,0,25,1,0,699,4500.000000,55,1,15462.001280,1886.080205,hintandextended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,55,0,26206.001280,1753.600205,hintandextended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,55,0,22921.001280,1753.600410,hintandextended,lora,180 +on12,0,0,24,1,0,2513,4394.000000,55,1,51618.001280,1798.240000,hintandextended,lora,180 +on1,0,0,25,1,0,567,4507.003840,55,1,12380.003840,1895.762150,hintandextended,lora,180 +on3,0,0,25,1,0,488,4500.000000,55,1,10214.001280,1828.800000,hintandextended,lora,180 +on4,0,0,24,1,0,1440,4442.000000,55,1,29591.602560,1802.448614,hintandextended,lora,180 +on0,1,12,24,0,0,0,4947.214080,55,0,-1.000000,2286.090547,hintandextended,lora,180 +on5,0,0,26,1,0,506,4680.000000,56,2,10505.001280,1932.160000,hintandextended,lora,180 +on2,0,0,28,1,0,790,5180.003840,56,4,14239.003840,2161.121536,hintandextended,lora,180 +on11,0,0,25,1,0,2213,4500.000000,56,1,45309.001280,1840.928205,hintandextended,lora,180 +on3,0,0,25,1,0,1187,4500.000000,56,1,25004.001280,1912.480410,hintandextended,lora,180 +on10,0,0,25,1,0,217,4500.000000,56,1,6638.001280,1848.000819,hintandextended,lora,180 +on8,0,0,26,1,0,727,4820.003840,56,2,10665.003840,1970.785741,hintandextended,lora,180 +on1,0,0,25,1,0,438,4640.003840,56,1,6798.003840,1892.689741,hintandextended,lora,180 +on6,0,0,25,1,0,490,4610.000000,56,2,14079.001280,1976.320000,hintandextended,lora,180 +on12,0,0,24,1,0,3449,4328.001280,56,0,69212.001280,1756.800717,hintandextended,lora,180 +on7,0,0,24,1,0,0,4320.000000,56,0,2308.001280,1806.112205,hintandextended,lora,180 +on9,0,0,27,1,0,987,5001.603840,56,3,15323.603840,2098.353946,hintandextended,lora,180 +on4,0,0,26,1,0,886,4700.000000,56,3,15162.001280,1934.640000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4885.616640,56,0,-1.000000,2261.453210,hintandextended,lora,180 +on0,1,12,24,0,0,0,5050.221760,57,0,-1.000000,2327.293824,hintandextended,lora,180 +on2,0,0,28,1,0,1217,5180.003840,57,4,18426.003840,2139.089331,hintandextended,lora,180 +on6,0,0,25,1,0,453,4640.003840,57,1,7529.003840,1881.601741,hintandextended,lora,180 +on10,0,0,25,1,0,0,4500.000000,57,1,2805.602560,1853.776614,hintandextended,lora,180 +on4,0,0,27,1,0,876,4860.000000,57,3,17492.001280,1998.847795,hintandextended,lora,180 +on5,0,0,26,1,0,914,4680.000000,57,2,18266.001280,1920.799590,hintandextended,lora,180 +on9,0,0,24,1,0,226,4386.000000,57,1,7369.001280,1831.536000,hintandextended,lora,180 +on7,0,0,26,1,0,1020,4820.003840,57,2,17652.003840,2005.761331,hintandextended,lora,180 +on3,0,0,25,1,0,386,4500.000000,57,1,11905.001280,1853.119795,hintandextended,lora,180 +on1,0,0,25,1,0,868,4640.003840,57,1,12065.003840,1881.601741,hintandextended,lora,180 +on8,0,0,30,1,0,1365,5541.603840,57,6,22022.603840,2334.497126,hintandextended,lora,180 +on11,0,0,28,1,0,1257,5040.000000,57,4,21861.001280,2109.359386,hintandextended,lora,180 +on12,0,0,24,1,0,1887,4387.001280,57,0,38140.001280,1780.400717,hintandextended,lora,180 +on9,0,0,25,1,0,1011,4500.000000,58,1,21046.001280,1865.536000,hintandextended,lora,180 +on2,0,0,24,1,0,35,4335.001280,58,0,2747.001280,1759.600717,hintandextended,lora,180 +on4,0,0,24,1,0,3714,4414.001280,58,0,72367.001280,1791.200717,hintandextended,lora,180 +on12,0,0,25,1,0,720,4500.000000,58,2,15904.602560,1874.896614,hintandextended,lora,180 +on3,0,0,24,1,0,1914,4414.001280,58,0,37662.001280,1791.201126,hintandextended,lora,180 +on5,0,0,25,1,0,512,4500.000000,58,1,10241.001280,1825.808410,hintandextended,lora,180 +on10,0,0,24,1,0,1096,4476.000000,58,2,27554.001280,1881.920000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4460.603840,58,0,-1.000000,2091.447885,hintandextended,lora,180 +on7,0,0,25,1,0,1201,4500.000000,58,1,24439.001280,1882.880410,hintandextended,lora,180 +on8,0,0,26,1,0,930,4953.603840,58,4,12422.603840,2116.337946,hintandextended,lora,180 +on1,0,0,25,1,0,2773,4500.000000,58,1,57030.001280,1839.008000,hintandextended,lora,180 +on6,0,0,24,1,0,315,4435.001280,58,0,4528.001280,1841.040717,hintandextended,lora,180 +on11,0,0,24,1,0,638,4398.001280,58,0,12262.001280,1838.625126,hintandextended,lora,180 +on6,0,0,25,1,0,839,4599.603840,59,1,17568.603840,1954.097946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4740.611520,59,0,-1.000000,2203.451366,hintandextended,lora,180 +on3,0,0,24,1,0,808,4388.001280,59,0,17408.001280,1780.800922,hintandextended,lora,180 +on1,0,0,25,1,0,453,4640.003840,59,1,7087.003840,1881.601946,hintandextended,lora,180 +on12,0,0,24,1,0,81,4381.001280,59,0,2323.001280,1816.273126,hintandextended,lora,180 +on4,0,0,27,1,0,568,4860.000000,59,3,13129.001280,2058.367590,hintandextended,lora,180 +on11,0,0,24,1,0,300,4420.001280,59,0,6927.001280,1819.680922,hintandextended,lora,180 +on10,0,0,24,1,0,3911,4431.001280,59,0,79144.001280,1798.000717,hintandextended,lora,180 +on7,0,0,27,1,0,1388,4860.000000,59,4,26185.001280,2032.096205,hintandextended,lora,180 +on8,0,0,25,1,0,1195,4500.000000,59,1,24057.001280,1855.520205,hintandextended,lora,180 +on5,0,0,24,1,0,917,4320.000000,59,0,20010.001280,1759.040410,hintandextended,lora,180 +on9,0,0,26,1,0,759,4840.003840,59,3,10659.003840,1996.834150,hintandextended,lora,180 +on2,0,0,25,1,0,491,4500.000000,59,1,10499.001280,1832.160000,hintandextended,lora,180 +on11,0,0,25,1,0,990,4500.000000,60,1,21284.001280,1889.280205,hintandextended,lora,180 +on8,0,0,24,1,0,392,4332.001280,60,0,9417.001280,1758.400922,hintandextended,lora,180 +on10,0,0,25,1,0,775,4500.000000,60,1,17534.001280,1885.776614,hintandextended,lora,180 +on12,0,0,24,1,0,3077,4320.000000,60,0,62534.001280,1782.720000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.212800,60,0,-1.000000,2259.291264,hintandextended,lora,180 +on3,0,0,25,1,0,1021,4640.003840,60,1,17694.003840,1904.225741,hintandextended,lora,180 +on9,0,0,24,1,0,717,4477.001280,60,0,11221.001280,1844.784717,hintandextended,lora,180 +on2,0,0,27,1,0,1285,4860.000000,60,3,24392.001280,2047.679795,hintandextended,lora,180 +on1,0,0,24,1,0,2520,4320.000000,60,0,52248.001280,1756.800000,hintandextended,lora,180 +on4,0,0,26,1,0,985,4879.603840,60,3,21445.603840,2022.770355,hintandextended,lora,180 +on6,0,0,25,1,0,3409,4500.000000,60,1,68125.001280,1857.440000,hintandextended,lora,180 +on7,0,0,24,1,0,111,4411.001280,60,0,987.001280,1790.001126,hintandextended,lora,180 +on5,0,0,25,1,0,519,4639.603840,60,1,9577.603840,1936.529946,hintandextended,lora,180 +on9,0,0,24,1,0,288,4408.001280,61,0,4232.001280,1788.800922,hintandextended,lora,180 +on2,0,0,25,1,0,2803,4500.000000,61,1,60407.001280,1871.103795,hintandextended,lora,180 +on4,0,0,24,1,0,506,4352.000000,61,1,13411.001280,1774.768000,hintandextended,lora,180 +on1,0,0,24,1,0,1543,4403.001280,61,0,30910.001280,1786.800717,hintandextended,lora,180 +on10,0,0,26,1,0,1026,4692.000000,61,3,18371.001280,1908.799795,hintandextended,lora,180 +on3,0,0,25,1,0,1658,4500.000000,61,1,33875.001280,1857.440000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4740.611520,61,0,-1.000000,2203.449523,hintandextended,lora,180 +on12,0,0,24,1,0,895,4475.001280,61,0,15461.001280,1815.600717,hintandextended,lora,180 +on7,0,0,25,1,0,1486,4526.603840,61,1,31070.603840,1893.410560,hintandextended,lora,180 +on6,0,0,24,1,0,1208,4428.001280,61,0,25055.001280,1837.440717,hintandextended,lora,180 +on11,0,0,24,1,0,492,4432.001280,61,0,7940.001280,1814.080717,hintandextended,lora,180 +on5,0,0,25,1,0,413,4533.003840,61,1,8100.003840,1867.281946,hintandextended,lora,180 +on8,0,0,26,1,0,814,4820.003840,61,2,13571.003840,1964.162150,hintandextended,lora,180 +on6,0,0,24,1,0,200,4320.001280,62,0,5727.001280,1782.144717,hintandextended,lora,180 +on7,0,0,25,1,0,788,4640.003840,62,1,13433.003840,1896.321741,hintandextended,lora,180 +on3,0,0,27,1,0,785,4860.000000,62,3,13273.001280,1993.023795,hintandextended,lora,180 +on8,0,0,26,1,0,841,4680.000000,62,2,20440.001280,1954.463795,hintandextended,lora,180 +on10,0,0,27,1,0,909,4860.000000,62,3,14946.001280,2011.487590,hintandextended,lora,180 +on0,1,12,24,0,0,0,5021.619200,62,0,-1.000000,2315.851776,hintandextended,lora,180 +on4,0,0,29,1,0,1135,5220.000000,62,6,21777.001280,2241.535181,hintandextended,lora,180 +on1,0,0,25,1,0,494,4500.000000,62,1,10619.001280,1857.952000,hintandextended,lora,180 +on2,0,0,25,1,0,633,4640.003840,62,1,10779.003840,1881.601741,hintandextended,lora,180 +on12,0,0,25,1,0,86,4566.603840,62,1,3223.603840,1852.241741,hintandextended,lora,180 +on11,0,0,29,1,0,1026,5360.003840,62,5,20600.003840,2252.385126,hintandextended,lora,180 +on5,0,0,24,1,0,9,4320.000000,62,0,3062.001280,1755.103795,hintandextended,lora,180 +on9,0,0,25,1,0,408,4640.003840,62,1,5887.003840,1917.649536,hintandextended,lora,180 +on6,0,0,25,1,0,948,4640.003840,63,1,17932.003840,1903.185741,hintandextended,lora,180 +on5,0,0,30,1,0,1702,5400.000000,63,6,33976.001280,2295.871386,hintandextended,lora,180 +on4,0,0,25,1,0,2030,4500.000000,63,1,43497.001280,1902.176000,hintandextended,lora,180 +on1,0,0,26,1,0,999,4680.000000,63,2,19672.002560,1928.608000,hintandextended,lora,180 +on3,0,0,25,1,0,1400,4640.003840,63,1,28628.003840,1931.521946,hintandextended,lora,180 +on2,0,0,25,1,0,765,4500.000000,63,1,17772.001280,1857.024000,hintandextended,lora,180 +on12,0,0,28,1,0,1514,5040.000000,63,4,29440.001280,2096.863181,hintandextended,lora,180 +on10,0,0,27,1,0,1069,4860.000000,63,3,23512.001280,2072.063590,hintandextended,lora,180 +on11,0,0,24,1,0,540,4320.000000,63,0,13082.001280,1785.088205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4972.616640,63,0,-1.000000,2296.250957,hintandextended,lora,180 +on9,0,0,27,1,0,1386,5000.003840,63,3,23672.003840,2056.641331,hintandextended,lora,180 +on7,0,0,27,1,0,1101,4860.000000,63,3,28468.001280,2045.119386,hintandextended,lora,180 +on8,0,0,29,1,0,1594,5361.603840,63,5,29601.603840,2264.545741,hintandextended,lora,180 +on12,0,0,25,1,0,1173,4557.000000,64,3,24766.001280,1883.344000,hintandextended,lora,180 +on8,0,0,24,1,0,1940,4440.001280,64,0,37131.001280,1801.600717,hintandextended,lora,180 +on1,0,0,24,1,0,2225,4365.001280,64,0,45014.001280,1810.480922,hintandextended,lora,180 +on10,0,0,25,1,0,542,4810.603840,64,2,9491.603840,2053.266150,hintandextended,lora,180 +on0,1,12,24,0,0,0,4728.608960,64,0,-1.000000,2198.649523,hintandextended,lora,180 +on11,0,0,26,1,0,746,4680.000000,64,2,12589.001280,1903.999795,hintandextended,lora,180 +on6,0,0,25,1,0,805,4500.000000,64,1,15197.001280,1845.488205,hintandextended,lora,180 +on7,0,0,25,1,0,1398,4500.000000,64,1,28431.001280,1852.800410,hintandextended,lora,180 +on5,0,0,24,1,0,180,4320.000000,64,0,5797.001280,1767.872205,hintandextended,lora,180 +on3,0,0,26,1,0,1106,4680.000000,64,3,19423.001280,1941.488410,hintandextended,lora,180 +on2,0,0,25,1,0,855,4640.003840,64,1,12749.003840,1906.722355,hintandextended,lora,180 +on4,0,0,24,1,0,3947,4467.001280,64,0,76624.001280,1812.400717,hintandextended,lora,180 +on9,0,0,25,1,0,300,4500.000000,64,1,9330.001280,1828.543795,hintandextended,lora,180 +on8,0,0,25,1,0,174,4654.603840,65,1,932.603840,1917.474150,hintandextended,lora,180 +on6,0,0,24,1,0,871,4451.001280,65,0,15341.001280,1806.000922,hintandextended,lora,180 +on1,0,0,25,1,0,653,4500.000000,65,1,13123.001280,1860.128410,hintandextended,lora,180 +on10,0,0,25,1,0,519,4500.000000,65,1,9979.001280,1860.384410,hintandextended,lora,180 +on5,0,0,25,1,0,180,4500.000000,65,1,7079.002560,1878.048410,hintandextended,lora,180 +on9,0,0,24,1,0,174,4474.001280,65,0,772.001280,1856.064717,hintandextended,lora,180 +on4,0,0,26,1,0,737,4965.003840,65,3,15501.003840,2125.842150,hintandextended,lora,180 +on7,0,0,24,1,0,3607,4320.000000,65,0,73193.001280,1764.640000,hintandextended,lora,180 +on3,0,0,24,1,0,659,4419.003840,65,0,13283.003840,1850.481946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4963.216640,65,0,-1.000000,2292.493210,hintandextended,lora,180 +on2,0,0,25,1,0,322,4500.000000,65,1,6909.001280,1857.440205,hintandextended,lora,180 +on11,0,0,27,1,0,902,4860.000000,65,3,18998.001280,2038.048000,hintandextended,lora,180 +on12,0,0,25,1,0,1800,4500.000000,65,2,36877.602560,1886.032000,hintandextended,lora,180 +on4,0,0,28,1,0,1629,5071.000000,66,6,30298.001280,2127.503590,hintandextended,lora,180 +on1,0,0,25,1,0,474,4500.000000,66,1,9599.001280,1828.848000,hintandextended,lora,180 +on8,0,0,29,1,0,1343,5360.003840,66,5,19687.003840,2291.457536,hintandextended,lora,180 +on0,1,12,24,0,0,0,4903.610240,66,0,-1.000000,2268.649830,hintandextended,lora,180 +on2,0,0,24,1,0,1256,4476.001280,66,0,25112.001280,1816.000717,hintandextended,lora,180 +on6,0,0,27,1,0,1448,4860.000000,66,3,26929.001280,1976.959590,hintandextended,lora,180 +on3,0,0,27,1,0,1027,4860.000000,66,4,19527.001280,2022.735386,hintandextended,lora,180 +on11,0,0,24,1,0,180,4320.000000,66,0,4524.001280,1784.768410,hintandextended,lora,180 +on5,0,0,26,1,0,928,4820.003840,66,2,13470.003840,1981.281536,hintandextended,lora,180 +on10,0,0,26,1,0,846,4680.000000,66,2,17653.001280,1931.551795,hintandextended,lora,180 +on9,0,0,25,1,0,181,4500.000000,66,1,4686.601280,1831.424410,hintandextended,lora,180 +on12,0,0,24,1,0,2880,4320.000000,66,0,59322.001280,1753.600205,hintandextended,lora,180 +on7,0,0,25,1,0,416,4500.000000,66,2,13310.001280,1883.520000,hintandextended,lora,180 +on5,0,0,24,1,0,1141,4361.001280,67,0,23501.001280,1770.000717,hintandextended,lora,180 +on3,0,0,24,1,0,180,4320.000000,67,0,5552.001280,1756.544000,hintandextended,lora,180 +on7,0,0,28,1,0,1078,5040.000000,67,4,18200.001280,2092.511795,hintandextended,lora,180 +on11,0,0,27,1,0,951,5001.603840,67,3,15094.603840,2086.561536,hintandextended,lora,180 +on1,0,0,24,1,0,0,4320.000000,67,0,1713.001280,1753.600205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4953.617920,67,0,-1.000000,2288.650854,hintandextended,lora,180 +on8,0,0,26,1,0,453,4820.003840,67,2,10043.003840,1982.193741,hintandextended,lora,180 +on6,0,0,24,1,0,311,4422.000000,67,1,9883.001280,1813.968000,hintandextended,lora,180 +on4,0,0,25,1,0,857,4640.003840,67,1,11882.003840,1881.601741,hintandextended,lora,180 +on10,0,0,25,1,0,1260,4633.000000,67,2,26366.001280,1920.400000,hintandextended,lora,180 +on9,0,0,27,1,0,909,4860.000000,67,3,14933.001280,1978.670976,hintandextended,lora,180 +on12,0,0,24,1,0,1187,4544.003840,67,1,23661.003840,1890.401946,hintandextended,lora,180 +on2,0,0,24,1,0,574,4334.001280,67,0,11722.001280,1797.760512,hintandextended,lora,180 +on11,0,0,24,1,0,0,4405.000000,68,1,2359.602560,1787.648819,hintandextended,lora,180 +on5,0,0,24,1,0,2282,4422.001280,68,0,46368.001280,1794.400717,hintandextended,lora,180 +on4,0,0,26,1,0,1795,4680.000000,68,2,35653.001280,1905.760000,hintandextended,lora,180 +on3,0,0,24,1,0,1436,4476.001280,68,0,26439.001280,1844.960717,hintandextended,lora,180 +on8,0,0,24,1,0,1573,4433.001280,68,0,31288.001280,1844.560922,hintandextended,lora,180 +on12,0,0,24,1,0,820,4402.001280,68,1,17317.001280,1801.600717,hintandextended,lora,180 +on10,0,0,25,1,0,1080,4500.000000,68,1,21956.001280,1836.480410,hintandextended,lora,180 +on9,0,0,24,1,0,2700,4320.000000,68,0,54879.001280,1753.600205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4737.208960,68,0,-1.000000,2202.089728,hintandextended,lora,180 +on2,0,0,26,1,0,2606,4680.000000,68,2,47294.001280,1903.999795,hintandextended,lora,180 +on1,0,0,25,1,0,926,4506.603840,68,1,21323.603840,1841.729741,hintandextended,lora,180 +on6,0,0,24,1,0,1039,4439.001280,68,0,21163.001280,1841.904717,hintandextended,lora,180 +on7,0,0,24,1,0,593,4353.001280,68,0,11680.001280,1795.184922,hintandextended,lora,180 +on11,0,0,26,1,0,1222,4820.003840,69,2,21490.003840,1971.697741,hintandextended,lora,180 +on6,0,0,26,1,0,966,4820.003840,69,2,16234.003840,1992.577946,hintandextended,lora,180 +on3,0,0,28,1,0,1521,5180.003840,69,4,28607.003840,2173.921331,hintandextended,lora,180 +on10,0,0,27,1,0,1341,4927.000000,69,4,28447.001280,2075.823386,hintandextended,lora,180 +on8,0,0,24,1,0,701,4461.001280,69,0,13937.001280,1810.000717,hintandextended,lora,180 +on9,0,0,24,1,0,360,4320.000000,69,0,9939.001280,1781.568205,hintandextended,lora,180 +on0,1,12,24,0,0,0,5120.020480,69,0,-1.000000,2355.211674,hintandextended,lora,180 +on4,0,0,28,1,0,1675,5040.000000,69,4,31756.001280,2134.655795,hintandextended,lora,180 +on2,0,0,25,1,0,764,4640.003840,69,1,14097.003840,1894.081741,hintandextended,lora,180 +on5,0,0,24,1,0,841,4421.001280,69,0,16074.001280,1814.480717,hintandextended,lora,180 +on12,0,0,26,1,0,1348,4820.003840,69,2,25038.003840,2010.881741,hintandextended,lora,180 +on1,0,0,27,1,0,1152,4860.000000,69,3,21330.001280,1991.231590,hintandextended,lora,180 +on7,0,0,28,1,0,1470,5040.000000,69,4,24878.001280,2059.615795,hintandextended,lora,180 +on2,0,0,27,1,0,1311,4860.000000,70,3,28394.001280,2042.463795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4938.814080,70,0,-1.000000,2282.731571,hintandextended,lora,180 +on9,0,0,25,1,0,685,4500.000000,70,1,13523.001280,1828.848000,hintandextended,lora,180 +on8,0,0,26,1,0,855,4680.000000,70,2,14917.001280,1905.296000,hintandextended,lora,180 +on3,0,0,25,1,0,2495,4500.000000,70,1,49727.001280,1857.440000,hintandextended,lora,180 +on5,0,0,24,1,0,387,4327.001280,70,0,10619.001280,1799.824922,hintandextended,lora,180 +on11,0,0,24,1,0,0,4320.000000,70,0,2360.001280,1764.480614,hintandextended,lora,180 +on7,0,0,25,1,0,785,4500.000000,70,1,20540.001280,1900.000205,hintandextended,lora,180 +on12,0,0,27,1,0,1163,5001.603840,70,4,23479.603840,2115.137536,hintandextended,lora,180 +on6,0,0,26,1,0,843,4820.003840,70,2,13683.003840,1993.185741,hintandextended,lora,180 +on4,0,0,26,1,0,706,4821.603840,70,2,15078.603840,2053.249536,hintandextended,lora,180 +on1,0,0,26,1,0,1109,4680.000000,70,2,23318.001280,1931.807590,hintandextended,lora,180 +on10,0,0,25,1,0,1261,4500.000000,70,1,28570.601280,1858.400410,hintandextended,lora,180 +on5,0,0,26,1,0,957,4798.000000,71,3,18698.001280,1997.311590,hintandextended,lora,180 +on8,0,0,24,1,0,356,4476.001280,71,0,5805.001280,1816.000922,hintandextended,lora,180 +on7,0,0,27,1,0,842,4860.000000,71,3,14561.001280,2004.800000,hintandextended,lora,180 +on10,0,0,24,1,0,2931,4459.000000,71,1,63597.001280,1879.376000,hintandextended,lora,180 +on11,0,0,25,1,0,591,4500.000000,71,1,13309.001280,1857.328410,hintandextended,lora,180 +on2,0,0,24,1,0,142,4442.001280,71,0,3212.001280,1817.761331,hintandextended,lora,180 +on3,0,0,24,1,0,190,4320.000000,71,0,5965.003840,1755.199590,hintandextended,lora,180 +on4,0,0,28,1,0,1196,5181.603840,71,4,18859.603840,2187.121536,hintandextended,lora,180 +on1,0,0,27,1,0,1006,4871.000000,71,5,22942.001280,2063.279590,hintandextended,lora,180 +on6,0,0,25,1,0,341,4500.000000,71,1,8840.001280,1857.136000,hintandextended,lora,180 +on12,0,0,26,1,0,465,4821.603840,71,2,9001.603840,1987.697741,hintandextended,lora,180 +on9,0,0,25,1,0,813,4640.003840,71,1,13469.003840,1881.601741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4883.215360,71,0,-1.000000,2260.492083,hintandextended,lora,180 +on2,0,0,24,1,0,1980,4320.000000,72,0,41245.001280,1785.440000,hintandextended,lora,180 +on11,0,0,25,1,0,879,4640.003840,72,1,12222.003840,1898.241946,hintandextended,lora,180 +on9,0,0,25,1,0,1440,4500.000000,72,1,29455.602560,1857.135795,hintandextended,lora,180 +on12,0,0,25,1,0,481,4601.603840,72,1,7748.603840,1908.497331,hintandextended,lora,180 +on6,0,0,26,1,0,1187,4680.000000,72,2,23144.001280,1942.847795,hintandextended,lora,180 +on10,0,0,26,1,0,888,4820.003840,72,2,16390.003840,1980.545946,hintandextended,lora,180 +on1,0,0,24,1,0,506,4446.001280,72,0,7588.001280,1852.384922,hintandextended,lora,180 +on3,0,0,25,1,0,1560,4601.205120,72,1,29617.205120,1905.122662,hintandextended,lora,180 +on8,0,0,26,1,0,814,4680.000000,72,2,16230.001280,1955.582976,hintandextended,lora,180 +on7,0,0,24,1,0,668,4428.001280,72,0,12062.001280,1817.728922,hintandextended,lora,180 +on0,1,12,24,0,0,0,5134.421760,72,0,-1.000000,2360.975053,hintandextended,lora,180 +on4,0,0,29,1,0,1441,5361.603840,72,5,23305.603840,2258.769331,hintandextended,lora,180 +on5,0,0,26,1,0,994,4680.000000,72,2,18961.001280,1920.479795,hintandextended,lora,180 +on8,0,0,26,1,0,1286,4680.000000,73,2,25546.001280,1929.440000,hintandextended,lora,180 +on6,0,0,25,1,0,294,4679.003840,73,2,6714.003840,1928.785946,hintandextended,lora,180 +on9,0,0,25,1,0,1969,4500.000000,73,1,39089.001280,1854.240410,hintandextended,lora,180 +on10,0,0,26,1,0,796,4680.000000,73,2,14644.001280,1905.120000,hintandextended,lora,180 +on1,0,0,25,1,0,335,4500.000000,73,1,8057.001280,1870.048000,hintandextended,lora,180 +on2,0,0,24,1,0,720,4320.000000,73,0,14815.001280,1782.240410,hintandextended,lora,180 +on7,0,0,24,1,0,314,4434.001280,73,0,6554.001280,1831.808922,hintandextended,lora,180 +on11,0,0,24,1,0,715,4475.001280,73,0,13499.001280,1828.880512,hintandextended,lora,180 +on0,1,12,24,0,0,0,4796.610240,73,0,-1.000000,2225.849626,hintandextended,lora,180 +on3,0,0,27,1,0,740,5001.603840,73,3,8218.603840,2061.346355,hintandextended,lora,180 +on5,0,0,24,1,0,3033,4440.001280,73,1,64366.001280,1827.424717,hintandextended,lora,180 +on12,0,0,24,1,0,0,4320.000000,73,0,336.001280,1782.528205,hintandextended,lora,180 +on4,0,0,24,1,0,1103,4338.001280,73,1,24882.001280,1760.800717,hintandextended,lora,180 +on10,0,0,24,1,0,0,4320.000000,74,0,3478.001280,1781.984205,hintandextended,lora,180 +on11,0,0,24,1,0,468,4408.001280,74,0,9293.001280,1802.880922,hintandextended,lora,180 +on2,0,0,28,1,0,1275,5040.000000,74,4,23102.001280,2103.583181,hintandextended,lora,180 +on1,0,0,26,1,0,1170,4680.000000,74,3,28207.001280,1998.079590,hintandextended,lora,180 +on0,1,12,24,0,0,0,4771.012800,74,0,-1.000000,2215.611469,hintandextended,lora,180 +on8,0,0,25,1,0,811,4571.003840,74,1,17316.003840,1874.161741,hintandextended,lora,180 +on4,0,0,26,1,0,919,4820.003840,74,2,11931.003840,2037.185946,hintandextended,lora,180 +on7,0,0,26,1,0,819,4680.000000,74,2,17156.001280,1939.999795,hintandextended,lora,180 +on3,0,0,24,1,0,652,4412.001280,74,0,11771.001280,1790.401126,hintandextended,lora,180 +on12,0,0,26,1,0,1045,4680.000000,74,2,20348.001280,1952.688614,hintandextended,lora,180 +on5,0,0,24,1,0,2520,4320.000000,74,0,52210.001280,1756.800000,hintandextended,lora,180 +on9,0,0,25,1,0,318,4500.000000,74,1,6562.001280,1844.320614,hintandextended,lora,180 +on6,0,0,26,1,0,456,4820.003840,74,3,9453.003840,2008.817741,hintandextended,lora,180 +on1,0,0,25,1,0,416,4640.003840,75,1,6860.003840,1882.225741,hintandextended,lora,180 +on2,0,0,26,1,0,699,4820.003840,75,2,8359.003840,1990.401536,hintandextended,lora,180 +on3,0,0,27,1,0,889,5000.003840,75,3,12542.003840,2060.321331,hintandextended,lora,180 +on9,0,0,26,1,0,868,4680.000000,75,2,16854.001280,1979.679590,hintandextended,lora,180 +on5,0,0,26,1,0,993,4680.000000,75,2,19680.001280,1991.472410,hintandextended,lora,180 +on7,0,0,25,1,0,2094,4500.000000,75,1,46612.001280,1857.440000,hintandextended,lora,180 +on8,0,0,24,1,0,0,4320.000000,75,0,463.001280,1803.584410,hintandextended,lora,180 +on11,0,0,30,1,0,1361,5541.603840,75,6,19841.603840,2358.497331,hintandextended,lora,180 +on10,0,0,29,1,0,1051,5360.003840,75,5,17014.003840,2238.464717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5108.620480,75,0,-1.000000,2350.654131,hintandextended,lora,180 +on4,0,0,26,1,0,392,4680.000000,75,2,8199.001280,1950.271590,hintandextended,lora,180 +on6,0,0,24,1,0,622,4430.001280,75,1,12382.001280,1848.161331,hintandextended,lora,180 +on12,0,0,24,1,0,306,4426.001280,75,0,6700.001280,1796.000717,hintandextended,lora,180 +on2,0,0,24,1,0,3804,4324.001280,76,0,77037.001280,1755.200717,hintandextended,lora,180 +on1,0,0,25,1,0,880,4640.603840,76,1,17766.603840,1927.250355,hintandextended,lora,180 +on9,0,0,25,1,0,443,4563.603840,76,1,8623.603840,1881.938560,hintandextended,lora,180 +on10,0,0,25,1,0,1983,4500.000000,76,1,41077.001280,1853.824205,hintandextended,lora,180 +on12,0,0,24,1,0,435,4375.001280,76,0,8463.001280,1793.840922,hintandextended,lora,180 +on3,0,0,24,1,0,3060,4444.000000,76,1,62608.602560,1854.832000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4865.812800,76,0,-1.000000,2253.531264,hintandextended,lora,180 +on8,0,0,26,1,0,777,4680.000000,76,2,17605.001280,1914.367795,hintandextended,lora,180 +on7,0,0,24,1,0,1260,4320.000000,76,0,28446.001280,1753.600410,hintandextended,lora,180 +on5,0,0,24,1,0,621,4431.001280,76,1,12138.001280,1810.064717,hintandextended,lora,180 +on6,0,0,24,1,0,180,4320.000000,76,0,6450.001280,1753.600205,hintandextended,lora,180 +on4,0,0,26,1,0,993,4680.000000,76,2,18738.001280,1904.000205,hintandextended,lora,180 +on11,0,0,24,1,0,1620,4320.000000,76,0,35659.001280,1841.920614,hintandextended,lora,180 +on11,0,0,25,1,0,473,4500.000000,77,1,11125.001280,1857.024000,hintandextended,lora,180 +on7,0,0,25,1,0,1401,4640.003840,77,1,25208.003840,1881.601741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5022.219200,77,0,-1.000000,2316.091981,hintandextended,lora,180 +on10,0,0,25,1,0,1104,4585.000000,77,2,25048.001280,1894.895795,hintandextended,lora,180 +on12,0,0,25,1,0,272,4572.603840,77,1,5246.603840,1860.994355,hintandextended,lora,180 +on9,0,0,28,1,0,1433,5040.000000,77,4,27119.001280,2079.918976,hintandextended,lora,180 +on4,0,0,28,1,0,1578,5040.000000,77,4,29303.001280,2119.407795,hintandextended,lora,180 +on5,0,0,24,1,0,329,4449.001280,77,0,5086.001280,1823.440307,hintandextended,lora,180 +on8,0,0,26,1,0,1027,4680.000000,77,2,21564.001280,1933.503590,hintandextended,lora,180 +on6,0,0,24,1,0,736,4320.000000,77,0,16396.001280,1782.464000,hintandextended,lora,180 +on2,0,0,26,1,0,1159,4820.003840,77,2,21724.003840,2010.305741,hintandextended,lora,180 +on1,0,0,29,1,0,1544,5348.000000,77,5,27280.603840,2238.304000,hintandextended,lora,180 +on3,0,0,25,1,0,936,4640.003840,77,1,16556.003840,1896.097741,hintandextended,lora,180 +on0,1,11,24,0,0,0,4787.812800,78,0,-1.000000,2196.732288,hintandextended,lora,180 +on7,0,0,26,1,0,487,4821.603840,78,2,5422.603840,2008.114150,hintandextended,lora,180 +on12,0,0,25,1,0,360,4500.000000,78,1,9366.602560,1892.241229,hintandextended,lora,180 +on6,0,0,24,1,0,540,4320.000000,78,0,11046.001280,1758.240410,hintandextended,lora,180 +on8,0,0,24,1,0,23,4323.001280,78,0,2625.001280,1789.040922,hintandextended,lora,180 +on10,0,0,24,1,0,749,4329.001280,78,0,15734.001280,1769.361331,hintandextended,lora,180 +on1,0,0,25,1,0,143,4500.000000,78,1,5261.001280,1899.424000,hintandextended,lora,180 +on2,0,0,24,1,0,991,4445.001280,78,1,19159.001280,1832.240922,hintandextended,lora,180 +on3,0,0,27,1,0,1001,5000.603840,78,3,19319.603840,2108.322150,hintandextended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,78,0,27201.001280,1756.800205,hintandextended,lora,180 +on5,0,0,25,1,0,3973,4582.001280,78,2,82228.001280,1895.520512,hintandextended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,hintandextended,lora,180 +on4,0,0,24,1,0,0,4320.000000,78,0,2791.001280,1756.544000,hintandextended,lora,180 +on6,0,0,24,1,0,882,4462.001280,79,0,17062.001280,1810.400717,hintandextended,lora,180 +on10,0,0,25,1,0,948,4500.000000,79,1,23268.001280,1865.568000,hintandextended,lora,180 +on1,0,0,24,1,0,2469,4429.001280,79,0,48043.001280,1825.840717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4876.815360,79,0,-1.000000,2257.931264,hintandextended,lora,180 +on3,0,0,24,1,0,70,4370.001280,79,0,1370.001280,1773.600922,hintandextended,lora,180 +on9,0,0,27,1,0,1697,5001.603840,79,4,30124.603840,2086.721946,hintandextended,lora,180 +on2,0,0,25,1,0,73,4553.603840,79,1,1530.603840,1873.714355,hintandextended,lora,180 +on5,0,0,25,1,0,993,4653.603840,79,2,17222.603840,1917.809946,hintandextended,lora,180 +on8,0,0,24,1,0,1193,4418.000000,79,1,28635.001280,1801.760000,hintandextended,lora,180 +on7,0,0,24,1,0,2160,4320.000000,79,0,45635.001280,1756.800000,hintandextended,lora,180 +on12,0,0,24,1,0,900,4320.000000,79,0,20485.001280,1756.640000,hintandextended,lora,180 +on4,0,0,25,1,0,1444,4500.000000,79,2,29963.001280,1853.983795,hintandextended,lora,180 +on11,0,0,24,1,0,180,4320.000000,79,0,4956.001280,1773.344614,hintandextended,lora,180 +on11,0,0,25,1,0,996,4673.603840,80,2,21739.603840,1937.921741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5121.221760,80,0,-1.000000,2355.692595,hintandextended,lora,180 +on12,0,0,24,1,0,233,4385.001280,80,1,7166.001280,1779.600717,hintandextended,lora,180 +on4,0,0,27,1,0,720,5000.003840,80,4,15289.003840,2083.057331,hintandextended,lora,180 +on1,0,0,24,1,0,0,4320.000000,80,0,3187.001280,1760.384205,hintandextended,lora,180 +on8,0,0,28,1,0,986,5040.000000,80,4,15129.001280,2086.623181,hintandextended,lora,180 +on7,0,0,24,1,0,1080,4320.000000,80,0,22200.001280,1756.800000,hintandextended,lora,180 +on3,0,0,25,1,0,384,4504.603840,80,1,7973.603840,1827.441741,hintandextended,lora,180 +on5,0,0,24,1,0,338,4458.003840,80,0,7326.003840,1814.081331,hintandextended,lora,180 +on6,0,0,24,1,0,611,4439.000000,80,1,11788.001280,1804.240000,hintandextended,lora,180 +on10,0,0,26,1,0,540,4821.005120,80,2,11949.005120,1977.810662,hintandextended,lora,180 +on9,0,0,26,1,0,1080,4680.000000,80,2,21578.001280,1903.743590,hintandextended,lora,180 +on2,0,0,26,1,0,467,4680.000000,80,2,7812.001280,1929.344000,hintandextended,lora,180 +on3,0,0,28,1,0,1124,5181.603840,81,4,15931.603840,2142.608922,hintandextended,lora,180 +on9,0,0,27,1,0,852,4860.000000,81,3,15770.001280,2065.359795,hintandextended,lora,180 +on5,0,0,25,1,0,454,4640.003840,81,1,6526.003840,1896.001536,hintandextended,lora,180 +on8,0,0,28,1,0,926,5180.003840,81,4,14400.003840,2160.273126,hintandextended,lora,180 +on12,0,0,24,1,0,2182,4322.001280,81,0,46018.001280,1815.041126,hintandextended,lora,180 +on0,1,12,24,0,0,0,4893.217920,81,0,-1.000000,2264.492493,hintandextended,lora,180 +on2,0,0,27,1,0,676,4860.000000,81,3,14240.001280,2004.319590,hintandextended,lora,180 +on6,0,0,26,1,0,665,4820.003840,81,2,9625.003840,2013.985126,hintandextended,lora,180 +on7,0,0,25,1,0,2700,4500.000000,81,1,56375.001280,1828.800000,hintandextended,lora,180 +on4,0,0,25,1,0,1014,4500.000000,81,1,20631.001280,1828.800205,hintandextended,lora,180 +on10,0,0,24,1,0,0,4459.000000,81,1,2648.602560,1859.520410,hintandextended,lora,180 +on11,0,0,25,1,0,427,4598.000000,81,2,9465.001280,1913.599181,hintandextended,lora,180 +on1,0,0,25,1,0,113,4500.000000,81,1,6366.001280,1857.232000,hintandextended,lora,180 +on9,0,0,24,1,0,99,4399.001280,82,0,641.001280,1804.848717,hintandextended,lora,180 +on4,0,0,28,1,0,1258,5278.003840,82,5,20877.003840,2196.640922,hintandextended,lora,180 +on11,0,0,26,1,0,457,4680.000000,82,2,9586.001280,1949.823795,hintandextended,lora,180 +on8,0,0,29,1,0,1197,5360.003840,82,5,17545.003840,2259.792717,hintandextended,lora,180 +on2,0,0,25,1,0,155,4635.003840,82,1,801.003840,1883.025946,hintandextended,lora,180 +on12,0,0,25,1,0,410,4640.003840,82,1,6987.003840,1893.185741,hintandextended,lora,180 +on6,0,0,26,1,0,701,4857.000000,82,3,12133.001280,2021.455386,hintandextended,lora,180 +on0,1,12,24,0,0,0,5160.023040,82,0,-1.000000,2371.212902,hintandextended,lora,180 +on1,0,0,27,1,0,998,5000.003840,82,3,12293.003840,2061.553331,hintandextended,lora,180 +on5,0,0,26,1,0,620,4820.003840,82,2,9746.003840,1984.769331,hintandextended,lora,180 +on7,0,0,24,1,0,244,4364.001280,82,0,6827.001280,1799.584717,hintandextended,lora,180 +on10,0,0,27,1,0,899,4860.000000,82,3,17385.001280,1982.815795,hintandextended,lora,180 +on3,0,0,29,1,0,1258,5220.000000,82,5,20717.001280,2189.807386,hintandextended,lora,180 +on6,0,0,24,1,0,436,4376.001280,83,0,7581.001280,1812.480922,hintandextended,lora,180 +on3,0,0,27,1,0,573,5000.003840,83,3,7741.003840,2093.265536,hintandextended,lora,180 +on1,0,0,25,1,0,993,4640.003840,83,1,16360.003840,1910.241946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4945.217920,83,0,-1.000000,2285.293107,hintandextended,lora,180 +on9,0,0,25,1,0,710,4500.000000,83,1,16200.001280,1921.120410,hintandextended,lora,180 +on12,0,0,27,1,0,972,4860.000000,83,3,21328.001280,2036.111386,hintandextended,lora,180 +on11,0,0,25,1,0,2296,4500.000000,83,1,45121.001280,1858.816000,hintandextended,lora,180 +on2,0,0,24,1,0,207,4327.001280,83,0,5047.001280,1756.400717,hintandextended,lora,180 +on10,0,0,25,1,0,452,4640.003840,83,1,5207.003840,1910.689331,hintandextended,lora,180 +on7,0,0,27,1,0,1263,5001.603840,83,3,21489.603840,2033.873536,hintandextended,lora,180 +on8,0,0,25,1,0,0,4500.000000,83,1,3334.602560,1896.560819,hintandextended,lora,180 +on5,0,0,29,1,0,1168,5282.000000,83,6,22123.001280,2271.807590,hintandextended,lora,180 +on4,0,0,24,1,0,601,4361.001280,83,0,13292.001280,1770.000717,hintandextended,lora,180 +on3,0,0,25,1,0,1439,4500.000000,84,1,26087.001280,1825.760205,hintandextended,lora,180 +on2,0,0,26,1,0,939,4680.000000,84,2,20597.001280,1946.479795,hintandextended,lora,180 +on6,0,0,27,1,0,1434,5118.001280,84,6,30014.001280,2179.904717,hintandextended,lora,180 +on5,0,0,24,1,0,119,4419.001280,84,0,2215.001280,1793.200717,hintandextended,lora,180 +on12,0,0,26,1,0,1205,4788.000000,84,3,24471.001280,2012.447590,hintandextended,lora,180 +on11,0,0,26,1,0,1177,4820.003840,84,2,20757.003840,1980.017741,hintandextended,lora,180 +on10,0,0,26,1,0,1512,4820.003840,84,2,24631.003840,1953.601741,hintandextended,lora,180 +on1,0,0,24,1,0,397,4337.001280,84,0,7857.001280,1785.648717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.615360,84,0,-1.000000,2259.449830,hintandextended,lora,180 +on8,0,0,24,1,0,149,4545.603840,84,1,2375.603840,1843.890150,hintandextended,lora,180 +on7,0,0,25,1,0,899,4640.003840,84,1,17503.003840,1934.273741,hintandextended,lora,180 +on4,0,0,25,1,0,610,4500.000000,84,1,14055.001280,1865.056205,hintandextended,lora,180 +on9,0,0,25,1,0,889,4500.000000,84,1,17343.001280,1883.423795,hintandextended,lora,180 +on5,0,0,25,1,0,1321,4500.000000,85,1,29439.001280,1933.760410,hintandextended,lora,180 +on11,0,0,25,1,0,155,4500.000000,85,1,4030.001280,1876.160000,hintandextended,lora,180 +on0,1,11,24,0,0,0,4601.607680,85,0,-1.000000,2122.251059,hintandextended,lora,180 +on4,0,0,26,1,0,1208,4680.000000,85,3,22662.001280,1957.568205,hintandextended,lora,180 +on6,0,0,25,1,0,787,4500.000000,85,1,17576.001280,1872.064205,hintandextended,lora,180 +on7,0,0,25,1,0,39,4519.003840,85,1,3136.003840,1861.586355,hintandextended,lora,180 +on10,0,0,24,1,0,370,4320.000000,85,0,7760.001280,1774.240819,hintandextended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,hintandextended,lora,180 +on12,0,0,24,1,0,152,4452.001280,85,0,2976.001280,1835.041126,hintandextended,lora,180 +on8,0,0,26,1,0,498,4680.000000,85,3,12962.001280,1946.049024,hintandextended,lora,180 +on1,0,0,25,1,0,743,4661.000000,85,4,21063.001280,1971.280000,hintandextended,lora,180 +on9,0,0,26,1,0,1557,4821.603840,85,2,28334.603840,2001.602355,hintandextended,lora,180 +on3,0,0,25,1,0,1256,4500.000000,85,1,28173.001280,1904.224000,hintandextended,lora,180 +on3,0,0,24,1,0,540,4320.000000,86,0,14192.001280,1756.544000,hintandextended,lora,180 +on5,0,0,24,1,0,1720,4400.001280,86,0,35541.001280,1785.600717,hintandextended,lora,180 +on11,0,0,24,1,0,1220,4440.001280,86,0,23266.001280,1801.600922,hintandextended,lora,180 +on8,0,0,25,1,0,3060,4500.000000,86,2,61781.602560,1826.352000,hintandextended,lora,180 +on10,0,0,25,1,0,1124,4524.603840,86,1,23426.603840,1892.770355,hintandextended,lora,180 +on12,0,0,25,1,0,993,4584.000000,86,3,19287.001280,1891.040000,hintandextended,lora,180 +on2,0,0,24,1,0,348,4468.001280,86,0,3942.001280,1812.800717,hintandextended,lora,180 +on4,0,0,24,1,0,1950,4450.001280,86,0,37335.001280,1836.480922,hintandextended,lora,180 +on7,0,0,24,1,0,1394,4434.001280,86,0,26123.001280,1799.200717,hintandextended,lora,180 +on6,0,0,24,1,0,2524,4320.000000,86,0,53206.001280,1782.240410,hintandextended,lora,180 +on1,0,0,25,1,0,792,4500.000000,86,1,15772.001280,1857.232410,hintandextended,lora,180 +on9,0,0,25,1,0,1705,4565.603840,86,1,35701.603840,1880.530355,hintandextended,lora,180 +on0,1,12,24,0,0,0,4864.811520,86,0,-1.000000,2253.129728,hintandextended,lora,180 +on12,0,0,26,1,0,1411,4820.003840,87,2,23853.003840,1994.929536,hintandextended,lora,180 +on3,0,0,27,1,0,1498,4860.000000,87,3,30198.001280,2017.695590,hintandextended,lora,180 +on1,0,0,28,1,0,1764,5040.000000,87,4,32773.001280,2131.231590,hintandextended,lora,180 +on0,1,12,24,0,0,0,4906.817920,87,0,-1.000000,2269.931264,hintandextended,lora,180 +on7,0,0,24,1,0,966,4407.001280,87,1,18535.001280,1788.400717,hintandextended,lora,180 +on2,0,0,25,1,0,473,4500.000000,87,1,12163.001280,1834.784205,hintandextended,lora,180 +on4,0,0,24,1,0,839,4419.001280,87,0,16684.001280,1819.408717,hintandextended,lora,180 +on8,0,0,26,1,0,993,4820.603840,87,2,16844.603840,2010.594150,hintandextended,lora,180 +on9,0,0,26,1,0,1327,4680.000000,87,2,26602.001280,1902.400000,hintandextended,lora,180 +on10,0,0,26,1,0,1175,4680.000000,87,2,23693.001280,1903.631590,hintandextended,lora,180 +on11,0,0,26,1,0,1563,4820.003840,87,2,26762.003840,1965.121741,hintandextended,lora,180 +on6,0,0,25,1,0,180,4500.000000,87,1,5468.602560,1832.912614,hintandextended,lora,180 +on5,0,0,28,1,0,1733,5181.603840,87,4,30359.603840,2101.809536,hintandextended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,hintandextended,lora,180 +on10,0,0,25,1,0,66,4546.003840,88,1,2321.003840,1911.746355,hintandextended,lora,180 +on1,0,0,25,1,0,2700,4500.000000,88,1,57489.602560,1898.608614,hintandextended,lora,180 +on7,0,0,25,1,0,300,4500.000000,88,1,7725.001280,1866.879795,hintandextended,lora,180 +on5,0,0,24,1,0,77,4377.001280,88,0,2161.001280,1801.584922,hintandextended,lora,180 +on6,0,0,25,1,0,1553,4500.000000,88,1,31968.001280,1845.760410,hintandextended,lora,180 +on2,0,0,25,1,0,834,4500.000000,88,1,17916.001280,1839.040614,hintandextended,lora,180 +on0,1,11,24,0,0,0,4837.615360,88,0,-1.000000,2216.653722,hintandextended,lora,180 +on8,0,0,24,1,0,900,4320.000000,88,0,18234.001280,1782.240614,hintandextended,lora,180 +on4,0,0,25,1,0,505,4625.003840,88,1,7885.003840,1884.081946,hintandextended,lora,180 +on12,0,0,25,1,0,533,4500.000000,88,1,13079.001280,1931.424205,hintandextended,lora,180 +on3,0,0,25,1,0,136,4500.000000,88,1,5731.001280,1936.000410,hintandextended,lora,180 +on11,0,0,25,1,0,454,4791.003840,88,2,5891.003840,1942.001741,hintandextended,lora,180 +on4,0,0,24,1,0,874,4454.001280,89,0,16576.001280,1807.200717,hintandextended,lora,180 +on2,0,0,24,1,0,900,4320.000000,89,0,20513.001280,1779.264410,hintandextended,lora,180 +on10,0,0,26,1,0,1182,4820.003840,89,2,22883.003840,2013.921741,hintandextended,lora,180 +on5,0,0,25,1,0,445,4565.603840,89,1,10790.603840,1905.505946,hintandextended,lora,180 +on6,0,0,24,1,0,3085,4325.001280,89,0,61574.001280,1755.600717,hintandextended,lora,180 +on12,0,0,26,1,0,1526,4821.603840,89,2,26491.603840,2007.361946,hintandextended,lora,180 +on3,0,0,25,1,0,180,4500.000000,89,1,6338.602560,1828.848410,hintandextended,lora,180 +on11,0,0,24,1,0,0,4330.000000,89,1,3127.602560,1829.616614,hintandextended,lora,180 +on0,1,12,24,0,0,0,4759.212800,89,0,-1.000000,2210.891469,hintandextended,lora,180 +on9,0,0,25,1,0,718,4500.000000,89,1,14312.001280,1857.440000,hintandextended,lora,180 +on7,0,0,25,1,0,1059,4500.000000,89,1,22723.001280,1837.968205,hintandextended,lora,180 +on1,0,0,26,1,0,1354,4680.000000,89,2,26330.001280,1932.383590,hintandextended,lora,180 +on8,0,0,25,1,0,531,4500.000000,89,1,10629.001280,1900.224410,hintandextended,lora,180 +on2,0,0,24,1,0,291,4411.001280,90,0,6876.001280,1817.872717,hintandextended,lora,180 +on3,0,0,26,1,0,784,4680.000000,90,2,15263.001280,1926.080205,hintandextended,lora,180 +on7,0,0,24,1,0,364,4320.000000,90,0,10635.001280,1755.744000,hintandextended,lora,180 +on1,0,0,24,1,0,1553,4498.000000,90,1,34237.001280,1882.304205,hintandextended,lora,180 +on5,0,0,24,1,0,655,4415.001280,90,0,11427.001280,1844.721126,hintandextended,lora,180 +on11,0,0,25,1,0,633,4640.003840,90,1,10795.003840,1881.601741,hintandextended,lora,180 +on12,0,0,26,1,0,967,4680.000000,90,2,19412.001280,1960.863590,hintandextended,lora,180 +on0,1,12,24,0,0,0,5039.216640,90,0,-1.000000,2322.891162,hintandextended,lora,180 +on6,0,0,29,1,0,1304,5220.000000,90,5,24389.001280,2172.127795,hintandextended,lora,180 +on10,0,0,24,1,0,756,4336.003840,90,0,15423.003840,1760.001741,hintandextended,lora,180 +on9,0,0,25,1,0,756,4640.003840,90,2,11587.003840,1897.425741,hintandextended,lora,180 +on8,0,0,29,1,0,1268,5361.603840,90,5,19573.603840,2249.297946,hintandextended,lora,180 +on4,0,0,25,1,0,1621,4500.000000,90,1,34414.601280,1828.544000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5020.619200,91,0,-1.000000,2315.451571,hintandextended,lora,180 +on7,0,0,25,1,0,993,4640.003840,91,1,17344.003840,1881.601741,hintandextended,lora,180 +on11,0,0,25,1,0,1052,4500.000000,91,2,20754.001280,1828.640000,hintandextended,lora,180 +on12,0,0,28,1,0,1598,5180.003840,91,4,26538.003840,2126.593126,hintandextended,lora,180 +on2,0,0,26,1,0,1155,4820.003840,91,2,20914.003840,2002.449536,hintandextended,lora,180 +on4,0,0,25,1,0,633,4642.603840,91,2,10661.603840,1882.690150,hintandextended,lora,180 +on6,0,0,28,1,0,1383,5040.000000,91,4,24500.001280,2077.311795,hintandextended,lora,180 +on3,0,0,24,1,0,259,4379.001280,91,0,4967.001280,1799.824717,hintandextended,lora,180 +on8,0,0,27,1,0,1465,4860.000000,91,3,26378.001280,2003.568205,hintandextended,lora,180 +on9,0,0,24,1,0,748,4345.001280,91,1,17184.001280,1763.600717,hintandextended,lora,180 +on5,0,0,24,1,0,655,4415.001280,91,0,13746.001280,1795.984717,hintandextended,lora,180 +on10,0,0,24,1,0,463,4403.001280,91,0,10501.001280,1800.784717,hintandextended,lora,180 +on1,0,0,26,1,0,1398,4820.003840,91,2,24660.003840,1981.121536,hintandextended,lora,180 +on0,1,12,24,0,0,0,4874.212800,92,0,-1.000000,2256.892493,hintandextended,lora,180 +on12,0,0,28,1,0,1265,5040.000000,92,5,24393.001280,2110.143386,hintandextended,lora,180 +on6,0,0,24,1,0,2282,4422.001280,92,0,45398.001280,1836.800717,hintandextended,lora,180 +on11,0,0,24,1,0,0,4320.000000,92,0,2753.001280,1782.144614,hintandextended,lora,180 +on8,0,0,26,1,0,454,4821.603840,92,2,6099.603840,1986.033946,hintandextended,lora,180 +on7,0,0,25,1,0,929,4509.003840,92,1,21419.003840,1830.482560,hintandextended,lora,180 +on10,0,0,25,1,0,915,4500.000000,92,1,21259.001280,1861.248410,hintandextended,lora,180 +on5,0,0,24,1,0,3494,4374.001280,92,0,68859.001280,1803.840717,hintandextended,lora,180 +on1,0,0,24,1,0,560,4320.001280,92,0,13143.001280,1782.240922,hintandextended,lora,180 +on9,0,0,25,1,0,514,4500.000000,92,1,10599.001280,1854.944205,hintandextended,lora,180 +on2,0,0,27,1,0,727,5001.603840,92,3,10760.603840,2068.002150,hintandextended,lora,180 +on3,0,0,25,1,0,294,4500.000000,92,1,5938.001280,1857.136000,hintandextended,lora,180 +on4,0,0,25,1,0,861,4500.000000,92,1,17946.001280,1880.480410,hintandextended,lora,180 +on10,0,0,28,1,0,2032,5040.000000,93,5,37781.001280,2108.703386,hintandextended,lora,180 +on3,0,0,25,1,0,511,4640.003840,93,1,7960.003840,1896.417741,hintandextended,lora,180 +on1,0,0,24,1,0,636,4396.001280,93,0,11705.001280,1812.384717,hintandextended,lora,180 +on4,0,0,25,1,0,1593,4500.000000,93,2,35674.001280,1887.360205,hintandextended,lora,180 +on6,0,0,25,1,0,180,4500.000000,93,1,6200.602560,1828.496000,hintandextended,lora,180 +on7,0,0,27,1,0,745,5000.603840,93,3,11865.603840,2103.809536,hintandextended,lora,180 +on8,0,0,24,1,0,1197,4480.001280,93,1,30579.001280,1883.104307,hintandextended,lora,180 +on11,0,0,25,1,0,1778,4579.001280,93,2,42818.001280,1939.216512,hintandextended,lora,180 +on0,1,12,24,0,0,0,4759.210240,93,0,-1.000000,2210.888806,hintandextended,lora,180 +on9,0,0,24,1,0,791,4371.001280,93,0,14916.001280,1791.121126,hintandextended,lora,180 +on12,0,0,26,1,0,1128,4680.000000,93,2,19021.001280,1940.223795,hintandextended,lora,180 +on2,0,0,25,1,0,1194,4500.000000,93,1,24527.001280,1825.600205,hintandextended,lora,180 +on5,0,0,24,1,0,447,4439.001280,93,1,7800.001280,1801.200717,hintandextended,lora,180 +on5,0,0,26,1,0,661,4821.603840,94,2,9887.603840,1982.881741,hintandextended,lora,180 +on1,0,0,25,1,0,716,4500.000000,94,1,16950.001280,1868.688205,hintandextended,lora,180 +on6,0,0,25,1,0,1042,4500.000000,94,1,20165.001280,1834.720000,hintandextended,lora,180 +on11,0,0,25,1,0,2320,4500.000000,94,1,46508.001280,1840.160000,hintandextended,lora,180 +on8,0,0,26,1,0,1417,4680.000000,94,2,28034.001280,1916.767590,hintandextended,lora,180 +on12,0,0,25,1,0,217,4517.603840,94,1,4275.603840,1864.273741,hintandextended,lora,180 +on9,0,0,25,1,0,474,4500.000000,94,1,9726.001280,1828.543795,hintandextended,lora,180 +on3,0,0,24,1,0,359,4479.001280,94,0,4115.001280,1870.608922,hintandextended,lora,180 +on7,0,0,27,1,0,1016,5000.003840,94,4,20325.003840,2118.625741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4883.815360,94,0,-1.000000,2260.731059,hintandextended,lora,180 +on4,0,0,28,1,0,1400,5181.603840,94,4,28195.603840,2246.177331,hintandextended,lora,180 +on2,0,0,24,1,0,1251,4471.001280,94,0,24617.001280,1851.120717,hintandextended,lora,180 +on10,0,0,24,1,0,148,4448.001280,94,0,530.001280,1833.440922,hintandextended,lora,180 +on7,0,0,25,1,0,297,4500.000000,95,1,4641.001280,1872.287590,hintandextended,lora,180 +on9,0,0,24,1,0,765,4345.001280,95,0,16048.001280,1763.600922,hintandextended,lora,180 +on0,1,12,24,0,0,0,4744.811520,95,0,-1.000000,2205.129933,hintandextended,lora,180 +on2,0,0,25,1,0,354,4803.603840,95,2,4802.603840,1972.609946,hintandextended,lora,180 +on1,0,0,24,1,0,1419,4459.001280,95,0,27067.001280,1837.584717,hintandextended,lora,180 +on4,0,0,24,1,0,154,4454.001280,95,0,1163.001280,1881.792717,hintandextended,lora,180 +on5,0,0,26,1,0,1044,4680.000000,95,2,19672.001280,1932.383590,hintandextended,lora,180 +on11,0,0,26,1,0,1117,4821.603840,95,2,19833.603840,1974.082150,hintandextended,lora,180 +on12,0,0,27,1,0,839,4860.000000,95,3,12717.001280,1996.223795,hintandextended,lora,180 +on10,0,0,24,1,0,474,4420.001280,95,1,7817.001280,1808.544717,hintandextended,lora,180 +on3,0,0,25,1,0,1555,4500.000000,95,1,30760.001280,1854.240410,hintandextended,lora,180 +on8,0,0,26,1,0,814,4821.603840,95,2,12878.603840,2011.105946,hintandextended,lora,180 +on6,0,0,24,1,0,2978,4398.001280,95,0,58069.001280,1784.800717,hintandextended,lora,180 +on9,0,0,25,1,0,659,4500.000000,96,1,13474.001280,1825.600205,hintandextended,lora,180 +on6,0,0,25,1,0,1237,4500.000000,96,1,23529.001280,1871.840410,hintandextended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,96,0,36763.001280,1753.760410,hintandextended,lora,180 +on7,0,0,24,1,0,480,4420.001280,96,0,7481.001280,1821.984922,hintandextended,lora,180 +on10,0,0,24,1,0,3059,4479.001280,96,0,57942.001280,1817.200717,hintandextended,lora,180 +on12,0,0,24,1,0,1002,4402.001280,96,0,21004.001280,1814.784922,hintandextended,lora,180 +on1,0,0,25,1,0,1298,4518.603840,96,1,27471.603840,1879.714150,hintandextended,lora,180 +on3,0,0,24,1,0,293,4413.001280,96,0,4203.001280,1790.800717,hintandextended,lora,180 +on5,0,0,24,1,0,2047,4367.001280,96,0,40259.001280,1772.400922,hintandextended,lora,180 +on8,0,0,25,1,0,1554,4500.000000,96,1,31770.001280,1857.440000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4753.607680,96,0,-1.000000,2208.647578,hintandextended,lora,180 +on2,0,0,25,1,0,1440,4500.000000,96,1,31943.002560,1854.240205,hintandextended,lora,180 +on11,0,0,24,1,0,1414,4454.001280,96,0,27311.001280,1863.040922,hintandextended,lora,180 +on2,0,0,24,1,0,180,4320.000000,97,0,6094.001280,1777.664410,hintandextended,lora,180 +on3,0,0,28,1,0,1135,5180.003840,97,5,19217.003840,2132.481126,hintandextended,lora,180 +on5,0,0,25,1,0,360,4500.000000,97,1,8775.602560,1940.592410,hintandextended,lora,180 +on4,0,0,26,1,0,1006,4680.000000,97,2,19057.001280,2009.120410,hintandextended,lora,180 +on10,0,0,25,1,0,1023,4575.000000,97,2,23727.001280,1935.488410,hintandextended,lora,180 +on7,0,0,24,1,0,120,4420.001280,97,0,3398.001280,1793.601331,hintandextended,lora,180 +on1,0,0,28,1,0,1272,5180.003840,97,6,23887.003840,2184.001126,hintandextended,lora,180 +on11,0,0,25,1,0,1373,4500.000000,97,1,28220.001280,1837.600614,hintandextended,lora,180 +on8,0,0,26,1,0,1006,4820.003840,97,2,16205.003840,2004.849946,hintandextended,lora,180 +on6,0,0,25,1,0,4253,4500.000000,97,1,85748.000000,1825.600000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4763.012800,97,0,-1.000000,2212.413107,hintandextended,lora,180 +on9,0,0,24,1,0,865,4445.001280,97,0,16045.001280,1831.921126,hintandextended,lora,180 +on12,0,0,25,1,0,697,4500.000000,97,1,14098.001280,1828.640205,hintandextended,lora,180 +on12,0,0,26,1,0,1071,4680.000000,98,2,24424.001280,1970.463590,hintandextended,lora,180 +on9,0,0,27,1,0,1079,5000.003840,98,3,16989.003840,2077.697741,hintandextended,lora,180 +on10,0,0,24,1,0,920,4320.001280,98,0,20518.001280,1753.600717,hintandextended,lora,180 +on5,0,0,26,1,0,366,4680.000000,98,2,9747.001280,1977.359795,hintandextended,lora,180 +on6,0,0,27,1,0,830,5000.003840,98,3,14461.003840,2075.777946,hintandextended,lora,180 +on7,0,0,25,1,0,453,4640.003840,98,1,7287.003840,1901.601536,hintandextended,lora,180 +on3,0,0,24,1,0,136,4436.001280,98,0,3559.001280,1817.184717,hintandextended,lora,180 +on1,0,0,25,1,0,722,4566.000000,98,2,14301.001280,1889.535590,hintandextended,lora,180 +on0,1,12,24,0,0,0,5021.619200,98,0,-1.000000,2315.851571,hintandextended,lora,180 +on11,0,0,24,1,0,216,4336.001280,98,0,7127.001280,1788.384717,hintandextended,lora,180 +on8,0,0,26,1,0,624,4820.003840,98,2,9907.003840,1982.241741,hintandextended,lora,180 +on2,0,0,26,1,0,814,4680.000000,98,2,16829.001280,1943.263795,hintandextended,lora,180 +on4,0,0,29,1,0,1349,5361.603840,98,5,24585.603840,2235.888922,hintandextended,lora,180 +on5,0,0,24,1,0,2161,4375.001280,99,1,45425.001280,1790.800717,hintandextended,lora,180 +on4,0,0,26,1,0,1173,4680.000000,99,3,22629.001280,1932.224000,hintandextended,lora,180 +on6,0,0,27,1,0,1562,4860.000000,99,3,30938.001280,1996.495795,hintandextended,lora,180 +on8,0,0,24,1,0,911,4320.000000,99,0,20343.001280,1758.464205,hintandextended,lora,180 +on2,0,0,25,1,0,1320,4640.003840,99,1,22789.003840,1890.289741,hintandextended,lora,180 +on9,0,0,24,1,0,1733,4446.000000,99,1,38538.001280,1832.640205,hintandextended,lora,180 +on3,0,0,25,1,0,1395,4759.003840,99,2,28477.003840,1966.529946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4815.612800,99,0,-1.000000,2233.449011,hintandextended,lora,180 +on7,0,0,25,1,0,1274,4500.000000,99,1,28317.001280,1853.888000,hintandextended,lora,180 +on10,0,0,24,1,0,0,4320.000000,99,0,290.001280,1753.600205,hintandextended,lora,180 +on11,0,0,24,1,0,571,4331.001280,99,0,13415.001280,1775.344922,hintandextended,lora,180 +on1,0,0,28,1,0,1824,5181.603840,99,4,31099.603840,2124.849331,hintandextended,lora,180 +on12,0,0,27,1,0,1555,4891.000000,99,4,33781.001280,2085.792205,hintandextended,lora,180 +on2,0,0,25,1,0,1535,4697.003840,100,2,27364.003840,1922.481741,hintandextended,lora,180 +on1,0,0,25,1,0,522,4500.000000,100,1,12681.001280,1875.200000,hintandextended,lora,180 +on10,0,0,24,1,0,2679,4459.001280,100,0,52489.001280,1809.200717,hintandextended,lora,180 +on7,0,0,25,1,0,1069,4500.000000,100,1,22664.001280,1885.568205,hintandextended,lora,180 +on4,0,0,25,1,0,932,4512.603840,100,1,18613.603840,1844.145946,hintandextended,lora,180 +on6,0,0,25,1,0,180,4500.000000,100,1,4347.602560,1828.048410,hintandextended,lora,180 +on3,0,0,25,1,0,1420,4500.000000,100,1,32233.001280,1860.543590,hintandextended,lora,180 +on11,0,0,26,1,0,1025,4680.000000,100,3,18452.001280,1984.975795,hintandextended,lora,180 +on9,0,0,25,1,0,872,4500.000000,100,1,17358.001280,1825.600410,hintandextended,lora,180 +on5,0,0,27,1,0,1707,5001.603840,100,3,32394.603840,2098.609946,hintandextended,lora,180 +on12,0,0,25,1,0,1193,4500.000000,100,1,27204.001280,1885.920000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4858.814080,100,0,-1.000000,2250.730957,hintandextended,lora,180 +on8,0,0,24,1,0,480,4420.001280,100,0,7525.001280,1793.600717,hintandextended,lora,180 +on4,0,0,25,1,0,3173,4500.000000,101,1,67368.001280,1857.440205,hintandextended,lora,180 +on0,1,10,24,0,0,0,4624.005120,101,0,-1.000000,2105.606554,hintandextended,lora,180 +on8,0,0,25,1,0,1528,4500.000000,101,1,30844.001280,1868.960205,hintandextended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,hintandextended,lora,180 +on6,0,0,24,1,0,179,4479.001280,101,0,3486.001280,1817.201126,hintandextended,lora,180 +on12,0,0,24,1,0,360,4320.000000,101,0,8213.001280,1786.400614,hintandextended,lora,180 +on7,0,0,24,1,0,2443,4403.001280,101,0,47394.001280,1804.400922,hintandextended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,101,0,37839.001280,1798.080410,hintandextended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,101,0,22498.001280,1753.600410,hintandextended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,hintandextended,lora,180 +on2,0,0,24,1,0,962,4362.001280,101,0,21381.001280,1770.400922,hintandextended,lora,180 +on10,0,0,24,1,0,180,4320.000000,101,0,4504.001280,1753.600410,hintandextended,lora,180 +on5,0,0,24,1,0,1353,4393.001280,101,0,28204.001280,1811.280717,hintandextended,lora,180 +on3,0,0,24,1,0,448,4388.001280,102,0,9336.001280,1802.944922,hintandextended,lora,180 +on1,0,0,25,1,0,813,4640.003840,102,1,13121.003840,1881.601741,hintandextended,lora,180 +on2,0,0,29,1,0,1534,5361.603840,102,5,22625.603840,2204.161331,hintandextended,lora,180 +on6,0,0,25,1,0,1373,4500.000000,102,1,27202.001280,1828.800000,hintandextended,lora,180 +on9,0,0,24,1,0,1910,4410.001280,102,0,36870.001280,1789.600717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4910.217920,102,0,-1.000000,2271.291674,hintandextended,lora,180 +on10,0,0,25,1,0,1021,4640.003840,102,1,17535.003840,1898.881331,hintandextended,lora,180 +on8,0,0,25,1,0,746,4500.000000,102,1,17375.001280,1843.712000,hintandextended,lora,180 +on11,0,0,27,1,0,1121,5039.000000,102,4,20525.001280,2053.887386,hintandextended,lora,180 +on7,0,0,25,1,0,1215,4885.003840,102,3,20685.003840,1985.681331,hintandextended,lora,180 +on12,0,0,25,1,0,180,4500.000000,102,1,6582.602560,1869.680205,hintandextended,lora,180 +on4,0,0,25,1,0,691,4500.000000,102,1,12961.001280,1828.384000,hintandextended,lora,180 +on5,0,0,27,1,0,1231,4860.000000,102,3,22464.001280,1983.791181,hintandextended,lora,180 +on1,0,0,28,1,0,784,5040.000000,103,5,15532.001280,2122.991386,hintandextended,lora,180 +on7,0,0,26,1,0,646,4792.000000,103,3,13092.001280,1990.575590,hintandextended,lora,180 +on5,0,0,25,1,0,763,4640.003840,103,1,13252.003840,1900.321741,hintandextended,lora,180 +on3,0,0,25,1,0,251,4500.000000,103,1,4646.001280,1846.080000,hintandextended,lora,180 +on12,0,0,25,1,0,370,4640.003840,103,1,4806.003840,1902.913741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5021.619200,103,0,-1.000000,2315.851571,hintandextended,lora,180 +on4,0,0,30,1,0,1411,5400.000000,103,6,24336.001280,2270.815386,hintandextended,lora,180 +on6,0,0,26,1,0,965,4820.003840,103,2,15692.003840,1975.361536,hintandextended,lora,180 +on9,0,0,25,1,0,0,4500.000000,103,1,1101.602560,1852.816410,hintandextended,lora,180 +on11,0,0,27,1,0,1341,5022.000000,103,4,19458.001280,2055.471386,hintandextended,lora,180 +on2,0,0,26,1,0,567,4680.000000,103,2,10024.001280,1903.359795,hintandextended,lora,180 +on10,0,0,25,1,0,677,4640.003840,103,1,10184.003840,1910.449741,hintandextended,lora,180 +on8,0,0,29,1,0,1245,5361.603840,103,5,19619.603840,2262.289331,hintandextended,lora,180 +on12,0,0,25,1,0,367,4500.000000,104,1,12602.001280,1853.280205,hintandextended,lora,180 +on3,0,0,26,1,0,2227,4821.603840,104,2,40948.603840,2049.921741,hintandextended,lora,180 +on2,0,0,24,1,0,67,4367.001280,104,0,3224.001280,1805.680717,hintandextended,lora,180 +on9,0,0,25,1,0,1913,4500.000000,104,1,40787.001280,1857.183795,hintandextended,lora,180 +on6,0,0,24,1,0,197,4320.000000,104,0,3881.001280,1753.600205,hintandextended,lora,180 +on5,0,0,25,1,0,278,4500.000000,104,2,7562.001280,1923.520410,hintandextended,lora,180 +on7,0,0,24,1,0,791,4371.001280,104,0,15902.001280,1783.664717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4577.206400,104,0,-1.000000,2138.087680,hintandextended,lora,180 +on4,0,0,24,1,0,3003,4423.001280,104,0,59898.001280,1794.800717,hintandextended,lora,180 +on10,0,0,24,1,0,1158,4378.001280,104,0,22411.001280,1785.440922,hintandextended,lora,180 +on11,0,0,25,1,0,1620,4500.000000,104,1,33447.602560,1826.928614,hintandextended,lora,180 +on8,0,0,25,1,0,1013,4500.000000,104,1,19209.001280,1825.600614,hintandextended,lora,180 +on1,0,0,24,1,0,1857,4357.001280,104,0,37030.001280,1768.400717,hintandextended,lora,180 +on7,0,0,25,1,0,3174,4500.000000,105,1,66844.001280,1857.440000,hintandextended,lora,180 +on11,0,0,25,1,0,281,4581.603840,105,1,5254.603840,1874.945946,hintandextended,lora,180 +on2,0,0,24,1,0,156,4456.001280,105,0,3070.001280,1816.001126,hintandextended,lora,180 +on9,0,0,24,1,0,1329,4369.001280,105,0,26249.001280,1773.200922,hintandextended,lora,180 +on1,0,0,25,1,0,900,4500.000000,105,1,20160.602560,1865.136410,hintandextended,lora,180 +on3,0,0,25,1,0,1797,4500.000000,105,1,35576.001280,1829.280000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4889.414080,105,0,-1.000000,2262.971366,hintandextended,lora,180 +on5,0,0,24,1,0,2520,4320.000000,105,0,52903.001280,1753.600205,hintandextended,lora,180 +on6,0,0,25,1,0,75,4555.603840,105,1,3230.603840,1879.473946,hintandextended,lora,180 +on8,0,0,25,1,0,1027,4500.000000,105,1,25159.001280,1900.320410,hintandextended,lora,180 +on10,0,0,25,1,0,1924,4500.000000,105,1,41283.001280,1836.800000,hintandextended,lora,180 +on4,0,0,25,1,0,315,4500.000000,105,1,5093.001280,1852.703795,hintandextended,lora,180 +on12,0,0,25,1,0,1800,4500.000000,105,1,37977.602560,1857.136205,hintandextended,lora,180 +on4,0,0,25,1,0,0,4500.000000,106,1,2130.602560,1839.793229,hintandextended,lora,180 +on7,0,0,25,1,0,378,4646.603840,106,2,10557.603840,1939.921536,hintandextended,lora,180 +on12,0,0,25,1,0,473,4500.000000,106,1,10396.001280,1862.048000,hintandextended,lora,180 +on8,0,0,25,1,0,765,4794.603840,106,2,14031.603840,1978.226355,hintandextended,lora,180 +on6,0,0,24,1,0,3142,4382.001280,106,0,64188.001280,1778.400922,hintandextended,lora,180 +on0,1,11,24,0,0,0,4745.811520,106,0,-1.000000,2179.931366,hintandextended,lora,180 +on3,0,0,24,1,0,3600,4320.000000,106,0,73427.001280,1780.320205,hintandextended,lora,180 +on11,0,0,25,1,0,1250,4500.000000,106,1,22671.001280,1848.320410,hintandextended,lora,180 +on1,0,0,24,1,0,559,4320.000000,106,0,13870.001280,1764.640410,hintandextended,lora,180 +on2,0,0,24,1,0,357,4477.001280,106,0,3979.001280,1842.800512,hintandextended,lora,180 +on9,0,0,24,1,0,2429,4389.001280,106,0,47796.001280,1788.241126,hintandextended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,hintandextended,lora,180 +on5,0,0,24,1,0,921,4332.401280,106,1,19457.401280,1819.105126,hintandextended,lora,180 +on10,0,0,25,1,0,654,4500.000000,107,1,11970.001280,1863.648410,hintandextended,lora,180 +on4,0,0,26,1,0,1256,4680.000000,107,3,24985.001280,1971.871590,hintandextended,lora,180 +on0,1,11,24,0,0,0,4744.811520,107,0,-1.000000,2179.532595,hintandextended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,hintandextended,lora,180 +on7,0,0,28,1,0,1029,5181.603840,107,5,14852.603840,2186.226150,hintandextended,lora,180 +on6,0,0,24,1,0,219,4339.001280,107,0,7063.001280,1829.361126,hintandextended,lora,180 +on11,0,0,24,1,0,3138,4320.000000,107,1,67817.001280,1782.720000,hintandextended,lora,180 +on5,0,0,24,1,0,363,4320.000000,107,0,8766.001280,1763.104000,hintandextended,lora,180 +on3,0,0,27,1,0,1225,4860.000000,107,3,27391.001280,2019.679795,hintandextended,lora,180 +on2,0,0,26,1,0,779,4680.000000,107,2,14691.001280,1919.760000,hintandextended,lora,180 +on8,0,0,27,1,0,1261,5001.603840,107,3,25146.603840,2119.681946,hintandextended,lora,180 +on1,0,0,27,1,0,1099,4860.000000,107,3,18858.001280,2036.495590,hintandextended,lora,180 +on12,0,0,26,1,0,678,4821.603840,107,2,8927.603840,2006.610150,hintandextended,lora,180 +on1,0,0,25,1,0,135,4500.000000,108,1,3782.001280,1847.840000,hintandextended,lora,180 +on11,0,0,27,1,0,898,5008.000000,108,4,20458.001280,2138.495795,hintandextended,lora,180 +on2,0,0,27,1,0,498,4860.000000,108,3,11197.001280,2072.911386,hintandextended,lora,180 +on9,0,0,27,1,0,908,5022.003840,108,4,20618.003840,2155.153946,hintandextended,lora,180 +on12,0,0,28,1,0,806,5040.000000,108,4,17885.001280,2140.399181,hintandextended,lora,180 +on6,0,0,27,1,0,1016,5000.003840,108,3,18045.003840,2075.041536,hintandextended,lora,180 +on8,0,0,25,1,0,0,4500.000000,108,1,2858.602560,1837.520205,hintandextended,lora,180 +on10,0,0,25,1,0,566,4640.003840,108,1,9530.003840,1881.601741,hintandextended,lora,180 +on5,0,0,25,1,0,667,4709.003840,108,2,11357.003840,1966.273741,hintandextended,lora,180 +on7,0,0,28,1,0,1262,5123.000000,108,5,24538.001280,2131.167590,hintandextended,lora,180 +on4,0,0,26,1,0,348,4680.000000,108,3,9370.001280,1913.215590,hintandextended,lora,180 +on3,0,0,26,1,0,1848,4680.000000,108,2,33454.001280,1911.136205,hintandextended,lora,180 +on0,1,12,24,0,0,0,5114.619200,108,0,-1.000000,2353.052390,hintandextended,lora,180 +on10,0,0,28,1,0,946,5181.603840,109,4,15140.603840,2158.690150,hintandextended,lora,180 +on5,0,0,25,1,0,453,4640.003840,109,1,5808.003840,1920.066150,hintandextended,lora,180 +on7,0,0,27,1,0,675,4860.000000,109,4,14979.001280,2052.239795,hintandextended,lora,180 +on6,0,0,25,1,0,145,4625.003840,109,1,660.003840,1875.602560,hintandextended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,109,0,26515.001280,1755.360819,hintandextended,lora,180 +on8,0,0,24,1,0,268,4421.001280,109,1,5648.001280,1851.489126,hintandextended,lora,180 +on0,1,11,24,0,0,0,4883.215360,109,0,-1.000000,2234.894746,hintandextended,lora,180 +on11,0,0,26,1,0,380,4910.603840,109,3,9959.603840,2104.193536,hintandextended,lora,180 +on3,0,0,24,1,0,46,4346.001280,109,0,500.001280,1787.904717,hintandextended,lora,180 +on4,0,0,25,1,0,356,4500.000000,109,1,9798.001280,1869.135795,hintandextended,lora,180 +on9,0,0,26,1,0,701,4680.000000,109,2,20536.001280,2043.360205,hintandextended,lora,180 +on1,0,0,24,1,0,2921,4341.001280,109,0,58051.001280,1790.640922,hintandextended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,hintandextended,lora,180 +on10,0,0,28,1,0,1127,5040.000000,110,4,17630.001280,2070.671590,hintandextended,lora,180 +on1,0,0,24,1,0,512,4452.001280,110,0,9224.001280,1806.400717,hintandextended,lora,180 +on12,0,0,26,1,0,1148,4680.000000,110,2,20073.001280,1910.031590,hintandextended,lora,180 +on0,1,12,24,0,0,0,4881.615360,110,0,-1.000000,2259.850240,hintandextended,lora,180 +on5,0,0,26,1,0,894,4770.000000,110,3,24353.001280,2020.800000,hintandextended,lora,180 +on8,0,0,24,1,0,273,4393.001280,110,0,6470.001280,1782.800717,hintandextended,lora,180 +on7,0,0,26,1,0,1291,4820.003840,110,2,20233.003840,1956.801741,hintandextended,lora,180 +on3,0,0,25,1,0,618,4791.603840,110,2,13572.603840,1995.361946,hintandextended,lora,180 +on6,0,0,25,1,0,1018,4640.003840,110,1,17790.003840,1903.041741,hintandextended,lora,180 +on4,0,0,25,1,0,401,4500.000000,110,1,13411.001280,1866.687181,hintandextended,lora,180 +on2,0,0,24,1,0,36,4336.001280,110,0,1053.001280,1783.744922,hintandextended,lora,180 +on11,0,0,24,1,0,1429,4469.001280,110,0,26076.001280,1841.840717,hintandextended,lora,180 +on9,0,0,25,1,0,233,4533.003840,110,1,6630.003840,1853.906150,hintandextended,lora,180 +on2,0,0,24,1,0,1195,4415.001280,111,0,23165.001280,1812.240717,hintandextended,lora,180 +on8,0,0,24,1,0,540,4320.000000,111,0,11713.001280,1753.600205,hintandextended,lora,180 +on7,0,0,25,1,0,1533,4640.003840,111,1,27946.003840,1881.601741,hintandextended,lora,180 +on4,0,0,26,1,0,2134,4821.603840,111,2,36943.603840,1966.241741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4840.214080,111,0,-1.000000,2243.289523,hintandextended,lora,180 +on6,0,0,26,1,0,2171,4680.000000,111,2,42667.001280,1921.759795,hintandextended,lora,180 +on10,0,0,25,1,0,1316,4500.000000,111,1,30643.001280,1885.600000,hintandextended,lora,180 +on9,0,0,24,1,0,1307,4347.001280,111,0,27786.001280,1764.400922,hintandextended,lora,180 +on5,0,0,26,1,0,1323,4820.603840,111,3,23325.603840,1958.689741,hintandextended,lora,180 +on11,0,0,24,1,0,905,4320.000000,111,0,18774.001280,1753.600205,hintandextended,lora,180 +on3,0,0,24,1,0,1645,4325.001280,111,0,34980.001280,1783.920717,hintandextended,lora,180 +on1,0,0,28,1,0,1937,5040.000000,111,5,36782.001280,2147.806976,hintandextended,lora,180 +on12,0,0,24,1,0,180,4320.000000,111,0,4271.001280,1753.600205,hintandextended,lora,180 +on4,0,0,25,1,0,867,4640.003840,112,1,17633.003840,1896.641741,hintandextended,lora,180 +on5,0,0,25,1,0,454,4500.000000,112,1,12702.001280,1881.375590,hintandextended,lora,180 +on1,0,0,26,1,0,994,4821.603840,112,2,19093.603840,1982.625741,hintandextended,lora,180 +on11,0,0,27,1,0,1200,4860.000000,112,3,21878.001280,2035.311590,hintandextended,lora,180 +on10,0,0,27,1,0,1624,5001.603840,112,3,28750.603840,2055.681536,hintandextended,lora,180 +on6,0,0,25,1,0,360,4500.000000,112,1,7623.602560,1842.480205,hintandextended,lora,180 +on2,0,0,25,1,0,330,4500.000000,112,1,6447.001280,1825.600205,hintandextended,lora,180 +on7,0,0,24,1,0,761,4341.001280,112,0,17473.001280,1762.000717,hintandextended,lora,180 +on12,0,0,24,1,0,1087,4404.000000,112,1,22038.003840,1790.400000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4920.819200,112,0,-1.000000,2275.531366,hintandextended,lora,180 +on8,0,0,24,1,0,0,4320.000000,112,0,1870.001280,1781.984205,hintandextended,lora,180 +on9,0,0,26,1,0,1004,4680.000000,112,2,18932.001280,1912.703386,hintandextended,lora,180 +on3,0,0,25,1,0,1172,4500.000000,112,1,28589.001280,1892.479795,hintandextended,lora,180 +on8,0,0,24,1,0,35,4335.001280,113,0,1905.001280,1794.480717,hintandextended,lora,180 +on12,0,0,24,1,0,330,4450.001280,113,0,5466.001280,1834.240922,hintandextended,lora,180 +on11,0,0,26,1,0,977,4801.001280,113,3,21237.001280,1995.600512,hintandextended,lora,180 +on10,0,0,24,1,0,405,4345.001280,113,0,8416.001280,1786.160717,hintandextended,lora,180 +on3,0,0,24,1,0,2961,4430.001280,113,1,60231.001280,1797.600922,hintandextended,lora,180 +on7,0,0,26,1,0,1119,4680.000000,113,2,21931.001280,1958.288614,hintandextended,lora,180 +on5,0,0,24,1,0,4108,4448.001280,113,0,80229.001280,1804.800717,hintandextended,lora,180 +on6,0,0,26,1,0,1224,4820.003840,113,2,21397.003840,1982.242150,hintandextended,lora,180 +on1,0,0,24,1,0,1724,4404.001280,113,0,35560.001280,1792.000717,hintandextended,lora,180 +on9,0,0,25,1,0,383,4503.003840,113,1,8576.003840,1826.802355,hintandextended,lora,180 +on0,1,12,24,0,0,0,4740.611520,113,0,-1.000000,2203.450752,hintandextended,lora,180 +on4,0,0,24,1,0,2340,4320.000000,113,0,48740.001280,1770.240410,hintandextended,lora,180 +on2,0,0,25,1,0,153,4633.603840,113,1,2065.603840,1922.098355,hintandextended,lora,180 +on5,0,0,27,1,0,663,4860.000000,114,3,13593.001280,2047.535590,hintandextended,lora,180 +on11,0,0,27,1,0,1068,5000.003840,114,3,17530.003840,2083.281741,hintandextended,lora,180 +on8,0,0,24,1,0,262,4404.000000,114,1,10117.001280,1843.583795,hintandextended,lora,180 +on7,0,0,25,1,0,3683,4500.000000,114,1,75400.001280,1839.232000,hintandextended,lora,180 +on3,0,0,25,1,0,453,4640.003840,114,1,5259.003840,1881.601946,hintandextended,lora,180 +on10,0,0,27,1,0,1156,5001.603840,114,3,20761.603840,2057.921741,hintandextended,lora,180 +on9,0,0,27,1,0,1145,4860.000000,114,3,24297.001280,2066.080410,hintandextended,lora,180 +on12,0,0,26,1,0,968,4680.000000,114,2,17370.001280,1903.888205,hintandextended,lora,180 +on6,0,0,25,1,0,493,4613.003840,114,1,10277.003840,1881.202150,hintandextended,lora,180 +on0,1,12,24,0,0,0,4889.616640,114,0,-1.000000,2263.053619,hintandextended,lora,180 +on4,0,0,24,1,0,0,4320.000000,114,0,907.001280,1796.767795,hintandextended,lora,180 +on1,0,0,24,1,0,272,4392.001280,114,0,5099.001280,1782.400922,hintandextended,lora,180 +on2,0,0,26,1,0,769,4680.000000,114,3,20600.001280,1978.111386,hintandextended,lora,180 +on2,0,0,25,1,0,1080,4500.000000,115,1,23663.001280,1857.440205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4984.214080,115,0,-1.000000,2300.890547,hintandextended,lora,180 +on12,0,0,24,1,0,429,4410.001280,115,1,10073.001280,1789.600717,hintandextended,lora,180 +on4,0,0,24,1,0,347,4467.001280,115,0,4932.001280,1861.648717,hintandextended,lora,180 +on9,0,0,25,1,0,540,4500.000000,115,1,13465.001280,1862.080205,hintandextended,lora,180 +on8,0,0,25,1,0,647,4744.603840,115,2,10233.603840,2001.953946,hintandextended,lora,180 +on1,0,0,25,1,0,1907,4587.003840,115,1,36347.003840,1889.041741,hintandextended,lora,180 +on10,0,0,26,1,0,1894,4821.603840,115,2,33742.603840,1986.081536,hintandextended,lora,180 +on7,0,0,25,1,0,1553,4500.000000,115,1,33581.001280,1856.927795,hintandextended,lora,180 +on11,0,0,25,1,0,1928,4500.000000,115,1,42434.001280,1893.312000,hintandextended,lora,180 +on6,0,0,24,1,0,1495,4355.001280,115,0,29096.001280,1767.600717,hintandextended,lora,180 +on3,0,0,24,1,0,105,4405.001280,115,0,2549.001280,1801.360307,hintandextended,lora,180 +on5,0,0,25,1,0,1789,4500.000000,115,1,36187.001280,1885.760000,hintandextended,lora,180 +on4,0,0,25,1,0,1013,4500.000000,116,1,19976.001280,1857.440410,hintandextended,lora,180 +on9,0,0,24,1,0,337,4457.001280,116,0,5135.001280,1882.321126,hintandextended,lora,180 +on6,0,0,24,1,0,414,4354.001280,116,0,7517.001280,1767.201126,hintandextended,lora,180 +on7,0,0,24,1,0,84,4384.001280,116,0,2257.001280,1820.544717,hintandextended,lora,180 +on8,0,0,24,1,0,96,4396.003840,116,0,2417.003840,1784.002150,hintandextended,lora,180 +on1,0,0,24,1,0,2160,4320.000000,116,0,45977.001280,1782.080410,hintandextended,lora,180 +on12,0,0,27,1,0,703,4860.000000,116,3,11022.001280,2033.024205,hintandextended,lora,180 +on10,0,0,24,1,0,3489,4369.001280,116,0,70391.001280,1801.840717,hintandextended,lora,180 +on2,0,0,26,1,0,994,4821.603840,116,2,15854.603840,1999.842150,hintandextended,lora,180 +on5,0,0,25,1,0,312,4679.003840,116,2,5295.003840,1926.050355,hintandextended,lora,180 +on11,0,0,25,1,0,779,4500.000000,116,1,15693.001280,1856.544205,hintandextended,lora,180 +on3,0,0,25,1,0,4279,4500.000000,116,1,86282.000000,1832.160000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4778.612800,116,0,-1.000000,2218.651469,hintandextended,lora,180 +on4,0,0,25,1,0,699,4500.000000,117,1,17115.001280,1843.904205,hintandextended,lora,180 +on11,0,0,25,1,0,806,4500.000000,117,2,19435.001280,1888.000000,hintandextended,lora,180 +on10,0,0,25,1,0,980,4551.000000,117,2,23525.001280,1901.039795,hintandextended,lora,180 +on3,0,0,27,1,0,1288,4860.000000,117,3,26802.001280,2031.600000,hintandextended,lora,180 +on8,0,0,26,1,0,994,4820.003840,117,2,19595.003840,1982.401741,hintandextended,lora,180 +on12,0,0,25,1,0,1173,4711.003840,117,2,23685.003840,1926.161946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4767.612800,117,0,-1.000000,2214.250035,hintandextended,lora,180 +on5,0,0,24,1,0,1440,4320.000000,117,0,29475.001280,1785.440205,hintandextended,lora,180 +on1,0,0,24,1,0,2755,4355.001280,117,0,57499.001280,1767.600717,hintandextended,lora,180 +on2,0,0,25,1,0,368,4500.000000,117,1,8598.603840,1884.240205,hintandextended,lora,180 +on6,0,0,25,1,0,517,4500.000000,117,1,11124.001280,1859.360205,hintandextended,lora,180 +on9,0,0,24,1,0,205,4325.001280,117,0,4076.001280,1755.600717,hintandextended,lora,180 +on7,0,0,24,1,0,401,4341.001280,117,0,8438.001280,1762.000717,hintandextended,lora,180 +on1,0,0,25,1,0,77,4557.603840,118,1,1916.603840,1848.690355,hintandextended,lora,180 +on6,0,0,25,1,0,1587,4500.000000,118,1,31272.001280,1828.800000,hintandextended,lora,180 +on4,0,0,26,1,0,2633,4680.000000,118,3,53728.602560,1929.392000,hintandextended,lora,180 +on9,0,0,24,1,0,2407,4367.001280,118,0,48434.001280,1801.040717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4632.608960,118,0,-1.000000,2160.249318,hintandextended,lora,180 +on5,0,0,26,1,0,839,4680.000000,118,2,17741.001280,1951.520000,hintandextended,lora,180 +on8,0,0,25,1,0,180,4500.000000,118,1,6687.001280,1828.544410,hintandextended,lora,180 +on7,0,0,24,1,0,459,4598.003840,118,1,12425.003840,1992.993946,hintandextended,lora,180 +on10,0,0,24,1,0,145,4445.001280,118,0,1756.001280,1803.600717,hintandextended,lora,180 +on3,0,0,24,1,0,1154,4469.001280,118,1,26257.001280,1868.448922,hintandextended,lora,180 +on11,0,0,26,1,0,968,4680.000000,118,2,20171.001280,1974.399590,hintandextended,lora,180 +on12,0,0,24,1,0,403,4343.001280,118,0,8929.001280,1790.320922,hintandextended,lora,180 +on2,0,0,26,1,0,686,4680.000000,118,2,12265.001280,1948.688000,hintandextended,lora,180 +on7,0,0,25,1,0,377,4500.000000,119,1,13550.001280,1910.143795,hintandextended,lora,180 +on1,0,0,24,1,0,425,4391.001280,119,1,10109.001280,1846.320717,hintandextended,lora,180 +on5,0,0,27,1,0,925,4860.000000,119,3,20355.001280,2003.359795,hintandextended,lora,180 +on2,0,0,24,1,0,806,4386.001280,119,0,15152.001280,1843.200922,hintandextended,lora,180 +on9,0,0,25,1,0,687,4607.000000,119,1,13710.003840,1951.440000,hintandextended,lora,180 +on6,0,0,25,1,0,486,4710.003840,119,2,6315.003840,2023.474970,hintandextended,lora,180 +on3,0,0,24,1,0,152,4452.001280,119,0,2547.001280,1837.761126,hintandextended,lora,180 +on8,0,0,25,1,0,329,4500.000000,119,1,6155.001280,1868.960410,hintandextended,lora,180 +on12,0,0,25,1,0,172,4652.603840,119,1,2707.603840,1965.794150,hintandextended,lora,180 +on4,0,0,28,1,0,902,5307.003840,119,5,15312.003840,2312.818355,hintandextended,lora,180 +on0,1,11,24,0,0,0,4993.616640,119,0,-1.000000,2279.054643,hintandextended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,119,0,32125.001280,1771.520000,hintandextended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,hintandextended,lora,180 +on2,0,0,25,1,0,718,4500.000000,120,1,17911.001280,1864.816000,hintandextended,lora,180 +on5,0,0,25,1,0,397,4500.000000,120,1,9902.001280,1831.216000,hintandextended,lora,180 +on10,0,0,25,1,0,238,4500.000000,120,1,6020.001280,1828.800000,hintandextended,lora,180 +on7,0,0,25,1,0,953,4640.003840,120,1,18071.003840,1881.601946,hintandextended,lora,180 +on8,0,0,26,1,0,901,4680.000000,120,2,20401.001280,1956.319795,hintandextended,lora,180 +on1,0,0,27,1,0,793,5000.003840,120,3,13382.003840,2057.025536,hintandextended,lora,180 +on0,1,12,24,0,0,0,4881.615360,120,0,-1.000000,2259.850854,hintandextended,lora,180 +on4,0,0,24,1,0,128,4428.001280,120,0,2104.001280,1821.024922,hintandextended,lora,180 +on11,0,0,29,1,0,1310,5220.000000,120,6,21954.001280,2178.366566,hintandextended,lora,180 +on9,0,0,25,1,0,3,4500.000000,120,1,2264.003840,1853.728614,hintandextended,lora,180 +on12,0,0,26,1,0,455,4680.000000,120,2,13222.001280,1961.071795,hintandextended,lora,180 +on6,0,0,28,1,0,1500,5092.000000,120,5,26119.001280,2120.863590,hintandextended,lora,180 +on3,0,0,27,1,0,1394,4928.000000,120,4,22115.603840,2045.343181,hintandextended,lora,180 +on10,0,0,25,1,0,473,4500.000000,121,1,12843.001280,1876.064205,hintandextended,lora,180 +on2,0,0,28,1,0,1541,5040.000000,121,5,28049.001280,2082.927181,hintandextended,lora,180 +on7,0,0,25,1,0,993,4640.003840,121,1,17399.003840,1881.601741,hintandextended,lora,180 +on9,0,0,24,1,0,0,4320.000000,121,0,3448.001280,1772.223590,hintandextended,lora,180 +on3,0,0,26,1,0,1213,4680.000000,121,2,23970.001280,1924.639795,hintandextended,lora,180 +on4,0,0,26,1,0,948,4680.000000,121,2,18981.001280,1903.727795,hintandextended,lora,180 +on8,0,0,29,1,0,1428,5360.003840,121,5,24130.003840,2204.337536,hintandextended,lora,180 +on0,1,12,24,0,0,0,5001.016640,121,0,-1.000000,2307.611162,hintandextended,lora,180 +on12,0,0,26,1,0,485,4820.003840,121,2,6285.003840,1958.722150,hintandextended,lora,180 +on6,0,0,24,1,0,273,4393.001280,121,0,6125.001280,1782.800717,hintandextended,lora,180 +on1,0,0,24,1,0,407,4347.001280,121,0,7675.001280,1764.400717,hintandextended,lora,180 +on5,0,0,26,1,0,708,4820.003840,121,2,13003.003840,1964.065741,hintandextended,lora,180 +on11,0,0,28,1,0,1117,5040.000000,121,4,17239.001280,2051.503386,hintandextended,lora,180 +on1,0,0,25,1,0,1509,4549.603840,122,1,29371.603840,1874.081741,hintandextended,lora,180 +on6,0,0,25,1,0,519,4500.000000,122,1,11366.001280,1828.543795,hintandextended,lora,180 +on5,0,0,24,1,0,720,4320.000000,122,0,15344.001280,1782.240205,hintandextended,lora,180 +on9,0,0,24,1,0,478,4418.001280,122,0,7570.001280,1792.800717,hintandextended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,122,0,29210.001280,1810.943795,hintandextended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,122,0,22718.001280,1756.800000,hintandextended,lora,180 +on12,0,0,26,1,0,453,4820.003840,122,2,7730.003840,1963.585741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5009.419200,122,0,-1.000000,2310.972800,hintandextended,lora,180 +on3,0,0,25,1,0,54,4534.603840,122,1,3098.603840,1847.810560,hintandextended,lora,180 +on4,0,0,24,1,0,947,4347.001280,122,0,20808.001280,1797.680717,hintandextended,lora,180 +on8,0,0,25,1,0,1800,4500.000000,122,1,37587.602560,1828.752000,hintandextended,lora,180 +on7,0,0,24,1,0,69,4369.001280,122,0,2938.001280,1793.360922,hintandextended,lora,180 +on2,0,0,26,1,0,814,4821.603840,122,2,11527.603840,1982.881946,hintandextended,lora,180 +on11,0,0,24,1,0,153,4453.001280,123,0,1537.001280,1806.800717,hintandextended,lora,180 +on12,0,0,25,1,0,1387,4500.000000,123,1,26897.001280,1857.183795,hintandextended,lora,180 +on8,0,0,25,1,0,644,4500.000000,123,1,12686.002560,1825.600205,hintandextended,lora,180 +on4,0,0,25,1,0,267,4567.603840,123,1,5978.603840,1897.202150,hintandextended,lora,180 +on9,0,0,26,1,0,1128,4680.000000,123,2,23587.001280,1977.200205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.215360,123,0,-1.000000,2260.090035,hintandextended,lora,180 +on5,0,0,28,1,0,1026,5180.003840,123,5,19994.003840,2166.769331,hintandextended,lora,180 +on3,0,0,24,1,0,370,4320.000000,123,0,8100.001280,1755.200000,hintandextended,lora,180 +on1,0,0,27,1,0,1278,5000.003840,123,3,23747.003840,2092.721126,hintandextended,lora,180 +on10,0,0,26,1,0,616,4680.000000,123,2,14944.001280,1952.096205,hintandextended,lora,180 +on2,0,0,26,1,0,1480,4821.603840,123,2,27058.603840,2001.921741,hintandextended,lora,180 +on7,0,0,24,1,0,833,4443.000000,123,1,19834.001280,1854.160000,hintandextended,lora,180 +on6,0,0,24,1,0,306,4426.001280,123,0,5818.001280,1837.920512,hintandextended,lora,180 +on2,0,0,24,1,0,3909,4439.000000,124,1,80259.001280,1831.599795,hintandextended,lora,180 +on12,0,0,24,1,0,841,4421.001280,124,0,16610.001280,1835.761126,hintandextended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,124,0,44422.001280,1782.080205,hintandextended,lora,180 +on1,0,0,26,1,0,1174,4821.603840,124,2,19697.603840,1954.881741,hintandextended,lora,180 +on10,0,0,25,1,0,1088,4500.000000,124,1,26068.001280,1884.703795,hintandextended,lora,180 +on11,0,0,24,1,0,3931,4451.001280,124,0,77216.001280,1806.000717,hintandextended,lora,180 +on3,0,0,24,1,0,1088,4385.000000,124,1,23295.003840,1808.240819,hintandextended,lora,180 +on0,1,12,24,0,0,0,4742.211520,124,0,-1.000000,2204.090138,hintandextended,lora,180 +on4,0,0,25,1,0,1559,4500.000000,124,1,30839.001280,1854.240205,hintandextended,lora,180 +on7,0,0,25,1,0,745,4505.603840,124,1,16770.603840,1872.818150,hintandextended,lora,180 +on5,0,0,24,1,0,1655,4335.001280,124,0,34143.001280,1763.600307,hintandextended,lora,180 +on6,0,0,25,1,0,1013,4500.000000,124,1,19536.001280,1828.751795,hintandextended,lora,180 +on9,0,0,25,1,0,1193,4500.000000,124,1,23135.001280,1828.640205,hintandextended,lora,180 +on1,0,0,25,1,0,89,4569.603840,125,1,3523.603840,1881.714150,hintandextended,lora,180 +on2,0,0,25,1,0,489,4771.003840,125,2,8859.003840,1956.513331,hintandextended,lora,180 +on4,0,0,25,1,0,822,4619.000000,125,2,22553.001280,1961.360410,hintandextended,lora,180 +on7,0,0,24,1,0,448,4529.000000,125,2,15838.001280,1914.143590,hintandextended,lora,180 +on8,0,0,24,1,0,192,4320.000000,125,0,6596.001280,1754.880000,hintandextended,lora,180 +on3,0,0,25,1,0,889,4500.000000,125,1,21474.001280,1857.503386,hintandextended,lora,180 +on9,0,0,27,1,0,1136,5000.003840,125,3,21634.003840,2072.625126,hintandextended,lora,180 +on5,0,0,27,1,0,908,5001.005120,125,3,15999.005120,2070.802048,hintandextended,lora,180 +on10,0,0,25,1,0,341,4500.000000,125,1,8699.001280,1857.024000,hintandextended,lora,180 +on11,0,0,26,1,0,531,4680.000000,125,2,11417.001280,1925.455795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5024.223040,125,0,-1.000000,2316.893517,hintandextended,lora,180 +on12,0,0,24,1,0,95,4395.001280,125,0,3363.001280,1788.560307,hintandextended,lora,180 +on6,0,0,26,1,0,671,4822.606400,125,3,11579.606400,1983.651379,hintandextended,lora,180 +on5,0,0,25,1,0,883,4500.000000,126,1,17665.001280,1854.240205,hintandextended,lora,180 +on4,0,0,24,1,0,447,4387.001280,126,0,8501.001280,1808.528922,hintandextended,lora,180 +on6,0,0,26,1,0,1345,4680.000000,126,2,27969.001280,1967.039386,hintandextended,lora,180 +on9,0,0,29,1,0,1645,5361.603840,126,7,24474.603840,2233.377946,hintandextended,lora,180 +on7,0,0,24,1,0,267,4387.001280,126,0,4209.001280,1812.400922,hintandextended,lora,180 +on0,1,12,24,0,0,0,4601.607680,126,0,-1.000000,2147.849421,hintandextended,lora,180 +on2,0,0,24,1,0,911,4320.000000,126,0,21075.001280,1794.240205,hintandextended,lora,180 +on1,0,0,24,1,0,936,4336.003840,126,0,21235.003840,1760.001741,hintandextended,lora,180 +on11,0,0,25,1,0,1506,4500.000000,126,1,31925.001280,1866.880614,hintandextended,lora,180 +on8,0,0,25,1,0,655,4500.000000,126,1,13697.001280,1830.624410,hintandextended,lora,180 +on10,0,0,24,1,0,3778,4477.001280,126,0,73309.001280,1816.400717,hintandextended,lora,180 +on12,0,0,24,1,0,2351,4320.000000,126,0,47754.001280,1755.040000,hintandextended,lora,180 +on3,0,0,26,1,0,1324,4680.000000,126,2,24313.001280,1938.671795,hintandextended,lora,180 +on6,0,0,25,1,0,481,4500.000000,127,1,11364.001280,1901.087590,hintandextended,lora,180 +on0,1,12,24,0,0,0,4885.415360,127,0,-1.000000,2261.371674,hintandextended,lora,180 +on4,0,0,25,1,0,552,4500.000000,127,1,11525.603840,1840.160000,hintandextended,lora,180 +on3,0,0,25,1,0,225,4500.000000,127,1,4536.001280,1848.704000,hintandextended,lora,180 +on7,0,0,24,1,0,2577,4357.001280,127,0,53714.001280,1768.400717,hintandextended,lora,180 +on10,0,0,24,1,0,1743,4401.001280,127,1,37799.001280,1857.360922,hintandextended,lora,180 +on2,0,0,24,1,0,468,4408.001280,127,0,7811.001280,1816.800717,hintandextended,lora,180 +on5,0,0,26,1,0,746,4680.000000,127,2,15287.001280,1903.743795,hintandextended,lora,180 +on1,0,0,25,1,0,46,4526.603840,127,1,1382.603840,1867.617741,hintandextended,lora,180 +on8,0,0,24,1,0,1614,4474.001280,127,0,30505.001280,1815.200717,hintandextended,lora,180 +on9,0,0,26,1,0,454,4821.603840,127,2,4697.603840,1971.106150,hintandextended,lora,180 +on12,0,0,26,1,0,731,4821.603840,127,2,15448.603840,2015.490150,hintandextended,lora,180 +on11,0,0,24,1,0,87,4387.001280,127,0,1222.001280,1780.400717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4798.612800,128,0,-1.000000,2226.650240,hintandextended,lora,180 +on4,0,0,25,1,0,748,4500.000000,128,1,19050.001280,1881.600000,hintandextended,lora,180 +on1,0,0,24,1,0,360,4320.000000,128,0,10016.001280,1781.759795,hintandextended,lora,180 +on2,0,0,29,1,0,1931,5361.603840,128,6,30143.603840,2205.697536,hintandextended,lora,180 +on8,0,0,25,1,0,505,4500.000000,128,1,12208.001280,1841.936205,hintandextended,lora,180 +on7,0,0,26,1,0,1422,4680.000000,128,3,29982.001280,1954.943590,hintandextended,lora,180 +on6,0,0,25,1,0,922,4500.000000,128,1,24756.001280,1880.544000,hintandextended,lora,180 +on11,0,0,24,1,0,2010,4330.001280,128,0,41444.001280,1757.600717,hintandextended,lora,180 +on5,0,0,27,1,0,1098,5000.003840,128,3,19210.003840,2026.033946,hintandextended,lora,180 +on10,0,0,25,1,0,858,4640.003840,128,1,15753.003840,1916.817126,hintandextended,lora,180 +on3,0,0,30,1,0,2139,5400.000000,128,6,35966.001280,2258.814976,hintandextended,lora,180 +on9,0,0,26,1,0,756,4680.000000,128,3,15593.001280,1955.583795,hintandextended,lora,180 +on12,0,0,25,1,0,1349,4500.000000,128,1,28286.001280,1840.128000,hintandextended,lora,180 +on11,0,0,26,1,0,521,4680.000000,129,2,8061.001280,1927.536205,hintandextended,lora,180 +on9,0,0,25,1,0,491,4640.003840,129,1,7274.003840,1881.601741,hintandextended,lora,180 +on1,0,0,27,1,0,678,5000.003840,129,3,8221.003840,2082.449536,hintandextended,lora,180 +on7,0,0,25,1,0,1374,4500.000000,129,1,28446.001280,1857.440000,hintandextended,lora,180 +on10,0,0,24,1,0,580,4336.000000,129,1,17617.001280,1812.864000,hintandextended,lora,180 +on6,0,0,28,1,0,1073,5180.003840,129,4,20162.003840,2171.505536,hintandextended,lora,180 +on8,0,0,24,1,0,319,4439.001280,129,0,7114.001280,1801.200717,hintandextended,lora,180 +on2,0,0,25,1,0,1165,4500.000000,129,1,22364.001280,1869.280000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4935.016640,129,0,-1.000000,2281.210752,hintandextended,lora,180 +on4,0,0,25,1,0,422,4500.000000,129,1,11606.001280,1847.519795,hintandextended,lora,180 +on12,0,0,26,1,0,1016,4680.000000,129,2,20002.001280,1932.159795,hintandextended,lora,180 +on5,0,0,24,1,0,0,4320.000000,129,0,2710.001280,1809.983795,hintandextended,lora,180 +on3,0,0,25,1,0,545,4640.003840,129,2,11766.003840,1932.673946,hintandextended,lora,180 +on2,0,0,25,1,0,465,4640.003840,130,1,8765.003840,1917.249536,hintandextended,lora,180 +on8,0,0,27,1,0,2383,4929.000000,130,4,48148.602560,2034.704205,hintandextended,lora,180 +on12,0,0,24,1,0,0,4320.000000,130,0,3378.001280,1756.384205,hintandextended,lora,180 +on10,0,0,25,1,0,1571,4500.000000,130,1,32353.001280,1857.440000,hintandextended,lora,180 +on4,0,0,25,1,0,454,4640.003840,130,1,5422.003840,1881.809946,hintandextended,lora,180 +on3,0,0,26,1,0,810,4820.003840,130,2,12190.003840,2014.689536,hintandextended,lora,180 +on7,0,0,25,1,0,608,4633.000000,130,2,16585.001280,1938.448000,hintandextended,lora,180 +on1,0,0,25,1,0,165,4500.000000,130,1,5262.001280,1857.072205,hintandextended,lora,180 +on5,0,0,26,1,0,419,4680.000000,130,2,8605.001280,1936.976205,hintandextended,lora,180 +on0,1,12,24,0,0,0,5035.615360,130,0,-1.000000,2321.450445,hintandextended,lora,180 +on11,0,0,28,1,0,1268,5040.000000,130,4,22051.001280,2115.551795,hintandextended,lora,180 +on6,0,0,26,1,0,494,4680.000000,130,2,12030.001280,1955.455590,hintandextended,lora,180 +on9,0,0,26,1,0,855,4680.000000,130,3,19761.001280,1951.360000,hintandextended,lora,180 +on1,0,0,24,1,0,1544,4404.001280,131,0,29746.001280,1787.200717,hintandextended,lora,180 +on6,0,0,25,1,0,2520,4500.000000,131,1,51655.001280,1825.600205,hintandextended,lora,180 +on9,0,0,24,1,0,2753,4353.001280,131,0,56188.001280,1766.800717,hintandextended,lora,180 +on3,0,0,25,1,0,473,4500.000000,131,1,13023.001280,1866.944205,hintandextended,lora,180 +on5,0,0,24,1,0,158,4458.001280,131,0,1921.001280,1808.800717,hintandextended,lora,180 +on4,0,0,27,1,0,635,4860.000000,131,3,14813.001280,2074.687795,hintandextended,lora,180 +on10,0,0,25,1,0,180,4500.000000,131,2,4745.602560,1828.496205,hintandextended,lora,180 +on8,0,0,25,1,0,168,4648.603840,131,1,2081.603840,1955.842355,hintandextended,lora,180 +on12,0,0,24,1,0,392,4479.000000,131,1,8672.001280,1820.240000,hintandextended,lora,180 +on11,0,0,25,1,0,2035,4500.000000,131,1,40814.001280,1869.152205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4965.215360,131,0,-1.000000,2293.290854,hintandextended,lora,180 +on7,0,0,25,1,0,603,4543.003840,131,1,13183.003840,1874.641536,hintandextended,lora,180 +on2,0,0,26,1,0,376,4820.003840,131,2,8832.003840,1985.921331,hintandextended,lora,180 +on10,0,0,25,1,0,326,4500.000000,132,2,10187.001280,1833.663590,hintandextended,lora,180 +on9,0,0,24,1,0,69,4369.001280,132,0,1019.001280,1784.048717,hintandextended,lora,180 +on5,0,0,28,1,0,1131,5180.003840,132,4,16347.003840,2144.545331,hintandextended,lora,180 +on11,0,0,29,1,0,1367,5361.603840,132,5,21108.603840,2214.609331,hintandextended,lora,180 +on6,0,0,27,1,0,632,4860.000000,132,3,12000.001280,2031.999795,hintandextended,lora,180 +on7,0,0,26,1,0,946,4680.000000,132,2,20947.001280,1929.183795,hintandextended,lora,180 +on12,0,0,25,1,0,291,4500.000000,132,1,4503.001280,1829.520000,hintandextended,lora,180 +on8,0,0,25,1,0,64,4544.603840,132,1,1179.603840,1900.258150,hintandextended,lora,180 +on0,1,12,24,0,0,0,5022.219200,132,0,-1.000000,2316.091776,hintandextended,lora,180 +on2,0,0,25,1,0,579,4640.003840,132,1,10347.003840,1891.809741,hintandextended,lora,180 +on3,0,0,27,1,0,796,4860.000000,132,3,16187.001280,2036.207590,hintandextended,lora,180 +on4,0,0,27,1,0,1167,4860.000000,132,3,22872.001280,2025.455795,hintandextended,lora,180 +on1,0,0,26,1,0,794,4820.003840,132,2,12160.003840,1985.121536,hintandextended,lora,180 +on1,0,0,24,1,0,130,4430.001280,133,0,2891.001280,1797.601126,hintandextended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,133,0,45691.001280,1753.600205,hintandextended,lora,180 +on2,0,0,24,1,0,223,4343.001280,133,0,4802.001280,1777.264922,hintandextended,lora,180 +on5,0,0,24,1,0,2700,4320.000000,133,0,54373.001280,1785.440000,hintandextended,lora,180 +on10,0,0,27,1,0,614,5000.003840,133,3,10023.003840,2130.689536,hintandextended,lora,180 +on7,0,0,26,1,0,632,4680.000000,133,2,11119.001280,1949.184000,hintandextended,lora,180 +on11,0,0,24,1,0,441,4381.001280,133,0,9863.001280,1778.000922,hintandextended,lora,180 +on4,0,0,24,1,0,2064,4384.001280,133,0,41740.001280,1779.200717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4752.212800,133,0,-1.000000,2208.091469,hintandextended,lora,180 +on9,0,0,25,1,0,782,4500.000000,133,1,18490.001280,1869.439590,hintandextended,lora,180 +on3,0,0,26,1,0,746,4680.000000,133,2,14872.001280,1918.943590,hintandextended,lora,180 +on6,0,0,27,1,0,724,5001.603840,133,3,15033.603840,2119.521741,hintandextended,lora,180 +on12,0,0,25,1,0,140,4620.603840,133,1,3051.603840,1880.674355,hintandextended,lora,180 +on8,0,0,26,1,0,1558,4680.000000,134,2,32767.001280,1932.319795,hintandextended,lora,180 +on2,0,0,26,1,0,1343,4820.003840,134,3,27443.003840,2019.729331,hintandextended,lora,180 +on0,1,11,24,0,0,0,4901.216640,134,0,-1.000000,2242.093619,hintandextended,lora,180 +on11,0,0,24,1,0,613,4373.001280,134,0,11760.001280,1774.801331,hintandextended,lora,180 +on1,0,0,24,1,0,1284,4338.001280,134,1,27283.001280,1799.361126,hintandextended,lora,180 +on12,0,0,28,1,0,1623,5181.603840,134,4,31695.603840,2163.648922,hintandextended,lora,180 +on9,0,0,24,1,0,361,4320.000000,134,0,9421.001280,1794.400205,hintandextended,lora,180 +on6,0,0,25,1,0,1383,4546.000000,134,3,31534.001280,1877.343386,hintandextended,lora,180 +on7,0,0,26,1,0,1106,4680.000000,134,4,24000.001280,1932.479795,hintandextended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,hintandextended,lora,180 +on10,0,0,25,1,0,900,4500.000000,134,1,18764.005120,1848.767590,hintandextended,lora,180 +on4,0,0,25,1,0,745,4500.000000,134,1,18585.001280,1883.519590,hintandextended,lora,180 +on3,0,0,25,1,0,653,4593.603840,134,1,11920.603840,1890.130560,hintandextended,lora,180 +on9,0,0,24,1,0,2880,4476.000000,135,1,59271.602560,1816.048410,hintandextended,lora,180 +on0,1,12,24,0,0,0,4909.816640,135,0,-1.000000,2271.131366,hintandextended,lora,180 +on4,0,0,26,1,0,1230,4951.003840,135,4,23778.003840,2037.009946,hintandextended,lora,180 +on6,0,0,28,1,0,1135,5181.603840,135,5,18465.603840,2150.784922,hintandextended,lora,180 +on12,0,0,25,1,0,474,4500.000000,135,1,13038.001280,1879.760000,hintandextended,lora,180 +on8,0,0,26,1,0,798,4680.000000,135,2,18304.001280,1997.423590,hintandextended,lora,180 +on7,0,0,25,1,0,879,4500.000000,135,1,17270.001280,1828.640000,hintandextended,lora,180 +on3,0,0,24,1,0,412,4352.001280,135,0,7919.001280,1766.400717,hintandextended,lora,180 +on5,0,0,24,1,0,360,4320.000000,135,0,8084.001280,1756.544000,hintandextended,lora,180 +on1,0,0,26,1,0,747,4821.603840,135,2,13199.603840,1983.089946,hintandextended,lora,180 +on2,0,0,24,1,0,276,4396.001280,135,0,4682.001280,1784.000717,hintandextended,lora,180 +on10,0,0,25,1,0,1013,4500.000000,135,1,23618.001280,1885.920000,hintandextended,lora,180 +on11,0,0,24,1,0,0,4320.000000,135,0,2755.001280,1753.600205,hintandextended,lora,180 +on8,0,0,24,1,0,366,4320.000000,136,0,8387.001280,1753.600205,hintandextended,lora,180 +on3,0,0,26,1,0,774,4796.000000,136,2,15443.003840,1978.720000,hintandextended,lora,180 +on11,0,0,28,1,0,1737,5181.603840,136,4,29467.603840,2132.961331,hintandextended,lora,180 +on2,0,0,25,1,0,1353,4640.003840,136,1,24535.003840,1881.601741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4881.615360,136,0,-1.000000,2259.850240,hintandextended,lora,180 +on10,0,0,27,1,0,1429,4980.000000,136,4,26756.001280,2061.119795,hintandextended,lora,180 +on6,0,0,24,1,0,915,4320.000000,136,0,20977.001280,1782.624000,hintandextended,lora,180 +on12,0,0,26,1,0,1569,4680.000000,136,3,34279.001280,1937.599386,hintandextended,lora,180 +on1,0,0,25,1,0,512,4500.000000,136,2,12713.001280,1856.288000,hintandextended,lora,180 +on5,0,0,28,1,0,1588,5040.000000,136,4,29306.001280,2102.847386,hintandextended,lora,180 +on9,0,0,25,1,0,1173,4640.003840,136,1,21137.003840,1889.665741,hintandextended,lora,180 +on7,0,0,25,1,0,1011,4500.000000,136,1,24375.001280,1868.479795,hintandextended,lora,180 +on4,0,0,24,1,0,809,4389.001280,136,0,15283.001280,1787.376717,hintandextended,lora,180 +on12,0,0,25,1,0,308,4500.000000,137,1,7377.001280,1905.984205,hintandextended,lora,180 +on1,0,0,29,1,0,1470,5361.603840,137,5,22552.603840,2260.225331,hintandextended,lora,180 +on6,0,0,24,1,0,222,4342.001280,137,0,6276.001280,1762.400717,hintandextended,lora,180 +on7,0,0,25,1,0,229,4529.003840,137,1,6436.003840,1842.066355,hintandextended,lora,180 +on5,0,0,25,1,0,473,4500.000000,137,1,13292.001280,1890.048205,hintandextended,lora,180 +on11,0,0,25,1,0,1575,4500.000000,137,2,35237.001280,1877.760205,hintandextended,lora,180 +on10,0,0,27,1,0,2894,4860.000000,137,3,53487.001280,1975.999795,hintandextended,lora,180 +on2,0,0,26,1,0,691,4680.000000,137,2,16624.001280,1948.127795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4872.612800,137,0,-1.000000,2256.250650,hintandextended,lora,180 +on9,0,0,27,1,0,1139,4860.000000,137,5,18365.001280,2007.679181,hintandextended,lora,180 +on8,0,0,24,1,0,0,4320.000000,137,0,514.001280,1753.600410,hintandextended,lora,180 +on4,0,0,24,1,0,892,4554.003840,137,1,18525.003840,1872.802150,hintandextended,lora,180 +on3,0,0,25,1,0,1048,4500.000000,137,1,22391.001280,1859.487795,hintandextended,lora,180 +on9,0,0,25,1,0,2998,4500.000000,138,1,59929.001280,1828.800000,hintandextended,lora,180 +on8,0,0,25,1,0,1135,4535.003840,138,1,24510.003840,1900.081741,hintandextended,lora,180 +on6,0,0,24,1,0,104,4404.001280,138,0,1759.001280,1787.200717,hintandextended,lora,180 +on3,0,0,24,1,0,802,4382.001280,138,0,15498.001280,1825.601126,hintandextended,lora,180 +on11,0,0,24,1,0,900,4320.000000,138,0,20622.001280,1756.640000,hintandextended,lora,180 +on4,0,0,24,1,0,1199,4419.001280,138,0,24350.001280,1849.904922,hintandextended,lora,180 +on10,0,0,24,1,0,1800,4320.000000,138,0,39225.001280,1772.480000,hintandextended,lora,180 +on12,0,0,24,1,0,540,4320.000000,138,0,13294.001280,1753.600205,hintandextended,lora,180 +on2,0,0,25,1,0,1535,4500.000000,138,1,32222.001280,1862.080000,hintandextended,lora,180 +on5,0,0,26,1,0,1354,4821.603840,138,2,26738.603840,1984.385946,hintandextended,lora,180 +on1,0,0,26,1,0,1277,4680.000000,138,2,26577.001280,2013.072000,hintandextended,lora,180 +on7,0,0,24,1,0,695,4455.001280,138,0,13116.001280,1807.600922,hintandextended,lora,180 +on0,1,12,24,0,0,0,4937.611520,138,0,-1.000000,2282.249318,hintandextended,lora,180 +on0,1,12,24,0,0,0,4888.216640,139,0,-1.000000,2262.495053,hintandextended,lora,180 +on5,0,0,24,1,0,490,4436.001280,139,1,10207.001280,1885.808922,hintandextended,lora,180 +on10,0,0,24,1,0,190,4338.000000,139,1,4224.205120,1788.961229,hintandextended,lora,180 +on8,0,0,26,1,0,1004,4680.000000,139,3,24040.001280,1959.839795,hintandextended,lora,180 +on9,0,0,25,1,0,634,4640.003840,139,1,10367.003840,1881.809946,hintandextended,lora,180 +on6,0,0,25,1,0,180,4500.000000,139,2,4062.602560,1860.015795,hintandextended,lora,180 +on11,0,0,26,1,0,808,4680.000000,139,2,14180.001280,1964.320000,hintandextended,lora,180 +on12,0,0,26,1,0,1333,4820.003840,139,3,24200.003840,2005.761946,hintandextended,lora,180 +on1,0,0,25,1,0,2993,4500.000000,139,1,63450.001280,1857.440000,hintandextended,lora,180 +on3,0,0,26,1,0,690,4820.003840,139,2,14340.003840,2061.073741,hintandextended,lora,180 +on4,0,0,25,1,0,961,4646.001280,139,1,16533.001280,1900.592512,hintandextended,lora,180 +on2,0,0,24,1,0,4,4320.000000,139,0,3506.001280,1777.024205,hintandextended,lora,180 +on7,0,0,26,1,0,1156,4680.000000,139,2,20433.001280,1957.664000,hintandextended,lora,180 +on10,0,0,24,1,0,335,4455.001280,140,0,5196.001280,1835.568717,hintandextended,lora,180 +on8,0,0,30,1,0,1675,5540.003840,140,6,25156.003840,2269.392922,hintandextended,lora,180 +on3,0,0,27,1,0,1000,4878.000000,140,4,20481.001280,2009.456205,hintandextended,lora,180 +on11,0,0,27,1,0,1507,4860.000000,140,3,27880.001280,2007.679590,hintandextended,lora,180 +on7,0,0,26,1,0,1194,4680.000000,140,2,24996.001280,1938.863795,hintandextended,lora,180 +on2,0,0,25,1,0,560,4500.000000,140,1,15643.001280,1859.039795,hintandextended,lora,180 +on12,0,0,25,1,0,633,4640.003840,140,1,10228.003840,1881.601741,hintandextended,lora,180 +on5,0,0,25,1,0,1087,4640.003840,140,1,20641.003840,1931.137741,hintandextended,lora,180 +on6,0,0,26,1,0,759,4820.003840,140,2,11476.003840,1989.745741,hintandextended,lora,180 +on1,0,0,25,1,0,505,4500.000000,140,1,10068.001280,1830.688000,hintandextended,lora,180 +on9,0,0,26,1,0,813,4820.003840,140,2,15803.003840,1989.505741,hintandextended,lora,180 +on4,0,0,24,1,0,615,4375.001280,140,0,11316.001280,1775.600717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5020.019200,140,0,-1.000000,2315.211162,hintandextended,lora,180 +on5,0,0,26,1,0,633,4680.000000,141,3,12254.001280,1929.024000,hintandextended,lora,180 +on11,0,0,26,1,0,820,4821.603840,141,2,15831.603840,2032.769536,hintandextended,lora,180 +on10,0,0,24,1,0,2418,4470.001280,141,1,48041.001280,1819.840717,hintandextended,lora,180 +on2,0,0,25,1,0,310,4500.000000,141,1,5571.001280,1881.632000,hintandextended,lora,180 +on6,0,0,26,1,0,1043,4821.603840,141,2,19258.603840,1998.881946,hintandextended,lora,180 +on4,0,0,25,1,0,2520,4500.000000,141,1,51036.602560,1828.752000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4858.814080,141,0,-1.000000,2250.729933,hintandextended,lora,180 +on1,0,0,24,1,0,41,4341.001280,141,0,781.001280,1813.009126,hintandextended,lora,180 +on9,0,0,26,1,0,991,4680.000000,141,2,19097.001280,1932.383590,hintandextended,lora,180 +on7,0,0,25,1,0,659,4500.000000,141,1,15670.001280,1828.751795,hintandextended,lora,180 +on12,0,0,25,1,0,409,4500.000000,141,1,9246.001280,1841.952205,hintandextended,lora,180 +on8,0,0,25,1,0,1212,4500.000000,141,1,24979.001280,1832.768205,hintandextended,lora,180 +on3,0,0,25,1,0,1274,4809.003840,141,2,25139.003840,1999.137741,hintandextended,lora,180 +on8,0,0,25,1,0,813,4640.003840,142,1,14243.003840,1910.241741,hintandextended,lora,180 +on2,0,0,29,1,0,1663,5220.000000,142,5,28229.001280,2151.071590,hintandextended,lora,180 +on9,0,0,27,1,0,966,4860.000000,142,3,15758.001280,2005.215795,hintandextended,lora,180 +on3,0,0,25,1,0,180,4500.000000,142,1,6451.602560,1882.256614,hintandextended,lora,180 +on5,0,0,24,1,0,536,4476.001280,142,0,8381.001280,1816.000717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4948.820480,142,0,-1.000000,2286.732493,hintandextended,lora,180 +on4,0,0,26,1,0,984,4820.003840,142,2,15918.003840,1984.961536,hintandextended,lora,180 +on7,0,0,27,1,0,1144,4860.000000,142,3,21540.001280,1980.367590,hintandextended,lora,180 +on10,0,0,25,1,0,0,4500.000000,142,1,2166.602560,1874.896410,hintandextended,lora,180 +on1,0,0,28,1,0,1069,5040.000000,142,4,22127.001280,2147.822976,hintandextended,lora,180 +on11,0,0,28,1,0,1361,5339.603840,142,5,22288.603840,2191.522150,hintandextended,lora,180 +on6,0,0,27,1,0,1273,5000.003840,142,3,21700.003840,2060.161126,hintandextended,lora,180 +on12,0,0,24,1,0,536,4462.000000,142,1,14083.001280,1836.000000,hintandextended,lora,180 +on12,0,0,24,1,0,506,4363.000000,143,1,11635.001280,1780.464000,hintandextended,lora,180 +on10,0,0,25,1,0,300,4500.000000,143,1,6092.001280,1836.832000,hintandextended,lora,180 +on6,0,0,30,1,0,1464,5400.000000,143,7,24265.001280,2283.519181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4892.612800,143,0,-1.000000,2264.250445,hintandextended,lora,180 +on2,0,0,24,1,0,0,4320.000000,143,0,2779.001280,1784.416205,hintandextended,lora,180 +on7,0,0,29,1,0,1181,5479.603840,143,7,20363.603840,2352.544922,hintandextended,lora,180 +on1,0,0,27,1,0,797,5000.003840,143,3,11795.003840,2112.881536,hintandextended,lora,180 +on5,0,0,25,1,0,1883,4500.000000,143,1,41488.001280,1865.088000,hintandextended,lora,180 +on4,0,0,26,1,0,1038,4815.000000,143,3,20202.001280,1987.823386,hintandextended,lora,180 +on3,0,0,24,1,0,321,4329.000000,143,1,7748.001280,1760.240205,hintandextended,lora,180 +on9,0,0,25,1,0,413,4640.003840,143,1,6252.003840,1881.809946,hintandextended,lora,180 +on11,0,0,26,1,0,654,4680.000000,143,2,15179.001280,1934.448000,hintandextended,lora,180 +on8,0,0,25,1,0,1391,4500.000000,143,1,26522.001280,1825.600205,hintandextended,lora,180 +on4,0,0,24,1,0,994,4469.003840,144,2,24892.003840,1875.889536,hintandextended,lora,180 +on11,0,0,25,1,0,3866,4720.201280,144,3,78102.201280,1968.384922,hintandextended,lora,180 +on6,0,0,24,1,0,539,4479.001280,144,0,9475.001280,1854.320922,hintandextended,lora,180 +on5,0,0,25,1,0,1554,4500.000000,144,1,30993.001280,1893.664205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.215360,144,0,-1.000000,2260.093107,hintandextended,lora,180 +on2,0,0,25,1,0,1339,4503.000000,144,2,28177.001280,1857.584000,hintandextended,lora,180 +on3,0,0,25,1,0,849,4609.003840,144,1,17141.003840,1897.585946,hintandextended,lora,180 +on9,0,0,24,1,0,3178,4418.001280,144,0,62951.001280,1792.800922,hintandextended,lora,180 +on1,0,0,25,1,0,1147,4720.000000,144,3,24732.001280,1964.655386,hintandextended,lora,180 +on8,0,0,24,1,0,957,4392.001280,144,1,20107.001280,1839.680922,hintandextended,lora,180 +on7,0,0,24,1,0,710,4410.000000,144,1,16981.001280,1811.408410,hintandextended,lora,180 +on10,0,0,26,1,0,1535,4821.603840,144,2,28338.603840,1991.042560,hintandextended,lora,180 +on12,0,0,25,1,0,436,4556.603840,144,1,9635.603840,1848.834355,hintandextended,lora,180 +on3,0,0,24,1,0,0,4320.000000,145,0,2458.001280,1784.128205,hintandextended,lora,180 +on2,0,0,25,1,0,312,4612.603840,145,1,6630.603840,1922.928922,hintandextended,lora,180 +on7,0,0,26,1,0,834,4680.000000,145,2,17005.001280,1903.839795,hintandextended,lora,180 +on11,0,0,25,1,0,993,4640.003840,145,1,17165.003840,1911.265536,hintandextended,lora,180 +on8,0,0,25,1,0,1006,4620.000000,145,3,21442.001280,1930.671795,hintandextended,lora,180 +on9,0,0,28,1,0,1302,5180.003840,145,5,21602.003840,2158.193331,hintandextended,lora,180 +on4,0,0,24,1,0,2190,4329.001280,145,0,44900.001280,1757.200717,hintandextended,lora,180 +on10,0,0,25,1,0,192,4500.000000,145,1,6469.001280,1888.704205,hintandextended,lora,180 +on12,0,0,26,1,0,566,4680.000000,145,2,9229.001280,1932.320410,hintandextended,lora,180 +on6,0,0,26,1,0,633,4680.000000,145,2,13905.001280,1916.383181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4914.614080,145,0,-1.000000,2273.051981,hintandextended,lora,180 +on5,0,0,24,1,0,2880,4320.000000,145,0,58736.001280,1782.240205,hintandextended,lora,180 +on1,0,0,26,1,0,886,4738.000000,145,3,22123.001280,2001.392614,hintandextended,lora,180 +on10,0,0,26,1,0,1829,4680.000000,146,2,39000.001280,1953.759795,hintandextended,lora,180 +on1,0,0,27,1,0,1004,5000.003840,146,4,17781.003840,2035.649126,hintandextended,lora,180 +on6,0,0,25,1,0,59,4539.003840,146,1,1683.003840,1841.201741,hintandextended,lora,180 +on11,0,0,24,1,0,165,4404.000000,146,1,4661.001280,1818.624000,hintandextended,lora,180 +on9,0,0,24,1,0,0,4320.000000,146,0,1523.001280,1756.640205,hintandextended,lora,180 +on7,0,0,24,1,0,1780,4460.001280,146,0,33414.001280,1809.600717,hintandextended,lora,180 +on12,0,0,26,1,0,574,4680.000000,146,2,11688.001280,1923.360000,hintandextended,lora,180 +on2,0,0,28,1,0,739,5040.000000,146,4,17621.001280,2154.303386,hintandextended,lora,180 +on5,0,0,26,1,0,295,4820.003840,146,2,4821.003840,1988.081741,hintandextended,lora,180 +on4,0,0,28,1,0,1187,5040.000000,146,4,18356.001280,2096.479590,hintandextended,lora,180 +on0,1,12,24,0,0,0,4896.015360,146,0,-1.000000,2265.611674,hintandextended,lora,180 +on3,0,0,25,1,0,242,4500.000000,146,1,8917.001280,1847.520410,hintandextended,lora,180 +on8,0,0,25,1,0,523,4640.003840,146,1,9077.003840,1896.849946,hintandextended,lora,180 +on8,0,0,27,1,0,1537,4860.000000,147,3,26799.001280,2024.895590,hintandextended,lora,180 +on5,0,0,24,1,0,360,4320.000000,147,0,7471.001280,1753.600205,hintandextended,lora,180 +on6,0,0,24,1,0,329,4449.001280,147,0,6809.001280,1805.200717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4810.611520,147,0,-1.000000,2231.449318,hintandextended,lora,180 +on12,0,0,24,1,0,540,4320.000000,147,0,14047.001280,1754.464205,hintandextended,lora,180 +on11,0,0,24,1,0,772,4352.001280,147,0,17359.001280,1771.040717,hintandextended,lora,180 +on4,0,0,27,1,0,1220,5001.603840,147,4,22678.603840,2076.016922,hintandextended,lora,180 +on9,0,0,25,1,0,1042,4500.000000,147,1,21150.001280,1834.720205,hintandextended,lora,180 +on1,0,0,24,1,0,697,4457.001280,147,0,13885.001280,1808.400922,hintandextended,lora,180 +on7,0,0,26,1,0,814,4820.003840,147,2,17519.003840,2010.562150,hintandextended,lora,180 +on10,0,0,24,1,0,2308,4448.001280,147,0,44625.001280,1804.800717,hintandextended,lora,180 +on2,0,0,26,1,0,1183,4680.000000,147,2,22517.001280,1926.111795,hintandextended,lora,180 +on3,0,0,24,1,0,0,4320.000000,147,0,3117.001280,1782.240410,hintandextended,lora,180 +on0,1,11,24,0,0,0,4634.208960,148,0,-1.000000,2135.289728,hintandextended,lora,180 +on7,0,0,24,1,0,1365,4405.001280,148,0,27311.001280,1816.241126,hintandextended,lora,180 +on2,0,0,24,1,0,607,4367.001280,148,0,12822.001280,1772.400922,hintandextended,lora,180 +on11,0,0,24,1,0,3494,4374.001280,148,0,71220.001280,1775.200717,hintandextended,lora,180 +on1,0,0,26,1,0,994,4821.603840,148,2,16093.603840,1954.241946,hintandextended,lora,180 +on5,0,0,25,1,0,716,4656.603840,148,1,12982.603840,1945.889946,hintandextended,lora,180 +on3,0,0,25,1,0,878,4500.000000,148,1,15932.001280,1830.735795,hintandextended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,hintandextended,lora,180 +on12,0,0,24,1,0,1618,4478.001280,148,0,30820.001280,1910.081741,hintandextended,lora,180 +on8,0,0,24,1,0,360,4320.000000,148,0,9544.001280,1776.320614,hintandextended,lora,180 +on9,0,0,24,1,0,985,4385.001280,148,0,20919.001280,1800.081126,hintandextended,lora,180 +on6,0,0,24,1,0,1627,4320.000000,148,0,34317.001280,1784.480410,hintandextended,lora,180 +on10,0,0,26,1,0,1284,4680.000000,148,2,24601.001280,1901.440000,hintandextended,lora,180 +on7,0,0,26,1,0,1333,4834.000000,149,4,23724.003840,1964.319795,hintandextended,lora,180 +on6,0,0,29,1,0,1315,5220.000000,149,5,23564.001280,2181.471181,hintandextended,lora,180 +on9,0,0,26,1,0,299,4821.603840,149,2,6506.603840,2007.393946,hintandextended,lora,180 +on5,0,0,24,1,0,144,4458.000000,149,1,6345.001280,1833.823795,hintandextended,lora,180 +on1,0,0,26,1,0,857,4820.003840,149,2,12843.003840,1976.481536,hintandextended,lora,180 +on11,0,0,24,1,0,0,4320.000000,149,0,3300.001280,1756.384000,hintandextended,lora,180 +on4,0,0,27,1,0,1454,4860.000000,149,3,26931.001280,2041.343590,hintandextended,lora,180 +on3,0,0,27,1,0,569,4860.000000,149,4,12683.001280,2007.727386,hintandextended,lora,180 +on10,0,0,26,1,0,721,4680.000000,149,2,16277.001280,1962.447795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4936.216640,149,0,-1.000000,2281.691162,hintandextended,lora,180 +on12,0,0,25,1,0,852,4500.000000,149,1,20802.001280,1857.280000,hintandextended,lora,180 +on2,0,0,27,1,0,986,5001.603840,149,3,16438.603840,2054.625946,hintandextended,lora,180 +on8,0,0,25,1,0,336,4500.000000,149,1,9600.001280,1846.720000,hintandextended,lora,180 +on8,0,0,25,1,0,813,4640.003840,150,1,13969.003840,1881.809741,hintandextended,lora,180 +on4,0,0,28,1,0,1150,5040.000000,150,4,24918.001280,2165.967590,hintandextended,lora,180 +on11,0,0,24,1,0,631,4391.001280,150,0,13809.001280,1782.000922,hintandextended,lora,180 +on2,0,0,27,1,0,968,5000.003840,150,3,15103.003840,2049.377741,hintandextended,lora,180 +on9,0,0,24,1,0,407,4347.001280,150,0,9033.001280,1764.400717,hintandextended,lora,180 +on1,0,0,24,1,0,1380,4420.001280,150,0,28655.001280,1822.240717,hintandextended,lora,180 +on3,0,0,25,1,0,1173,4706.003840,150,2,21154.003840,1921.761946,hintandextended,lora,180 +on12,0,0,24,1,0,360,4320.000000,150,0,9202.001280,1777.728000,hintandextended,lora,180 +on5,0,0,25,1,0,1745,4500.000000,150,1,35050.001280,1837.600000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4889.012800,150,0,-1.000000,2262.808806,hintandextended,lora,180 +on10,0,0,25,1,0,836,4516.000000,150,2,14943.001280,1863.680000,hintandextended,lora,180 +on6,0,0,26,1,0,1063,4680.000000,150,2,20994.001280,1905.216205,hintandextended,lora,180 +on7,0,0,25,1,0,1340,4500.000000,150,1,30889.001280,1870.080000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4812.212800,151,0,-1.000000,2232.089421,hintandextended,lora,180 +on8,0,0,25,1,0,275,4575.003840,151,1,5776.003840,1869.681946,hintandextended,lora,180 +on7,0,0,24,1,0,691,4626.603840,151,1,13894.603840,1876.241946,hintandextended,lora,180 +on10,0,0,24,1,0,0,4320.000000,151,0,462.001280,1810.368410,hintandextended,lora,180 +on12,0,0,26,1,0,635,4680.000000,151,2,8723.001280,1900.751795,hintandextended,lora,180 +on4,0,0,25,1,0,634,4500.000000,151,1,13733.001280,1889.535590,hintandextended,lora,180 +on2,0,0,26,1,0,634,4821.603840,151,2,8884.603840,1984.385536,hintandextended,lora,180 +on9,0,0,25,1,0,1076,4500.000000,151,1,20243.001280,1828.800000,hintandextended,lora,180 +on6,0,0,26,1,0,1713,4680.000000,151,3,33793.001280,1932.639795,hintandextended,lora,180 +on1,0,0,25,1,0,1405,4500.000000,151,1,28648.001280,1844.704205,hintandextended,lora,180 +on3,0,0,24,1,0,351,4471.001280,151,0,5616.001280,1814.000922,hintandextended,lora,180 +on11,0,0,24,1,0,766,4346.001280,151,0,15331.001280,1764.000717,hintandextended,lora,180 +on5,0,0,25,1,0,1517,4500.000000,151,1,31854.001280,1834.880205,hintandextended,lora,180 +on7,0,0,24,1,0,227,4347.001280,152,0,4583.001280,1781.840922,hintandextended,lora,180 +on3,0,0,27,1,0,1035,4860.000000,152,3,24769.001280,2050.783181,hintandextended,lora,180 +on5,0,0,26,1,0,1160,4821.603840,152,2,24930.603840,2044.769741,hintandextended,lora,180 +on10,0,0,26,1,0,868,4680.000000,152,2,15199.001280,1956.399795,hintandextended,lora,180 +on12,0,0,24,1,0,976,4422.001280,152,1,20754.001280,1794.400922,hintandextended,lora,180 +on11,0,0,25,1,0,723,4640.003840,152,1,14367.003840,1930.145741,hintandextended,lora,180 +on9,0,0,26,1,0,1345,4820.003840,152,2,20914.003840,1957.169741,hintandextended,lora,180 +on8,0,0,24,1,0,360,4320.000000,152,0,10114.001280,1781.824205,hintandextended,lora,180 +on4,0,0,28,1,0,1553,5040.000000,152,4,26338.001280,2084.927386,hintandextended,lora,180 +on0,1,12,24,0,0,0,4942.219200,152,0,-1.000000,2284.092186,hintandextended,lora,180 +on2,0,0,24,1,0,635,4395.001280,152,0,14207.001280,1783.600717,hintandextended,lora,180 +on1,0,0,25,1,0,1477,4500.000000,152,2,34265.602560,1845.008410,hintandextended,lora,180 +on6,0,0,26,1,0,931,4820.003840,152,2,15359.003840,2045.345741,hintandextended,lora,180 +on12,0,0,26,1,0,2310,4821.603840,153,2,42739.603840,1992.322150,hintandextended,lora,180 +on5,0,0,25,1,0,2160,4500.000000,153,1,42578.001280,1881.888205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4616.210240,153,0,-1.000000,2153.690240,hintandextended,lora,180 +on6,0,0,25,1,0,4087,4500.000000,153,1,81456.001280,1833.120000,hintandextended,lora,180 +on7,0,0,24,1,0,3592,4472.001280,153,0,69359.001280,1837.760717,hintandextended,lora,180 +on11,0,0,25,1,0,826,4586.603840,153,1,17234.603840,1893.314355,hintandextended,lora,180 +on4,0,0,24,1,0,2289,4429.001280,153,0,46398.001280,1812.400922,hintandextended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,153,0,26211.001280,1753.600205,hintandextended,lora,180 +on3,0,0,24,1,0,751,4331.001280,153,0,17074.001280,1778.320922,hintandextended,lora,180 +on9,0,0,24,1,0,900,4320.000000,153,1,18567.001280,1835.840000,hintandextended,lora,180 +on8,0,0,24,1,0,400,4340.001280,153,0,9542.001280,1791.041126,hintandextended,lora,180 +on2,0,0,24,1,0,241,4361.001280,153,0,5600.001280,1792.881126,hintandextended,lora,180 +on10,0,0,26,1,0,2340,4680.000000,153,2,48082.001280,1983.680205,hintandextended,lora,180 +on11,0,0,24,1,0,135,4329.000000,154,1,5734.001280,1761.680000,hintandextended,lora,180 +on5,0,0,25,1,0,11,4500.000000,154,1,3425.603840,1855.632000,hintandextended,lora,180 +on2,0,0,24,1,0,387,4327.003840,154,0,9054.003840,1813.682150,hintandextended,lora,180 +on12,0,0,26,1,0,907,4820.003840,154,2,16793.003840,2011.202150,hintandextended,lora,180 +on6,0,0,27,1,0,787,4860.000000,154,3,13702.001280,2021.151590,hintandextended,lora,180 +on9,0,0,25,1,0,651,4591.003840,154,1,13862.003840,1890.642150,hintandextended,lora,180 +on7,0,0,26,1,0,696,4772.000000,154,3,16633.001280,2001.567590,hintandextended,lora,180 +on0,1,11,24,0,0,0,5155.620480,154,0,-1.000000,2343.854131,hintandextended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,154,0,34565.001280,1753.600410,hintandextended,lora,180 +on1,0,0,25,1,0,516,4500.000000,154,1,8894.001280,1860.960614,hintandextended,lora,180 +on8,0,0,25,0,0,4238,4614.000000,154,2,-1.000000,1893.104205,hintandextended,lora,180 +on3,0,0,25,1,0,453,4640.003840,154,1,5894.003840,1881.601946,hintandextended,lora,180 +on4,0,0,24,1,0,35,4335.001280,154,0,3265.001280,1782.160717,hintandextended,lora,180 +on1,0,0,27,1,0,1283,4860.000000,155,3,27207.001280,2021.087181,hintandextended,lora,180 +on3,0,0,26,1,0,1647,4680.000000,155,2,31153.001280,1903.951590,hintandextended,lora,180 +on5,0,0,24,1,0,965,4365.001280,155,0,20374.001280,1771.600717,hintandextended,lora,180 +on6,0,0,25,1,0,540,4500.000000,155,1,14075.602560,1902.896410,hintandextended,lora,180 +on7,0,0,28,1,0,1880,5126.000000,155,5,32593.001280,2163.503386,hintandextended,lora,180 +on8,0,0,25,1,0,1534,4640.003840,155,1,27367.003840,1909.281741,hintandextended,lora,180 +on2,0,0,25,1,0,720,4500.000000,155,1,15882.602560,1841.744000,hintandextended,lora,180 +on9,0,0,24,1,0,0,4320.000000,155,0,2818.001280,1753.600205,hintandextended,lora,180 +on11,0,0,27,1,0,1808,5001.603840,155,3,31314.603840,2029.329536,hintandextended,lora,180 +on4,0,0,27,1,0,1304,5000.003840,155,3,22146.003840,2042.033536,hintandextended,lora,180 +on10,0,0,26,1,0,1175,4680.000000,155,2,21986.001280,1903.679590,hintandextended,lora,180 +on0,1,12,24,0,0,0,4961.820480,155,0,-1.000000,2291.932083,hintandextended,lora,180 +on12,0,0,25,1,0,1109,4640.003840,155,1,20534.003840,1881.601741,hintandextended,lora,180 +on2,0,0,25,1,0,652,4500.000000,156,1,15157.001280,1885.312000,hintandextended,lora,180 +on11,0,0,26,1,0,1174,4680.000000,156,2,22219.001280,1931.967386,hintandextended,lora,180 +on1,0,0,25,1,0,710,4500.000000,156,1,11875.001280,1835.327795,hintandextended,lora,180 +on10,0,0,24,1,0,548,4433.000000,156,1,12036.603840,1829.167590,hintandextended,lora,180 +on3,0,0,26,1,0,1265,4820.003840,156,3,28794.003840,2026.145741,hintandextended,lora,180 +on7,0,0,26,1,0,1130,4821.005120,156,2,21141.005120,2014.754458,hintandextended,lora,180 +on9,0,0,25,1,0,502,4622.603840,156,1,10096.603840,1906.273741,hintandextended,lora,180 +on8,0,0,24,1,0,435,4375.001280,156,0,9936.001280,1775.600717,hintandextended,lora,180 +on12,0,0,25,1,0,1327,4500.000000,156,1,28634.001280,1850.080000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5166.424320,156,0,-1.000000,2373.773619,hintandextended,lora,180 +on5,0,0,27,1,0,1366,5001.603840,156,3,22380.603840,2089.505331,hintandextended,lora,180 +on4,0,0,26,1,0,869,4821.603840,156,2,15318.603840,1957.489331,hintandextended,lora,180 +on6,0,0,24,1,0,919,4320.000000,156,0,20980.001280,1753.600205,hintandextended,lora,180 +on5,0,0,25,1,0,660,4500.000000,157,1,12772.001280,1845.568000,hintandextended,lora,180 +on6,0,0,28,1,0,1289,5040.000000,157,4,24085.001280,2118.047590,hintandextended,lora,180 +on0,1,12,24,0,0,0,5046.220480,157,0,-1.000000,2325.691878,hintandextended,lora,180 +on7,0,0,24,1,0,164,4464.001280,157,0,1994.001280,1811.200717,hintandextended,lora,180 +on10,0,0,27,1,0,1012,4860.000000,157,3,21513.001280,2027.167590,hintandextended,lora,180 +on3,0,0,25,1,0,851,4640.003840,157,1,12932.003840,1909.985741,hintandextended,lora,180 +on2,0,0,25,1,0,180,4500.000000,157,1,6213.001280,1860.352000,hintandextended,lora,180 +on1,0,0,25,1,0,454,4641.603840,157,2,8605.603840,1910.881741,hintandextended,lora,180 +on9,0,0,26,1,0,1313,4936.003840,157,3,21673.003840,2000.369741,hintandextended,lora,180 +on8,0,0,26,1,0,738,4680.000000,157,2,16387.001280,1922.879795,hintandextended,lora,180 +on4,0,0,25,1,0,100,4580.603840,157,1,2154.603840,1862.370150,hintandextended,lora,180 +on12,0,0,25,1,0,294,4500.000000,157,1,8444.001280,1857.135795,hintandextended,lora,180 +on11,0,0,25,1,0,994,4640.003840,157,1,16547.003840,1898.241741,hintandextended,lora,180 +on12,0,0,29,1,0,1216,5220.000000,158,5,23421.001280,2193.950976,hintandextended,lora,180 +on8,0,0,30,1,0,1627,5484.000000,158,6,23582.603840,2248.799386,hintandextended,lora,180 +on7,0,0,27,1,0,662,4860.000000,158,3,11718.001280,1978.767386,hintandextended,lora,180 +on10,0,0,25,1,0,0,4500.000000,158,1,2358.602560,1856.976205,hintandextended,lora,180 +on4,0,0,28,1,0,1119,5040.000000,158,4,21430.001280,2099.263795,hintandextended,lora,180 +on9,0,0,29,1,0,1355,5360.003840,158,5,21590.003840,2227.696922,hintandextended,lora,180 +on6,0,0,24,1,0,238,4358.001280,158,0,5350.001280,1796.928717,hintandextended,lora,180 +on2,0,0,26,1,0,1002,4828.003840,158,3,16188.003840,1984.097741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5050.221760,158,0,-1.000000,2327.292800,hintandextended,lora,180 +on1,0,0,25,1,0,566,4703.003840,158,2,10608.003840,1920.497536,hintandextended,lora,180 +on3,0,0,25,1,0,640,4545.000000,158,1,11878.003840,1850.047590,hintandextended,lora,180 +on11,0,0,25,1,0,455,4500.000000,158,1,10448.001280,1828.480000,hintandextended,lora,180 +on5,0,0,25,1,0,777,4656.000000,158,2,16028.001280,1921.535795,hintandextended,lora,180 +on10,0,0,24,1,0,1688,4368.001280,159,0,35883.001280,1772.800717,hintandextended,lora,180 +on8,0,0,25,1,0,191,4500.000000,159,1,4709.603840,1882.624614,hintandextended,lora,180 +on12,0,0,25,1,0,857,4669.000000,159,2,15892.001280,1947.119590,hintandextended,lora,180 +on2,0,0,30,1,0,1506,5541.603840,159,6,24022.603840,2367.840717,hintandextended,lora,180 +on11,0,0,25,1,0,0,4500.000000,159,1,866.602560,1861.648205,hintandextended,lora,180 +on6,0,0,25,1,0,13,4500.000000,159,2,4548.001280,1903.295386,hintandextended,lora,180 +on3,0,0,24,1,0,417,4357.001280,159,0,10279.001280,1768.400717,hintandextended,lora,180 +on5,0,0,26,1,0,887,4680.000000,159,2,20438.001280,1998.111590,hintandextended,lora,180 +on1,0,0,28,1,0,1216,5181.603840,159,5,20599.603840,2136.160717,hintandextended,lora,180 +on7,0,0,26,1,0,764,4820.003840,159,2,12108.003840,1975.409741,hintandextended,lora,180 +on4,0,0,25,1,0,1013,4500.000000,159,1,23861.001280,1854.303795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4884.815360,159,0,-1.000000,2261.132083,hintandextended,lora,180 +on9,0,0,24,1,0,638,4398.001280,159,0,11948.001280,1841.280922,hintandextended,lora,180 +on11,0,0,27,1,0,1279,4860.000000,160,3,23616.001280,2007.567386,hintandextended,lora,180 +on6,0,0,25,1,0,997,4640.003840,160,1,17206.003840,1881.601741,hintandextended,lora,180 +on7,0,0,27,1,0,898,4860.000000,160,5,11502.001280,1979.663590,hintandextended,lora,180 +on9,0,0,27,1,0,1488,4860.000000,160,3,25426.001280,2005.008205,hintandextended,lora,180 +on8,0,0,25,1,0,638,4500.000000,160,2,17046.001280,1841.343590,hintandextended,lora,180 +on4,0,0,24,1,0,1911,4411.001280,160,0,39351.001280,1794.640717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4814.012800,160,0,-1.000000,2232.809626,hintandextended,lora,180 +on3,0,0,24,1,0,0,4320.000000,160,0,2882.001280,1810.464410,hintandextended,lora,180 +on1,0,0,27,1,0,1137,4860.000000,160,3,18974.001280,2007.519590,hintandextended,lora,180 +on5,0,0,25,1,0,356,4500.000000,160,1,7146.001280,1825.600205,hintandextended,lora,180 +on12,0,0,25,1,0,928,4794.003840,160,3,19134.003840,2006.769946,hintandextended,lora,180 +on10,0,0,24,1,0,369,4320.000000,160,0,8038.001280,1753.600205,hintandextended,lora,180 +on2,0,0,28,1,0,1256,5180.003840,160,4,23776.003840,2174.049741,hintandextended,lora,180 +on2,0,0,24,1,0,1,4320.000000,161,0,1927.001280,1791.360410,hintandextended,lora,180 +on10,0,0,24,1,0,3436,4320.000000,161,0,69069.001280,1754.240000,hintandextended,lora,180 +on3,0,0,26,1,0,1024,4680.000000,161,2,19362.001280,1948.448000,hintandextended,lora,180 +on1,0,0,25,1,0,653,4500.000000,161,1,12975.001280,1863.040410,hintandextended,lora,180 +on5,0,0,25,1,0,1078,4500.000000,161,1,24443.001280,1869.744614,hintandextended,lora,180 +on7,0,0,24,1,0,525,4465.001280,161,0,9747.001280,1880.465126,hintandextended,lora,180 +on4,0,0,26,1,0,1353,4680.000000,161,2,25465.001280,1932.383795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4741.611520,161,0,-1.000000,2203.851366,hintandextended,lora,180 +on11,0,0,25,1,0,1340,4500.000000,161,1,29120.001280,1851.168000,hintandextended,lora,180 +on8,0,0,25,1,0,1406,4640.003840,161,1,24603.003840,1881.601741,hintandextended,lora,180 +on9,0,0,24,1,0,828,4408.001280,161,0,17833.001280,1824.161126,hintandextended,lora,180 +on6,0,0,26,1,0,1036,4820.003840,161,2,17993.003840,2020.594150,hintandextended,lora,180 +on12,0,0,26,1,0,1281,4971.603840,161,3,25626.603840,2049.026355,hintandextended,lora,180 +on11,0,0,24,1,0,773,4353.001280,162,0,14630.001280,1766.800717,hintandextended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,hintandextended,lora,180 +on6,0,0,26,1,0,490,4820.003840,162,2,6752.003840,1956.802150,hintandextended,lora,180 +on1,0,0,26,1,0,634,4821.603840,162,2,8337.603840,1962.401946,hintandextended,lora,180 +on2,0,0,26,1,0,545,4680.000000,162,2,8176.001280,1900.959795,hintandextended,lora,180 +on10,0,0,24,1,0,1260,4320.000000,162,0,26955.001280,1782.240410,hintandextended,lora,180 +on3,0,0,24,1,0,719,4479.001280,162,0,11155.001280,1874.481536,hintandextended,lora,180 +on7,0,0,24,1,0,209,4329.001280,162,0,6592.001280,1757.200922,hintandextended,lora,180 +on5,0,0,24,1,0,3763,4463.001280,162,0,73612.001280,1810.800717,hintandextended,lora,180 +on9,0,0,24,1,0,0,4320.000000,162,0,513.001280,1756.544000,hintandextended,lora,180 +on0,1,11,24,0,0,0,4884.611520,162,0,-1.000000,2235.449318,hintandextended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,162,0,37953.001280,1763.520205,hintandextended,lora,180 +on8,0,0,24,1,0,1139,4359.001280,162,0,25098.001280,1769.200717,hintandextended,lora,180 +on5,0,0,25,1,0,1195,4500.000000,163,1,25704.001280,1867.632000,hintandextended,lora,180 +on8,0,0,25,1,0,1600,4640.003840,163,1,29993.003840,1924.481946,hintandextended,lora,180 +on3,0,0,24,1,0,533,4473.001280,163,0,9968.001280,1814.800717,hintandextended,lora,180 +on1,0,0,26,1,0,1320,4821.603840,163,2,25865.603840,2023.361741,hintandextended,lora,180 +on2,0,0,25,1,0,736,4500.000000,163,1,17912.001280,1897.472410,hintandextended,lora,180 +on10,0,0,24,1,0,345,4465.001280,163,0,4772.001280,1851.409126,hintandextended,lora,180 +on0,1,12,24,0,0,0,4741.611520,163,0,-1.000000,2203.850138,hintandextended,lora,180 +on7,0,0,24,1,0,1668,4447.001280,163,1,35372.001280,1812.720717,hintandextended,lora,180 +on9,0,0,25,1,0,508,4646.000000,163,2,13263.001280,1938.464000,hintandextended,lora,180 +on6,0,0,26,1,0,1545,4680.000000,163,2,29833.001280,1935.199795,hintandextended,lora,180 +on12,0,0,24,1,0,1247,4467.001280,163,0,23605.001280,1843.760922,hintandextended,lora,180 +on4,0,0,25,1,0,2813,4500.000000,163,1,56969.001280,1857.440000,hintandextended,lora,180 +on11,0,0,25,1,0,233,4533.003840,163,1,4932.003840,1909.746150,hintandextended,lora,180 +on8,0,0,25,1,0,180,4500.000000,164,1,7033.602560,1885.264205,hintandextended,lora,180 +on12,0,0,26,1,0,879,4680.000000,164,2,16141.001280,1932.479795,hintandextended,lora,180 +on4,0,0,24,1,0,488,4428.003840,164,0,10393.003840,1852.065741,hintandextended,lora,180 +on11,0,0,26,1,0,735,4680.000000,164,2,13694.001280,1917.760205,hintandextended,lora,180 +on9,0,0,26,1,0,1174,4821.603840,164,2,21515.603840,2026.786150,hintandextended,lora,180 +on7,0,0,25,1,0,723,4500.000000,164,1,16301.003840,1875.744614,hintandextended,lora,180 +on0,1,12,24,0,0,0,5001.217920,164,0,-1.000000,2307.694131,hintandextended,lora,180 +on2,0,0,24,1,0,1379,4440.001280,164,1,27443.001280,1801.600717,hintandextended,lora,180 +on6,0,0,24,1,0,521,4461.001280,164,0,10233.001280,1838.640922,hintandextended,lora,180 +on10,0,0,24,1,0,3479,4359.001280,164,0,69830.001280,1769.200717,hintandextended,lora,180 +on3,0,0,25,1,0,866,4500.000000,164,1,21354.001280,1880.704000,hintandextended,lora,180 +on1,0,0,25,1,0,1913,4500.000000,164,1,37698.001280,1828.800000,hintandextended,lora,180 +on5,0,0,27,1,0,917,5000.003840,164,3,13854.003840,2052.641126,hintandextended,lora,180 +on5,0,0,26,1,0,684,4820.003840,165,2,12686.003840,2014.817946,hintandextended,lora,180 +on7,0,0,25,1,0,636,4500.000000,165,1,14975.001280,1885.439590,hintandextended,lora,180 +on10,0,0,24,1,0,2068,4367.001280,165,1,44797.001280,1795.920717,hintandextended,lora,180 +on3,0,0,24,1,0,3325,4385.001280,165,0,65275.001280,1808.240717,hintandextended,lora,180 +on8,0,0,24,1,0,479,4419.001280,165,0,9844.001280,1793.201331,hintandextended,lora,180 +on0,1,12,24,0,0,0,4897.612800,165,0,-1.000000,2266.251264,hintandextended,lora,180 +on4,0,0,24,1,0,1193,4386.000000,165,1,27821.001280,1813.344000,hintandextended,lora,180 +on12,0,0,25,1,0,1274,4500.000000,165,1,29673.001280,1881.312000,hintandextended,lora,180 +on11,0,0,24,1,0,585,4345.001280,165,0,12526.001280,1765.840922,hintandextended,lora,180 +on2,0,0,27,1,0,921,5001.000000,165,3,15136.603840,2095.808410,hintandextended,lora,180 +on9,0,0,27,1,0,861,4860.000000,165,3,20671.001280,2065.071795,hintandextended,lora,180 +on6,0,0,24,1,0,180,4320.000000,165,0,5340.001280,1790.464205,hintandextended,lora,180 +on1,0,0,25,1,0,463,4583.003840,165,1,10004.003840,1858.801946,hintandextended,lora,180 +on5,0,0,26,1,0,1296,4821.603840,166,2,24755.603840,2014.145741,hintandextended,lora,180 +on3,0,0,24,1,0,488,4547.003840,166,2,8648.003840,1883.281946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4742.211520,166,0,-1.000000,2204.090138,hintandextended,lora,180 +on2,0,0,26,1,0,746,4680.000000,166,2,15849.001280,1941.968205,hintandextended,lora,180 +on9,0,0,25,1,0,1718,4500.000000,166,1,35684.001280,1845.120000,hintandextended,lora,180 +on4,0,0,24,1,0,141,4441.001280,166,0,1230.001280,1830.128717,hintandextended,lora,180 +on1,0,0,25,1,0,144,4624.603840,166,1,1390.603840,1929.729741,hintandextended,lora,180 +on6,0,0,28,1,0,1198,5040.000000,166,6,24594.001280,2111.423181,hintandextended,lora,180 +on7,0,0,24,1,0,792,4369.000000,166,1,18861.001280,1818.864205,hintandextended,lora,180 +on11,0,0,25,1,0,338,4500.000000,166,1,6383.001280,1830.528000,hintandextended,lora,180 +on10,0,0,26,1,0,454,4680.000000,166,2,8488.001280,1982.623590,hintandextended,lora,180 +on12,0,0,26,1,0,536,4680.000000,166,3,12668.001280,1919.199181,hintandextended,lora,180 +on8,0,0,25,1,0,1611,4500.000000,166,1,31566.001280,1833.440000,hintandextended,lora,180 +on9,0,0,26,1,0,519,4680.000000,167,2,8138.001280,1903.839795,hintandextended,lora,180 +on1,0,0,24,1,0,287,4407.001280,167,0,6013.001280,1788.400717,hintandextended,lora,180 +on10,0,0,24,1,0,1114,4334.001280,167,0,24548.001280,1787.840922,hintandextended,lora,180 +on11,0,0,25,1,0,675,4500.000000,167,1,15333.001280,1857.024000,hintandextended,lora,180 +on4,0,0,24,1,0,51,4351.001280,167,0,2372.001280,1794.384717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4883.815360,167,0,-1.000000,2260.731264,hintandextended,lora,180 +on2,0,0,24,1,0,1635,4320.000000,167,0,33020.001280,1782.240205,hintandextended,lora,180 +on5,0,0,25,1,0,166,4646.603840,167,1,2532.603840,1893.474150,hintandextended,lora,180 +on12,0,0,26,1,0,800,4821.603840,167,2,12673.603840,1957.809741,hintandextended,lora,180 +on8,0,0,26,1,0,1053,4821.603840,167,2,15494.603840,2011.521946,hintandextended,lora,180 +on7,0,0,25,1,0,2012,4500.000000,167,1,42572.001280,1881.120000,hintandextended,lora,180 +on3,0,0,25,1,0,473,4593.003840,167,1,8298.003840,1924.785536,hintandextended,lora,180 +on6,0,0,27,1,0,728,4860.000000,167,3,12512.001280,2054.207386,hintandextended,lora,180 +on11,0,0,24,1,0,1608,4468.001280,168,0,29595.001280,1812.800717,hintandextended,lora,180 +on2,0,0,25,1,0,1492,4532.603840,168,1,29755.603840,1841.729536,hintandextended,lora,180 +on6,0,0,24,1,0,900,4320.000000,168,0,21282.001280,1770.400000,hintandextended,lora,180 +on5,0,0,24,1,0,360,4320.000000,168,0,8901.001280,1756.800205,hintandextended,lora,180 +on12,0,0,25,1,0,553,4500.000000,168,1,11258.603840,1886.928819,hintandextended,lora,180 +on1,0,0,24,1,0,639,4399.001280,168,0,11098.001280,1785.200717,hintandextended,lora,180 +on9,0,0,25,1,0,421,4500.000000,168,2,8730.001280,1833.920205,hintandextended,lora,180 +on10,0,0,24,1,0,1688,4368.001280,168,0,33164.001280,1772.800717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4752.208960,168,0,-1.000000,2208.088090,hintandextended,lora,180 +on7,0,0,24,1,0,1946,4446.001280,168,0,37146.001280,1828.800717,hintandextended,lora,180 +on4,0,0,25,1,0,1968,4500.000000,168,1,43012.001280,1877.439795,hintandextended,lora,180 +on3,0,0,25,1,0,346,4500.000000,168,1,5485.001280,1825.600205,hintandextended,lora,180 +on8,0,0,24,1,0,154,4454.001280,168,0,559.001280,1835.584717,hintandextended,lora,180 +on4,0,0,26,1,0,907,4820.003840,169,2,13666.003840,1956.641331,hintandextended,lora,180 +on6,0,0,24,1,0,2036,4356.001280,169,0,40723.001280,1796.640717,hintandextended,lora,180 +on11,0,0,25,1,0,2514,4500.000000,169,1,48350.001280,1828.800000,hintandextended,lora,180 +on12,0,0,27,1,0,1129,5000.003840,169,3,17951.003840,2085.873536,hintandextended,lora,180 +on7,0,0,24,1,0,173,4473.001280,169,0,1697.001280,1814.800717,hintandextended,lora,180 +on1,0,0,24,1,0,268,4388.001280,169,0,4606.001280,1804.609126,hintandextended,lora,180 +on5,0,0,25,1,0,953,4533.603840,169,1,20713.603840,1865.121946,hintandextended,lora,180 +on9,0,0,26,1,0,1106,4680.000000,169,2,20552.001280,1903.743590,hintandextended,lora,180 +on2,0,0,24,1,0,445,4549.003840,169,1,9534.003840,1901.362355,hintandextended,lora,180 +on0,1,12,24,0,0,0,4881.615360,169,0,-1.000000,2259.851674,hintandextended,lora,180 +on3,0,0,24,1,0,696,4456.001280,169,0,13506.001280,1808.000717,hintandextended,lora,180 +on10,0,0,27,1,0,930,4860.000000,169,3,17791.001280,2024.736000,hintandextended,lora,180 +on8,0,0,25,1,0,463,4500.000000,169,1,9374.001280,1832.368205,hintandextended,lora,180 +on9,0,0,27,1,0,1182,4860.000000,170,4,23230.001280,2034.079181,hintandextended,lora,180 +on10,0,0,26,1,0,468,4680.000000,170,2,9875.001280,1903.423795,hintandextended,lora,180 +on5,0,0,31,1,0,1835,5580.000000,170,8,27239.001280,2305.870362,hintandextended,lora,180 +on1,0,0,27,1,0,1187,5013.603840,170,4,23391.603840,2068.049331,hintandextended,lora,180 +on8,0,0,25,1,0,128,4500.000000,170,1,4854.001280,1869.344000,hintandextended,lora,180 +on12,0,0,25,1,0,633,4640.003840,170,1,10035.003840,1881.601741,hintandextended,lora,180 +on7,0,0,24,1,0,558,4320.000000,170,0,11154.001280,1759.840000,hintandextended,lora,180 +on11,0,0,24,1,0,0,4320.000000,170,0,699.001280,1764.160205,hintandextended,lora,180 +on4,0,0,27,1,0,1072,4860.000000,170,3,17935.001280,2009.599181,hintandextended,lora,180 +on3,0,0,26,1,0,807,4820.003840,170,2,11314.003840,2010.625741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4887.616640,170,0,-1.000000,2262.251162,hintandextended,lora,180 +on6,0,0,28,1,0,1079,5040.000000,170,4,20151.001280,2091.407795,hintandextended,lora,180 +on2,0,0,28,1,0,1055,5180.003840,170,4,18095.003840,2185.377126,hintandextended,lora,180 +on4,0,0,26,1,0,924,4820.003840,171,2,17381.003840,1993.457536,hintandextended,lora,180 +on6,0,0,25,1,0,0,4500.000000,171,1,1820.602560,1854.032614,hintandextended,lora,180 +on3,0,0,28,1,0,1349,5180.003840,171,5,22740.003840,2174.560922,hintandextended,lora,180 +on5,0,0,25,1,0,473,4500.000000,171,1,13306.001280,1828.480000,hintandextended,lora,180 +on7,0,0,24,1,0,237,4357.001280,171,0,4828.001280,1768.400717,hintandextended,lora,180 +on11,0,0,25,1,0,347,4500.000000,171,1,7779.001280,1853.824205,hintandextended,lora,180 +on8,0,0,27,1,0,1435,5031.000000,171,5,29399.001280,2124.383795,hintandextended,lora,180 +on9,0,0,25,1,0,761,4640.003840,171,2,13466.003840,1918.561741,hintandextended,lora,180 +on2,0,0,27,1,0,1144,4986.000000,171,4,26498.001280,2133.135590,hintandextended,lora,180 +on10,0,0,26,1,0,650,4680.000000,171,2,17221.001280,1957.247795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4773.614080,171,0,-1.000000,2216.650138,hintandextended,lora,180 +on1,0,0,24,1,0,1183,4403.001280,171,0,22580.001280,1815.440717,hintandextended,lora,180 +on12,0,0,27,1,0,1151,4860.000000,171,3,18815.001280,2007.407590,hintandextended,lora,180 +on10,0,0,24,1,0,639,4399.001280,172,0,11939.001280,1794.864717,hintandextended,lora,180 +on5,0,0,25,1,0,833,4500.000000,172,1,17593.001280,1843.904205,hintandextended,lora,180 +on12,0,0,24,1,0,1466,4326.001280,172,0,30297.001280,1756.000717,hintandextended,lora,180 +on2,0,0,25,1,0,1617,4500.000000,172,1,32710.001280,1854.448410,hintandextended,lora,180 +on0,1,12,24,0,0,0,4751.008960,172,0,-1.000000,2207.607270,hintandextended,lora,180 +on8,0,0,25,1,0,1719,4640.003840,172,1,30457.003840,1881.601741,hintandextended,lora,180 +on11,0,0,24,1,0,1244,4464.001280,172,0,24638.001280,1811.200717,hintandextended,lora,180 +on7,0,0,28,1,0,1930,5040.000000,172,6,39277.001280,2116.847795,hintandextended,lora,180 +on4,0,0,25,1,0,1014,4500.000000,172,1,21452.001280,1825.600205,hintandextended,lora,180 +on9,0,0,24,1,0,180,4320.000000,172,0,5038.001280,1753.600205,hintandextended,lora,180 +on1,0,0,24,1,0,114,4414.001280,172,0,1032.001280,1791.840717,hintandextended,lora,180 +on3,0,0,26,1,0,1236,4680.000000,172,3,26204.001280,1948.272000,hintandextended,lora,180 +on6,0,0,25,1,0,1353,4640.003840,172,1,24798.003840,1881.601741,hintandextended,lora,180 +on9,0,0,25,1,0,1341,4500.000000,173,1,27904.001280,1828.800000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4904.617920,173,0,-1.000000,2269.051059,hintandextended,lora,180 +on11,0,0,25,1,0,339,4500.000000,173,1,9289.001280,1828.592000,hintandextended,lora,180 +on7,0,0,25,1,0,813,4640.003840,173,1,12922.003840,1910.241741,hintandextended,lora,180 +on1,0,0,27,1,0,772,4860.000000,173,3,17142.001280,1999.807590,hintandextended,lora,180 +on8,0,0,25,1,0,1071,4500.000000,173,1,21184.001280,1828.640000,hintandextended,lora,180 +on3,0,0,25,1,0,499,4640.003840,173,1,9449.003840,1898.721741,hintandextended,lora,180 +on10,0,0,25,1,0,0,4500.000000,173,1,1858.602560,1883.344205,hintandextended,lora,180 +on6,0,0,27,1,0,1013,5000.003840,173,4,17302.003840,2060.065536,hintandextended,lora,180 +on12,0,0,25,1,0,672,4577.000000,173,2,12762.001280,1889.328000,hintandextended,lora,180 +on5,0,0,25,1,0,170,4500.000000,173,1,3888.001280,1857.024000,hintandextended,lora,180 +on2,0,0,29,1,0,1479,5220.000000,173,5,23397.001280,2179.999795,hintandextended,lora,180 +on4,0,0,29,1,0,1288,5360.003840,173,5,21344.003840,2204.753331,hintandextended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,hintandextended,lora,180 +on3,0,0,26,1,0,1586,4680.000000,174,2,29301.001280,1976.032000,hintandextended,lora,180 +on6,0,0,24,1,0,2891,4320.000000,174,0,61078.001280,1782.240205,hintandextended,lora,180 +on1,0,0,24,1,0,444,4384.001280,174,0,7797.001280,1779.200922,hintandextended,lora,180 +on12,0,0,24,1,0,900,4320.000000,174,0,20017.001280,1817.280614,hintandextended,lora,180 +on5,0,0,25,1,0,1114,4500.000000,174,2,28089.001280,1852.000000,hintandextended,lora,180 +on4,0,0,25,1,0,1800,4500.000000,174,2,37271.602560,1942.928819,hintandextended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,174,0,46026.001280,1782.240410,hintandextended,lora,180 +on10,0,0,25,1,0,1258,4500.000000,174,1,24100.001280,1882.944819,hintandextended,lora,180 +on11,0,0,24,1,0,627,4387.001280,174,0,12257.001280,1780.400717,hintandextended,lora,180 +on9,0,0,24,1,0,164,4464.001280,174,0,559.001280,1834.881331,hintandextended,lora,180 +on0,1,11,24,0,0,0,4550.607680,174,0,-1.000000,2101.849421,hintandextended,lora,180 +on2,0,0,25,1,0,1277,4500.000000,174,1,28249.003840,1825.600410,hintandextended,lora,180 +on10,0,0,26,1,0,458,4680.000000,175,2,10545.001280,1955.728000,hintandextended,lora,180 +on8,0,0,25,1,0,348,4640.003840,175,1,6748.003840,1908.353741,hintandextended,lora,180 +on6,0,0,24,1,0,448,4388.003840,175,0,10705.003840,1783.265741,hintandextended,lora,180 +on5,0,0,24,1,0,207,4327.001280,175,0,6588.001280,1780.720717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5070.620480,175,0,-1.000000,2335.451674,hintandextended,lora,180 +on12,0,0,25,1,0,730,4640.003840,175,1,13826.003840,1902.881741,hintandextended,lora,180 +on2,0,0,24,1,0,724,4320.000000,175,0,17630.003840,1753.600205,hintandextended,lora,180 +on7,0,0,24,1,0,659,4419.001280,175,0,13666.001280,1800.720717,hintandextended,lora,180 +on3,0,0,29,1,0,1327,5220.000000,175,5,23852.001280,2190.959386,hintandextended,lora,180 +on11,0,0,27,1,0,1022,4889.000000,175,4,17470.001280,1992.751386,hintandextended,lora,180 +on1,0,0,24,1,0,0,4320.000000,175,0,3427.001280,1784.928000,hintandextended,lora,180 +on4,0,0,30,1,0,1427,5426.000000,175,6,19098.603840,2217.599386,hintandextended,lora,180 +on9,0,0,27,1,0,1129,4860.000000,175,3,18937.001280,2005.103181,hintandextended,lora,180 +on5,0,0,27,1,0,526,5000.003840,176,3,9115.003840,2136.993946,hintandextended,lora,180 +on3,0,0,25,1,0,452,4640.003840,176,1,5961.003840,1909.985741,hintandextended,lora,180 +on12,0,0,24,1,0,132,4432.001280,176,0,644.001280,1826.272717,hintandextended,lora,180 +on7,0,0,29,1,0,1195,5361.603840,176,5,21017.603840,2288.097536,hintandextended,lora,180 +on6,0,0,24,1,0,615,4375.001280,176,0,12961.001280,1803.824717,hintandextended,lora,180 +on11,0,0,26,1,0,387,4680.000000,176,2,8955.001280,1908.047795,hintandextended,lora,180 +on9,0,0,26,1,0,908,4680.000000,176,2,20856.001280,1944.223590,hintandextended,lora,180 +on10,0,0,25,1,0,894,4500.000000,176,1,17954.001280,1828.640000,hintandextended,lora,180 +on8,0,0,24,1,0,0,4320.000000,176,0,814.001280,1754.624000,hintandextended,lora,180 +on2,0,0,25,1,0,334,4500.000000,176,1,5801.001280,1835.680000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5031.616640,176,0,-1.000000,2319.850342,hintandextended,lora,180 +on1,0,0,30,1,0,1627,5400.000000,176,6,23216.001280,2219.519181,hintandextended,lora,180 +on4,0,0,25,1,0,962,4640.003840,176,1,18114.003840,1889.761741,hintandextended,lora,180 +on10,0,0,24,1,0,95,4395.001280,177,0,429.001280,1839.344717,hintandextended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,177,0,51297.001280,1753.600205,hintandextended,lora,180 +on6,0,0,25,1,0,227,4527.603840,177,1,5973.603840,1865.074355,hintandextended,lora,180 +on7,0,0,24,1,0,1173,4393.001280,177,0,23534.001280,1811.440922,hintandextended,lora,180 +on8,0,0,27,1,0,1420,5037.000000,177,5,34406.001280,2188.047590,hintandextended,lora,180 +on12,0,0,24,1,0,360,4320.000000,177,0,7818.001280,1816.864614,hintandextended,lora,180 +on4,0,0,24,1,0,273,4419.001280,177,1,5813.001280,1844.721126,hintandextended,lora,180 +on9,0,0,26,1,0,1156,4820.003840,177,2,21088.003840,1987.729331,hintandextended,lora,180 +on5,0,0,25,1,0,869,4500.000000,177,1,20928.001280,1878.304205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4691.608960,177,0,-1.000000,2183.850342,hintandextended,lora,180 +on1,0,0,26,1,0,1382,4680.000000,177,2,30588.001280,1976.000205,hintandextended,lora,180 +on11,0,0,26,1,0,813,4680.000000,177,3,16627.001280,1969.119590,hintandextended,lora,180 +on3,0,0,25,1,0,651,4500.000000,177,1,14201.001280,1886.624000,hintandextended,lora,180 +on10,0,0,26,1,0,793,4680.000000,178,2,14903.002560,1917.599590,hintandextended,lora,180 +on1,0,0,24,1,0,287,4407.001280,178,0,4757.001280,1816.784922,hintandextended,lora,180 +on3,0,0,25,1,0,1343,4500.000000,178,1,30381.001280,1901.600000,hintandextended,lora,180 +on12,0,0,25,1,0,254,4554.603840,178,1,4917.603840,1849.250150,hintandextended,lora,180 +on2,0,0,26,1,0,1392,4821.603840,178,2,25572.603840,1967.041741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.215360,178,0,-1.000000,2260.090854,hintandextended,lora,180 +on7,0,0,27,1,0,1450,4860.000000,178,3,25411.001280,2028.863386,hintandextended,lora,180 +on5,0,0,29,1,0,1348,5360.003840,178,6,22622.003840,2279.536922,hintandextended,lora,180 +on6,0,0,26,1,0,746,4680.000000,178,2,13276.001280,1904.048000,hintandextended,lora,180 +on9,0,0,24,1,0,620,4380.003840,178,0,13436.003840,1777.601741,hintandextended,lora,180 +on8,0,0,24,1,0,387,4327.001280,178,0,10325.001280,1756.400717,hintandextended,lora,180 +on11,0,0,26,1,0,858,4695.000000,178,3,20511.001280,1958.847590,hintandextended,lora,180 +on4,0,0,27,1,0,1105,4860.000000,178,3,22462.001280,2014.191590,hintandextended,lora,180 +on3,0,0,27,1,0,1388,5006.003840,179,4,23868.003840,2073.473536,hintandextended,lora,180 +on12,0,0,27,1,0,1284,4914.000000,179,4,23708.001280,2030.176205,hintandextended,lora,180 +on4,0,0,25,1,0,391,4500.000000,179,1,12437.001280,1870.943590,hintandextended,lora,180 +on5,0,0,27,1,0,877,5000.003840,179,4,17559.003840,2103.777331,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.015360,179,0,-1.000000,2259.212902,hintandextended,lora,180 +on9,0,0,24,1,0,22,4322.001280,179,0,3410.001280,1827.105126,hintandextended,lora,180 +on1,0,0,25,1,0,332,4500.000000,179,1,5976.001280,1832.640819,hintandextended,lora,180 +on8,0,0,28,1,0,984,5180.003840,179,4,19015.003840,2189.921331,hintandextended,lora,180 +on2,0,0,24,1,0,674,4434.003840,179,0,12597.003840,1816.801946,hintandextended,lora,180 +on11,0,0,25,1,0,896,4500.000000,179,1,17399.001280,1828.384205,hintandextended,lora,180 +on7,0,0,26,1,0,817,4680.000000,179,2,18855.001280,1983.232205,hintandextended,lora,180 +on10,0,0,24,1,0,401,4341.001280,179,0,8480.001280,1789.201331,hintandextended,lora,180 +on6,0,0,24,1,0,3649,4349.001280,179,0,74350.001280,1765.200717,hintandextended,lora,180 +on1,0,0,24,1,0,0,4320.000000,180,0,3561.001280,1753.600205,hintandextended,lora,180 +on4,0,0,24,1,0,630,4391.001280,180,1,13177.001280,1839.025126,hintandextended,lora,180 +on2,0,0,25,1,0,3559,4544.001280,180,3,78695.001280,1935.728512,hintandextended,lora,180 +on5,0,0,25,1,0,294,4594.603840,180,1,5829.603840,1902.913741,hintandextended,lora,180 +on3,0,0,27,1,0,2281,4978.000000,180,4,50366.001280,2127.679795,hintandextended,lora,180 +on7,0,0,24,1,0,125,4425.001280,180,0,3383.001280,1795.601126,hintandextended,lora,180 +on10,0,0,25,1,0,3385,4500.000000,180,1,67959.001280,1834.400205,hintandextended,lora,180 +on8,0,0,24,1,0,423,4363.001280,180,0,9919.001280,1770.800717,hintandextended,lora,180 +on6,0,0,25,1,0,813,4640.003840,180,1,13337.003840,1910.241946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4907.610240,180,0,-1.000000,2270.250650,hintandextended,lora,180 +on9,0,0,25,1,0,860,4500.000000,180,1,17032.001280,1857.440410,hintandextended,lora,180 +on12,0,0,26,1,0,1467,4680.000000,180,2,27682.001280,1929.856410,hintandextended,lora,180 +on11,0,0,24,1,0,351,4471.001280,180,0,5669.001280,1858.545741,hintandextended,lora,180 +on12,0,0,24,1,0,115,4415.001280,181,0,2814.001280,1820.240512,hintandextended,lora,180 +on5,0,0,25,1,0,900,4500.000000,181,1,17080.001280,1828.544000,hintandextended,lora,180 +on2,0,0,25,1,0,80,4560.603840,181,1,2974.603840,1878.530970,hintandextended,lora,180 +on4,0,0,25,1,0,540,4500.000000,181,1,11520.602560,1842.032410,hintandextended,lora,180 +on1,0,0,24,1,0,900,4320.000000,181,0,19263.001280,1782.240410,hintandextended,lora,180 +on10,0,0,25,1,0,1672,4500.000000,181,1,35379.001280,1841.280205,hintandextended,lora,180 +on11,0,0,27,1,0,1572,4860.000000,181,3,31025.001280,2040.383795,hintandextended,lora,180 +on0,1,11,24,0,0,0,4935.812800,181,0,-1.000000,2255.931878,hintandextended,lora,180 +on9,0,0,24,1,0,1355,4395.001280,181,0,27674.001280,1829.361126,hintandextended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,hintandextended,lora,180 +on7,0,0,24,1,0,1151,4371.001280,181,0,24201.001280,1795.920717,hintandextended,lora,180 +on8,0,0,24,1,0,360,4320.000000,181,0,8030.001280,1782.240410,hintandextended,lora,180 +on6,0,0,26,1,0,995,4821.603840,181,2,17241.603840,2052.802150,hintandextended,lora,180 +on8,0,0,25,1,0,1539,4500.000000,182,2,33024.001280,1866.880000,hintandextended,lora,180 +on5,0,0,24,1,0,635,4395.001280,182,0,14054.001280,1791.440922,hintandextended,lora,180 +on6,0,0,24,1,0,1143,4363.001280,182,0,23540.001280,1770.800717,hintandextended,lora,180 +on3,0,0,25,1,0,586,4526.603840,182,1,14214.603840,1862.210150,hintandextended,lora,180 +on7,0,0,25,1,0,1954,4500.000000,182,1,39449.001280,1832.800000,hintandextended,lora,180 +on4,0,0,25,1,0,2234,4500.000000,182,1,46185.001280,1857.440000,hintandextended,lora,180 +on1,0,0,25,1,0,833,4500.000000,182,1,19251.001280,1825.600205,hintandextended,lora,180 +on12,0,0,25,1,0,1486,4500.000000,182,1,31804.001280,1825.600205,hintandextended,lora,180 +on9,0,0,24,1,0,62,4362.001280,182,0,3221.001280,1818.465126,hintandextended,lora,180 +on11,0,0,26,1,0,2058,4820.003840,182,2,39609.003840,2026.945536,hintandextended,lora,180 +on2,0,0,24,1,0,180,4320.000000,182,0,6542.001280,1776.960410,hintandextended,lora,180 +on0,1,12,24,0,0,0,4723.608960,182,0,-1.000000,2196.648090,hintandextended,lora,180 +on10,0,0,25,1,0,1932,4500.000000,182,1,41266.001280,1859.423795,hintandextended,lora,180 +on12,0,0,24,1,0,1037,4437.001280,183,0,21366.001280,1800.400717,hintandextended,lora,180 +on9,0,0,24,1,0,559,4331.001280,183,1,11862.001280,1789.264922,hintandextended,lora,180 +on7,0,0,26,1,0,2186,4680.000000,183,3,42528.001280,1939.360205,hintandextended,lora,180 +on6,0,0,25,1,0,2025,4500.000000,183,2,46443.001280,1904.223590,hintandextended,lora,180 +on5,0,0,25,1,0,2994,4500.000000,183,1,60387.001280,1833.920000,hintandextended,lora,180 +on8,0,0,24,1,0,540,4320.000000,183,0,12038.001280,1846.432205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4758.208960,183,0,-1.000000,2210.488909,hintandextended,lora,180 +on3,0,0,25,1,0,782,4500.000000,183,1,17266.001280,1911.264614,hintandextended,lora,180 +on10,0,0,25,1,0,2197,4517.603840,183,1,46604.603840,1889.921741,hintandextended,lora,180 +on1,0,0,24,1,0,370,4320.000000,183,0,7721.001280,1755.200000,hintandextended,lora,180 +on2,0,0,24,1,0,258,4378.001280,183,0,5400.001280,1790.305126,hintandextended,lora,180 +on11,0,0,25,1,0,1834,4500.000000,183,1,39136.001280,1855.712205,hintandextended,lora,180 +on4,0,0,26,1,0,1160,4820.603840,183,2,21526.603840,2008.578150,hintandextended,lora,180 +on9,0,0,27,1,0,1346,5000.003840,184,3,22734.003840,2026.177946,hintandextended,lora,180 +on2,0,0,24,1,0,1935,4435.001280,184,0,36662.001280,1799.600717,hintandextended,lora,180 +on7,0,0,28,1,0,1549,5181.603840,184,4,29704.603840,2209.617126,hintandextended,lora,180 +on5,0,0,24,1,0,720,4320.000000,184,0,17641.001280,1781.824205,hintandextended,lora,180 +on3,0,0,24,1,0,1367,4407.001280,184,0,26567.001280,1788.400717,hintandextended,lora,180 +on1,0,0,24,1,0,189,4320.000000,184,0,6354.001280,1753.600205,hintandextended,lora,180 +on10,0,0,25,1,0,1044,4500.000000,184,1,19623.001280,1828.640000,hintandextended,lora,180 +on6,0,0,25,1,0,1466,4640.003840,184,1,26727.003840,1881.809741,hintandextended,lora,180 +on4,0,0,27,1,0,1857,4860.000000,184,3,34802.001280,2007.679386,hintandextended,lora,180 +on12,0,0,26,1,0,1453,4680.000000,184,2,29543.001280,1955.903386,hintandextended,lora,180 +on11,0,0,26,1,0,1176,4820.003840,184,2,19783.003840,1953.601741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4907.616640,184,0,-1.000000,2270.250138,hintandextended,lora,180 +on8,0,0,24,1,0,1085,4320.000000,184,0,22574.001280,1784.320000,hintandextended,lora,180 +on10,0,0,26,1,0,1093,4680.000000,185,2,26930.001280,1982.335795,hintandextended,lora,180 +on2,0,0,24,1,0,24,4324.001280,185,0,2058.001280,1783.584922,hintandextended,lora,180 +on3,0,0,26,1,0,1306,4820.003840,185,2,24421.003840,1971.841946,hintandextended,lora,180 +on4,0,0,24,1,0,268,4441.001280,185,1,5826.001280,1802.000717,hintandextended,lora,180 +on9,0,0,25,1,0,1904,4500.000000,185,1,38312.001280,1866.528000,hintandextended,lora,180 +on11,0,0,25,1,0,72,4552.603840,185,1,2218.603840,1889.314355,hintandextended,lora,180 +on8,0,0,25,1,0,848,4500.000000,185,1,16340.001280,1836.960000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4881.215360,185,0,-1.000000,2259.690854,hintandextended,lora,180 +on12,0,0,24,1,0,705,4465.001280,185,0,14206.001280,1811.600922,hintandextended,lora,180 +on5,0,0,25,1,0,636,4576.603840,185,1,14366.603840,1884.769946,hintandextended,lora,180 +on7,0,0,24,1,0,977,4377.001280,185,0,19574.001280,1776.400717,hintandextended,lora,180 +on6,0,0,25,1,0,802,4562.003840,185,1,16500.003840,1871.265331,hintandextended,lora,180 +on1,0,0,26,1,0,1016,4680.000000,185,2,24261.001280,1957.759590,hintandextended,lora,180 +on3,0,0,25,1,0,453,4777.603840,186,2,5845.603840,1936.690150,hintandextended,lora,180 +on9,0,0,24,1,0,213,4333.001280,186,0,5685.001280,1785.104922,hintandextended,lora,180 +on12,0,0,26,1,0,984,4821.603840,186,2,18115.603840,1984.225946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4883.815360,186,0,-1.000000,2260.731674,hintandextended,lora,180 +on6,0,0,24,1,0,1554,4414.001280,186,0,30872.001280,1791.200717,hintandextended,lora,180 +on2,0,0,25,1,0,833,4500.000000,186,1,17954.001280,1828.543795,hintandextended,lora,180 +on5,0,0,24,1,0,94,4394.001280,186,0,2439.001280,1820.064922,hintandextended,lora,180 +on8,0,0,25,1,0,601,4541.603840,186,1,12389.603840,1877.186150,hintandextended,lora,180 +on1,0,0,25,1,0,495,4615.003840,186,1,10158.003840,1931.921946,hintandextended,lora,180 +on7,0,0,25,1,0,1078,4500.000000,186,1,22752.001280,1828.800000,hintandextended,lora,180 +on11,0,0,26,1,0,633,4680.000000,186,2,12228.001280,1903.743590,hintandextended,lora,180 +on4,0,0,25,1,0,474,4500.000000,186,1,9998.001280,1828.848410,hintandextended,lora,180 +on10,0,0,24,1,0,2453,4393.000000,186,1,52313.001280,1797.680000,hintandextended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,hintandextended,lora,180 +on8,0,0,26,1,0,446,4680.000000,187,2,10703.001280,1960.432000,hintandextended,lora,180 +on10,0,0,24,1,0,309,4429.001280,187,0,7024.001280,1797.200717,hintandextended,lora,180 +on12,0,0,25,1,0,1661,4500.000000,187,2,35716.001280,1883.360205,hintandextended,lora,180 +on9,0,0,25,1,0,120,4600.603840,187,1,2275.603840,1908.770355,hintandextended,lora,180 +on0,1,11,24,0,0,0,4942.215360,187,0,-1.000000,2258.493517,hintandextended,lora,180 +on3,0,0,24,1,0,4140,4320.000000,187,0,85089.000000,1753.600000,hintandextended,lora,180 +on4,0,0,27,1,0,728,5000.003840,187,3,10863.003840,2050.081536,hintandextended,lora,180 +on11,0,0,25,1,0,684,4500.000000,187,1,11932.001280,1911.904000,hintandextended,lora,180 +on2,0,0,28,1,0,789,5181.603840,187,4,12093.603840,2193.745536,hintandextended,lora,180 +on7,0,0,25,1,0,351,4640.003840,187,1,7184.003840,1907.746150,hintandextended,lora,180 +on6,0,0,24,1,0,136,4436.001280,187,0,2115.001280,1810.144922,hintandextended,lora,180 +on5,0,0,24,1,0,1446,4320.000000,187,0,30424.001280,1753.600410,hintandextended,lora,180 +on5,0,0,27,1,0,873,4860.000000,188,3,17112.001280,2016.495590,hintandextended,lora,180 +on8,0,0,25,1,0,1255,4500.000000,188,1,24710.001280,1842.560205,hintandextended,lora,180 +on3,0,0,28,1,0,1049,5180.003840,188,4,17272.003840,2188.705946,hintandextended,lora,180 +on1,0,0,26,1,0,813,4820.003840,188,2,14239.003840,2013.825946,hintandextended,lora,180 +on9,0,0,24,1,0,2874,4474.001280,188,0,55922.001280,1843.840717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4945.217920,188,0,-1.000000,2285.293312,hintandextended,lora,180 +on11,0,0,25,1,0,0,4500.000000,188,1,2547.602560,1844.624205,hintandextended,lora,180 +on10,0,0,25,1,0,840,4500.000000,188,1,20139.001280,1891.551386,hintandextended,lora,180 +on12,0,0,25,1,0,541,4640.003840,188,1,10100.003840,1933.858150,hintandextended,lora,180 +on6,0,0,26,1,0,648,4680.000000,188,2,14079.001280,1941.535795,hintandextended,lora,180 +on2,0,0,25,1,0,252,4500.000000,188,1,4786.001280,1828.800205,hintandextended,lora,180 +on7,0,0,24,1,0,464,4404.001280,188,0,9940.001280,1813.121126,hintandextended,lora,180 +on4,0,0,29,1,0,1320,5361.603840,188,5,20300.603840,2245.952717,hintandextended,lora,180 +on2,0,0,26,1,0,749,4680.000000,189,2,16575.001280,1932.159795,hintandextended,lora,180 +on11,0,0,24,1,0,1462,4322.001280,189,0,31492.001280,1768.160717,hintandextended,lora,180 +on7,0,0,27,1,0,1270,4860.000000,189,3,23810.001280,2005.455386,hintandextended,lora,180 +on0,1,12,24,0,0,0,4881.615360,189,0,-1.000000,2259.850650,hintandextended,lora,180 +on6,0,0,24,1,0,556,4320.000000,189,0,12757.003840,1782.879590,hintandextended,lora,180 +on1,0,0,24,1,0,0,4320.000000,189,0,2990.001280,1753.664410,hintandextended,lora,180 +on5,0,0,26,1,0,412,4680.000000,189,3,7830.001280,1916.127386,hintandextended,lora,180 +on10,0,0,27,1,0,627,5001.603840,189,3,7991.603840,2058.177946,hintandextended,lora,180 +on3,0,0,29,1,0,1449,5402.003840,189,7,19689.003840,2224.385126,hintandextended,lora,180 +on4,0,0,24,1,0,198,4320.000000,189,0,6665.001280,1753.760000,hintandextended,lora,180 +on9,0,0,26,1,0,936,4680.000000,189,2,19529.001280,1938.143795,hintandextended,lora,180 +on12,0,0,25,1,0,453,4640.003840,189,1,6825.003840,1881.601741,hintandextended,lora,180 +on8,0,0,25,1,0,508,4500.000000,189,1,12597.001280,1857.280000,hintandextended,lora,180 +on11,0,0,25,1,0,485,4500.000000,190,1,11352.001280,1857.280000,hintandextended,lora,180 +on8,0,0,24,1,0,1143,4363.001280,190,0,23314.001280,1770.800717,hintandextended,lora,180 +on10,0,0,24,1,0,1539,4399.001280,190,0,32177.001280,1813.584717,hintandextended,lora,180 +on7,0,0,25,1,0,180,4500.000000,190,1,5240.602560,1860.176000,hintandextended,lora,180 +on3,0,0,26,1,0,507,4821.603840,190,2,7757.603840,2014.465741,hintandextended,lora,180 +on12,0,0,26,1,0,1901,4820.603840,190,2,33599.603840,1988.609946,hintandextended,lora,180 +on9,0,0,25,1,0,348,4500.000000,190,1,7596.001280,1857.135795,hintandextended,lora,180 +on4,0,0,25,1,0,737,4500.000000,190,1,16415.603840,1847.040410,hintandextended,lora,180 +on2,0,0,24,1,0,1741,4421.001280,190,0,33439.001280,1822.640717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5079.419200,190,0,-1.000000,2338.971981,hintandextended,lora,180 +on1,0,0,26,1,0,657,4820.003840,190,2,11512.003840,1956.801536,hintandextended,lora,180 +on6,0,0,25,1,0,712,4500.000000,190,1,16254.001280,1828.543795,hintandextended,lora,180 +on5,0,0,24,1,0,900,4320.000000,190,0,18921.001280,1788.000000,hintandextended,lora,180 +on7,0,0,25,1,0,527,4500.000000,191,1,8749.001280,1841.600410,hintandextended,lora,180 +on11,0,0,25,1,0,659,4500.000000,191,1,12933.001280,1873.119795,hintandextended,lora,180 +on8,0,0,25,1,0,993,4640.003840,191,1,17892.003840,1916.961741,hintandextended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,hintandextended,lora,180 +on4,0,0,25,1,0,2093,4500.000000,191,1,40913.001280,1825.600410,hintandextended,lora,180 +on0,1,11,24,0,0,0,4743.211520,191,0,-1.000000,2178.892595,hintandextended,lora,180 +on5,0,0,24,1,0,312,4432.001280,191,0,3906.001280,1826.785126,hintandextended,lora,180 +on10,0,0,24,1,0,2550,4330.001280,191,0,52239.001280,1757.600717,hintandextended,lora,180 +on2,0,0,26,1,0,768,4821.603840,191,3,13094.603840,2024.290150,hintandextended,lora,180 +on9,0,0,24,1,0,832,4412.001280,191,0,17732.001280,1829.921126,hintandextended,lora,180 +on12,0,0,27,1,0,1088,4860.000000,191,3,19186.001280,2111.103590,hintandextended,lora,180 +on3,0,0,26,1,0,1123,4680.000000,191,2,24039.001280,1911.999590,hintandextended,lora,180 +on1,0,0,27,1,0,1095,4976.000000,191,3,19347.603840,2059.360205,hintandextended,lora,180 +on7,0,0,26,1,0,1191,4820.003840,192,2,22528.003840,2001.729741,hintandextended,lora,180 +on12,0,0,24,1,0,220,4350.201280,192,1,5852.201280,1765.680717,hintandextended,lora,180 +on9,0,0,28,1,0,1896,5040.000000,192,4,38967.001280,2116.831181,hintandextended,lora,180 +on8,0,0,25,1,0,1213,4500.000000,192,1,27998.001280,1828.688000,hintandextended,lora,180 +on6,0,0,24,1,0,104,4404.001280,192,0,1087.001280,1815.680717,hintandextended,lora,180 +on4,0,0,25,1,0,1539,4640.003840,192,1,28158.003840,1887.233741,hintandextended,lora,180 +on5,0,0,26,1,0,1751,4724.000000,192,3,35747.001280,1953.119590,hintandextended,lora,180 +on2,0,0,27,1,0,1450,4860.000000,192,3,31149.001280,2035.038771,hintandextended,lora,180 +on10,0,0,24,1,0,900,4320.000000,192,0,20016.001280,1769.023590,hintandextended,lora,180 +on3,0,0,25,1,0,1039,4500.000000,192,1,22368.001280,1828.848000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5024.616640,192,0,-1.000000,2317.050547,hintandextended,lora,180 +on11,0,0,29,1,0,2071,5361.603840,192,7,39128.603840,2231.281331,hintandextended,lora,180 +on1,0,0,26,1,0,1741,4820.003840,192,2,31309.003840,2004.833331,hintandextended,lora,180 +on9,0,0,26,1,0,1329,4680.000000,193,2,28671.001280,1946.239795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4889.212800,193,0,-1.000000,2262.891878,hintandextended,lora,180 +on8,0,0,25,1,0,1142,4500.000000,193,1,25177.001280,1875.200410,hintandextended,lora,180 +on6,0,0,27,1,0,809,4860.000000,193,3,18833.001280,2113.279795,hintandextended,lora,180 +on12,0,0,24,1,0,698,4458.001280,193,0,13455.001280,1837.441126,hintandextended,lora,180 +on10,0,0,25,1,0,533,4500.000000,193,1,9786.001280,1855.968000,hintandextended,lora,180 +on3,0,0,25,1,0,305,4500.000000,193,1,4467.001280,1825.808205,hintandextended,lora,180 +on7,0,0,25,1,0,508,4628.603840,193,1,9947.603840,1934.066150,hintandextended,lora,180 +on11,0,0,24,1,0,0,4320.000000,193,0,2512.001280,1782.400410,hintandextended,lora,180 +on4,0,0,25,1,0,2843,4500.000000,193,1,56770.001280,1828.800000,hintandextended,lora,180 +on1,0,0,26,1,0,1506,4858.603840,193,4,28832.603840,2049.729536,hintandextended,lora,180 +on5,0,0,32,1,0,1845,5760.000000,193,10,30154.001280,2433.694362,hintandextended,lora,180 +on2,0,0,25,1,0,813,4640.003840,193,1,13615.003840,1881.601946,hintandextended,lora,180 +on12,0,0,27,1,0,1081,5001.603840,194,3,21073.603840,2075.825536,hintandextended,lora,180 +on11,0,0,26,1,0,619,4680.000000,194,2,11046.001280,1935.647590,hintandextended,lora,180 +on4,0,0,28,1,0,809,5040.000000,194,4,17021.001280,2103.535386,hintandextended,lora,180 +on10,0,0,25,1,0,633,4640.003840,194,1,10482.003840,1881.601741,hintandextended,lora,180 +on8,0,0,25,1,0,412,4500.000000,194,1,10322.001280,1844.880000,hintandextended,lora,180 +on6,0,0,25,1,0,199,4500.000000,194,1,4888.003840,1825.600205,hintandextended,lora,180 +on1,0,0,24,1,0,48,4348.001280,194,0,2363.001280,1784.800717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5035.817920,194,0,-1.000000,2321.531264,hintandextended,lora,180 +on2,0,0,27,1,0,1305,4860.000000,194,4,23241.001280,1997.823386,hintandextended,lora,180 +on3,0,0,26,1,0,890,4680.000000,194,2,20912.001280,1951.391590,hintandextended,lora,180 +on7,0,0,25,1,0,226,4500.000000,194,1,4728.001280,1836.592000,hintandextended,lora,180 +on9,0,0,27,1,0,698,5001.603840,194,3,11207.603840,2111.697741,hintandextended,lora,180 +on5,0,0,25,1,0,0,4500.000000,194,1,2535.602560,1826.992410,hintandextended,lora,180 +on9,0,0,26,1,0,2217,4680.000000,195,3,45852.001280,1957.536410,hintandextended,lora,180 +on10,0,0,24,1,0,436,4376.001280,195,0,8255.001280,1830.625126,hintandextended,lora,180 +on5,0,0,24,1,0,540,4320.000000,195,0,12025.001280,1807.776410,hintandextended,lora,180 +on1,0,0,28,1,0,1540,5040.000000,195,4,25786.001280,2051.039590,hintandextended,lora,180 +on7,0,0,24,1,0,490,4555.603840,195,1,8415.603840,1932.850355,hintandextended,lora,180 +on12,0,0,24,1,0,4137,4477.001280,195,0,79860.001280,1816.400717,hintandextended,lora,180 +on11,0,0,25,1,0,842,4500.000000,195,1,17789.001280,1871.840205,hintandextended,lora,180 +on3,0,0,26,1,0,1026,4680.000000,195,2,20896.001280,1937.200410,hintandextended,lora,180 +on8,0,0,25,1,0,873,4633.003840,195,1,17949.003840,1925.042355,hintandextended,lora,180 +on0,1,12,24,0,0,0,4740.611520,195,0,-1.000000,2203.452595,hintandextended,lora,180 +on2,0,0,24,1,0,959,4359.003840,195,1,21056.003840,1788.722150,hintandextended,lora,180 +on6,0,0,25,1,0,1987,4500.000000,195,1,43117.001280,1859.520410,hintandextended,lora,180 +on4,0,0,24,1,0,1234,4454.001280,195,0,22322.001280,1835.840922,hintandextended,lora,180 +on3,0,0,24,1,0,209,4329.001280,196,0,4332.001280,1793.104307,hintandextended,lora,180 +on10,0,0,25,1,0,975,4640.003840,196,1,17229.003840,1911.073741,hintandextended,lora,180 +on9,0,0,26,1,0,996,4680.000000,196,2,20401.001280,1919.039795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4924.219200,196,0,-1.000000,2276.892595,hintandextended,lora,180 +on12,0,0,25,1,0,473,4500.000000,196,1,11541.001280,1857.280000,hintandextended,lora,180 +on4,0,0,28,1,0,1070,5040.000000,196,4,24325.001280,2140.207386,hintandextended,lora,180 +on11,0,0,27,1,0,1255,5001.005120,196,3,20562.005120,2040.481843,hintandextended,lora,180 +on2,0,0,25,1,0,340,4640.603840,196,1,4492.603840,1929.313946,hintandextended,lora,180 +on7,0,0,26,1,0,558,4820.003840,196,2,11701.003840,2048.673331,hintandextended,lora,180 +on8,0,0,25,1,0,360,4500.000000,196,2,8083.602560,1827.056205,hintandextended,lora,180 +on5,0,0,27,1,0,1471,4937.000000,196,4,25937.001280,2051.279181,hintandextended,lora,180 +on6,0,0,27,1,0,1514,4860.000000,196,4,30985.001280,2007.839590,hintandextended,lora,180 +on1,0,0,24,1,0,630,4371.000000,196,1,17069.001280,1796.368000,hintandextended,lora,180 +on6,0,0,25,1,0,2574,4500.000000,197,1,53539.001280,1847.680205,hintandextended,lora,180 +on10,0,0,25,1,0,840,4708.001280,197,3,12616.001280,1939.201126,hintandextended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,hintandextended,lora,180 +on11,0,0,24,1,0,938,4338.001280,197,0,18761.001280,1818.080717,hintandextended,lora,180 +on7,0,0,25,1,0,908,4500.000000,197,1,18921.603840,1859.695795,hintandextended,lora,180 +on1,0,0,25,1,0,1080,4500.000000,197,1,22517.602560,1828.848819,hintandextended,lora,180 +on4,0,0,24,1,0,1671,4351.001280,197,0,33033.001280,1769.360922,hintandextended,lora,180 +on3,0,0,25,1,0,473,4500.000000,197,1,12445.001280,1827.040410,hintandextended,lora,180 +on9,0,0,25,1,0,766,4500.000000,197,1,16034.001280,1920.864205,hintandextended,lora,180 +on2,0,0,24,1,0,360,4320.000000,197,0,10370.001280,1771.904410,hintandextended,lora,180 +on0,1,11,24,0,0,0,4908.811520,197,0,-1.000000,2245.131366,hintandextended,lora,180 +on5,0,0,25,1,0,180,4500.000000,197,1,6371.602560,1868.752819,hintandextended,lora,180 +on12,0,0,24,1,0,36,4336.001280,197,0,1973.001280,1769.440922,hintandextended,lora,180 +on2,0,0,27,1,0,744,4860.000000,198,3,15024.001280,2004.319795,hintandextended,lora,180 +on5,0,0,24,1,0,0,4320.000000,198,0,3159.001280,1759.104000,hintandextended,lora,180 +on9,0,0,25,1,0,452,4640.003840,198,1,4709.003840,1909.985741,hintandextended,lora,180 +on4,0,0,27,1,0,959,5000.003840,198,3,15184.003840,2078.497126,hintandextended,lora,180 +on0,1,12,24,0,0,0,5060.020480,198,0,-1.000000,2331.211674,hintandextended,lora,180 +on3,0,0,25,1,0,120,4500.000000,198,1,4549.001280,1873.456000,hintandextended,lora,180 +on11,0,0,25,1,0,1121,4803.003840,198,2,19360.003840,1953.201536,hintandextended,lora,180 +on7,0,0,26,1,0,448,4820.003840,198,2,9837.003840,2010.881741,hintandextended,lora,180 +on6,0,0,28,1,0,1198,5040.000000,198,4,19200.001280,2080.879590,hintandextended,lora,180 +on12,0,0,30,1,0,1490,5400.000000,198,6,23091.001280,2293.215590,hintandextended,lora,180 +on10,0,0,26,1,0,694,4820.003840,198,2,12220.003840,2002.385741,hintandextended,lora,180 +on8,0,0,27,1,0,663,4860.000000,198,3,12060.001280,1978.191590,hintandextended,lora,180 +on1,0,0,24,1,0,340,4483.000000,198,2,9677.001280,1874.304000,hintandextended,lora,180 +on9,0,0,26,1,0,1467,4680.000000,199,2,31228.001280,1932.367795,hintandextended,lora,180 +on5,0,0,24,1,0,180,4320.000000,199,0,6586.001280,1794.624410,hintandextended,lora,180 +on8,0,0,25,1,0,1315,4500.000000,199,1,28108.001280,1838.047795,hintandextended,lora,180 +on12,0,0,25,1,0,777,4537.603840,199,1,15817.603840,1890.994150,hintandextended,lora,180 +on6,0,0,25,1,0,539,4500.000000,199,1,10710.001280,1854.240205,hintandextended,lora,180 +on10,0,0,27,1,0,1731,4860.000000,199,3,32608.001280,2009.119590,hintandextended,lora,180 +on11,0,0,24,1,0,1112,4351.201280,199,1,22332.201280,1766.080717,hintandextended,lora,180 +on1,0,0,27,1,0,1580,5000.003840,199,3,31388.003840,2062.785126,hintandextended,lora,180 +on2,0,0,24,1,0,0,4320.000000,199,0,3315.001280,1753.600205,hintandextended,lora,180 +on4,0,0,24,1,0,680,4440.001280,199,0,11842.001280,1801.600922,hintandextended,lora,180 +on0,1,12,24,0,0,0,4951.614080,199,0,-1.000000,2287.849728,hintandextended,lora,180 +on7,0,0,24,1,0,793,4373.001280,199,0,15657.001280,1774.800922,hintandextended,lora,180 +on3,0,0,25,1,0,1265,4640.003840,199,1,28268.003840,1932.961741,hintandextended,lora,180 +on6,0,0,27,1,0,3422,5000.603840,200,4,66434.603840,2072.673946,hintandextended,lora,180 +on4,0,0,26,1,0,495,4680.000000,200,2,11895.001280,1932.687795,hintandextended,lora,180 +on9,0,0,25,1,0,2761,4500.000000,200,1,58748.001280,1865.183795,hintandextended,lora,180 +on1,0,0,25,1,0,2943,4500.000000,200,2,61449.001280,1844.320000,hintandextended,lora,180 +on8,0,0,25,1,0,133,4613.603840,200,1,3652.603840,1899.570560,hintandextended,lora,180 +on11,0,0,24,1,0,377,4320.000000,200,0,8638.001280,1753.920410,hintandextended,lora,180 +on10,0,0,25,1,0,487,4640.003840,200,2,8798.003840,1938.882150,hintandextended,lora,180 +on2,0,0,24,1,0,2700,4320.000000,200,0,55918.001280,1756.544000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4833.212800,200,0,-1.000000,2240.490854,hintandextended,lora,180 +on7,0,0,25,1,0,3448,4500.000000,200,1,72199.001280,1879.264000,hintandextended,lora,180 +on5,0,0,24,1,0,3310,4370.001280,200,0,66274.001280,1773.600717,hintandextended,lora,180 +on12,0,0,24,1,0,900,4320.000000,200,0,20458.001280,1756.800000,hintandextended,lora,180 +on3,0,0,24,1,0,111,4411.001280,200,0,3492.001280,1825.680922,hintandextended,lora,180 +on6,0,0,24,1,0,474,4320.000000,1,0,8298.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,210,4320.000000,1,0,4438.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,1,0,18289.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2390,4320.000000,1,0,47019.000000,1871.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,1,0,-1.000000,2013.350000,baseline,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,1,0,22636.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4296,4320.000000,1,0,-1.000000,1744.250000,baseline,nbiot,180 +on1,0,0,24,1,0,773,4320.000000,1,0,16300.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,367,4320.000000,1,0,8258.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,1,0,29232.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,314,4320.000000,1,0,4398.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2641,4320.000000,1,0,52295.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,1,0,859,4320.000000,2,0,16377.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,117,4320.000000,2,0,2963.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,995,4320.000000,2,0,20058.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2322,4320.000000,2,0,48708.000000,1776.750000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2160,4320.000000,2,0,45809.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3401,4320.000000,2,0,70403.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2130,4320.000000,2,0,45745.000000,1774.150000,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,2,0,3017.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2880,4320.000000,2,0,59869.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,2,0,-1.000000,2069.900000,baseline,nbiot,180 +on10,0,0,24,1,0,3060,4320.000000,2,0,62155.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2340,4320.000000,2,0,48781.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,3,0,22578.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,3,0,-1.000000,2074.450000,baseline,nbiot,180 +on4,0,0,24,1,0,421,4320.000000,3,0,9711.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,3,0,16412.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,63,4320.000000,3,0,1228.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,486,4320.000000,3,0,9751.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,478,4320.000000,3,0,9791.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,37,4320.000000,3,0,1268.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,3,0,18857.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,580,4320.000000,3,0,14105.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4222,4320.000000,3,0,-1.000000,2079.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3929,4320.000000,3,0,82555.000000,1774.800000,baseline,nbiot,180 +on12,0,0,24,1,0,564,4320.000000,4,0,10864.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3110,4320.000000,4,0,63887.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,4,0,10356.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2880,4320.000000,4,0,59189.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2181,4320.000000,4,0,45809.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,4,0,10974.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,4,0,17721.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,4,0,1028.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1068,4320.000000,4,0,22671.000000,1762.450000,baseline,nbiot,180 +on4,0,0,24,1,0,2964,4320.000000,4,0,59143.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,4,0,-1.000000,2058.200000,baseline,nbiot,180 +on8,0,0,24,1,0,12,4320.000000,4,0,988.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,4,0,1070.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,59,4320.000000,5,0,2108.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,5,0,-1.000000,2049.100000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,5,0,14255.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,17,4320.000000,5,0,2148.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2821,4320.000000,5,0,55154.000000,1759.850000,baseline,nbiot,180 +on3,0,0,24,1,0,1494,4320.000000,5,0,32046.000000,1770.250000,baseline,nbiot,180 +on1,0,0,24,0,0,4268,4320.000000,5,0,-1.000000,1863.200000,baseline,nbiot,180 +on11,0,0,24,1,0,199,4320.000000,5,0,5256.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,768,4320.000000,5,0,16227.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,5,0,16320.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,5,0,35378.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4315,4320.000000,5,0,-1.000000,1731.900000,baseline,nbiot,180 +on4,0,0,24,1,0,1553,4320.000000,5,0,32006.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,6,0,41254.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1177,4320.000000,6,0,24399.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,651,4320.000000,6,0,11662.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1620,4320.000000,6,0,33123.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1116,4320.000000,6,0,24439.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,930,4320.000000,6,0,20100.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,6,0,-1.000000,2052.350000,baseline,nbiot,180 +on2,0,0,24,1,0,3407,4320.000000,6,0,69117.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,6,0,17799.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,6,0,29016.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,28,4320.000000,6,0,2582.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,6,0,24484.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,193,4320.000000,6,0,3899.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,7,0,21453.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1554,4320.000000,7,0,32197.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3600,4320.000000,7,0,72378.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3240,4320.000000,7,0,67292.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2181,4320.000000,7,0,43827.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,299,4320.000000,7,0,4879.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,16,4320.000000,7,0,330.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,950,4320.000000,7,0,21334.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,282,4320.000000,7,0,4919.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1154,4320.000000,7,0,22394.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,7,0,5016.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1579,4320.000000,7,0,32157.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,7,0,-1.000000,2040.000000,baseline,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,8,0,14839.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,547,4320.000000,8,0,13260.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,277,4320.000000,8,0,5471.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,590,4320.000000,8,0,13304.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,8,0,-1.000000,2058.200000,baseline,nbiot,180 +on6,0,0,24,1,0,4130,4320.000000,8,0,83688.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1297,4320.000000,8,0,28655.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3847,4320.000000,8,0,78398.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2729,4320.000000,8,0,56251.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4270,4320.000000,8,0,-1.000000,1860.600000,baseline,nbiot,180 +on8,0,0,24,1,0,3730,4320.000000,8,0,73510.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3,4320.000000,8,0,1696.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2287,4320.000000,8,0,46653.000000,1756.600000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,9,0,2188.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,815,4320.000000,9,0,17299.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,41,4320.000000,9,0,2056.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,9,0,2110.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4298,4320.000000,9,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,715,4320.000000,9,0,17362.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,9,0,11448.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,9,0,-1.000000,1928.850000,baseline,nbiot,180 +on9,0,0,24,1,0,3960,4320.000000,9,0,81706.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1025,4320.000000,10,0,20426.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1376,4320.000000,10,0,26669.000000,1768.950000,baseline,nbiot,180 +on5,0,0,24,1,0,2724,4320.000000,10,0,54743.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,120,4320.000000,10,0,1976.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,671,4320.000000,10,0,13395.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2451,4320.000000,10,0,47011.000000,1772.850000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,10,0,5313.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,10,0,44998.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,10,0,-1.000000,2037.400000,baseline,nbiot,180 +on6,0,0,24,1,0,729,4320.000000,10,0,14735.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1902,4320.000000,10,0,36898.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,11,0,5886.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,11,0,62415.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3719,4320.000000,11,0,74748.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,11,0,-1.000000,2019.200000,baseline,nbiot,180 +on1,0,0,24,1,0,2677,4320.000000,11,0,56191.000000,1769.600000,baseline,nbiot,180 +on6,0,0,24,1,0,374,4320.000000,11,0,9017.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2210,4320.000000,11,0,46306.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,427,4320.000000,11,0,8977.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,11,0,51606.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,11,0,9062.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1597,4320.000000,11,0,35128.000000,1769.600000,baseline,nbiot,180 +on11,0,0,24,1,0,2264,4320.000000,12,0,46141.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,12,0,21097.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,12,0,1130.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2321,4320.000000,12,0,47970.000000,1848.250000,baseline,nbiot,180 +on5,0,0,24,1,0,4254,4320.000000,12,0,84130.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,4173,4320.000000,12,0,84090.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,12,0,-1.000000,2053.000000,baseline,nbiot,180 +on7,0,0,24,1,0,448,4320.000000,12,0,7890.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1901,4320.000000,12,0,38637.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,663,4320.000000,12,0,13741.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,12,0,23079.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,61,4320.000000,12,0,1071.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,559,4320.000000,12,0,13781.000000,1754.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,13,0,-1.000000,2002.950000,baseline,nbiot,180 +on2,0,0,24,1,0,2,4320.000000,13,0,2383.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1110,4320.000000,13,0,23313.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,979,4320.000000,13,0,21063.000000,1887.250000,baseline,nbiot,180 +on5,0,0,24,1,0,1155,4320.000000,13,0,23273.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,13,0,57965.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2397,4320.000000,13,0,47475.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3211,4320.000000,13,0,65280.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4290,4320.000000,13,0,-1.000000,1748.150000,baseline,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,13,0,11998.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4314,4320.000000,13,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,775,4320.000000,14,0,14810.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,14,0,8652.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,68,4320.000000,14,0,2943.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,14,0,37924.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,14,0,47913.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,14,0,3031.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,14,0,59912.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,14,0,19428.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,75,4320.000000,14,0,2903.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,14,0,-1.000000,2004.250000,baseline,nbiot,180 +on9,0,0,24,0,0,4297,4320.000000,14,0,-1.000000,1962.000000,baseline,nbiot,180 +on6,0,0,24,1,0,37,4320.000000,14,0,2983.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,15,0,-1.000000,2074.450000,baseline,nbiot,180 +on11,0,0,24,1,0,993,4320.000000,15,0,19024.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1217,4320.000000,15,0,24912.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1651,4320.000000,15,0,32905.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,15,0,25023.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,275,4320.000000,15,0,5851.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,15,0,13506.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3549,4320.000000,15,0,73085.000000,1893.100000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,15,0,5915.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,611,4320.000000,15,0,13464.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3431,4320.000000,15,0,68985.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,15,0,17832.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,15,0,19069.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,16,0,2810.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,16,0,4431.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2115,4320.000000,16,0,44088.000000,1984.100000,baseline,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,16,0,16011.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2970,4320.000000,16,0,60759.000000,1757.250000,baseline,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,16,0,18456.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,16,0,-1.000000,2104.350000,baseline,nbiot,180 +on9,0,0,24,1,0,3254,4320.000000,16,0,66290.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3138,4320.000000,16,0,61873.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,16,0,21729.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1472,4320.000000,16,0,29587.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,1,0,26,4320.000000,16,0,2707.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,16,0,21843.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3437,4320.000000,17,0,71411.000000,1780.000000,baseline,nbiot,180 +on8,0,0,24,1,0,117,4320.000000,17,0,1670.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,17,0,-1.000000,2080.300000,baseline,nbiot,180 +on5,0,0,24,1,0,1585,4320.000000,17,0,33172.000000,1777.400000,baseline,nbiot,180 +on4,0,0,24,1,0,754,4320.000000,17,0,16360.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,595,4320.000000,17,0,12657.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,17,0,37626.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1265,4320.000000,17,0,25860.000000,1770.900000,baseline,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,17,0,33114.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,903,4320.000000,17,0,21359.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1490,4320.000000,17,0,30202.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,17,0,25820.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,611,4320.000000,18,0,13010.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3382,4320.000000,18,0,69930.000000,1779.350000,baseline,nbiot,180 +on7,0,0,24,0,0,4299,4320.000000,18,0,-1.000000,1845.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,18,0,-1.000000,2054.950000,baseline,nbiot,180 +on1,0,0,24,1,0,4140,4320.000000,18,0,84226.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2700,4320.000000,18,0,57342.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,859,4320.000000,18,0,15719.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,472,4320.000000,18,0,8934.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1145,4320.000000,18,0,22542.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,590,4320.000000,18,0,13050.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2094,4320.000000,18,0,45855.000000,1798.850000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,18,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4308,4320.000000,18,0,-1.000000,1845.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2628,4320.000000,19,0,52323.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,285,4320.000000,19,0,5593.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,181,4320.000000,19,0,5633.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3977,4320.000000,19,0,81001.000000,1783.250000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,19,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4307,4320.000000,19,0,-1.000000,1737.100000,baseline,nbiot,180 +on9,0,0,24,0,0,4286,4320.000000,19,0,-1.000000,1750.750000,baseline,nbiot,180 +on3,0,0,24,1,0,2426,4320.000000,19,0,49532.000000,1871.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4293,4320.000000,19,0,-1.000000,1746.200000,baseline,nbiot,180 +on12,0,0,24,1,0,1915,4320.000000,19,0,36382.000000,1754.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,19,0,-1.000000,2040.000000,baseline,nbiot,180 +on4,0,0,24,1,0,685,4320.000000,19,0,15606.000000,1871.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2036,4320.000000,19,0,39940.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,20,0,8140.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2700,4320.000000,20,0,56187.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,541,4320.000000,20,0,12874.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,800,4320.000000,20,0,14844.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,20,0,12962.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,546,4320.000000,20,0,12914.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,20,0,4765.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,20,0,-1.000000,2021.150000,baseline,nbiot,180 +on4,0,0,24,1,0,2064,4320.000000,20,0,42781.000000,1772.200000,baseline,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,20,0,26028.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4298,4320.000000,20,0,-1.000000,1826.150000,baseline,nbiot,180 +on12,0,0,24,1,0,2730,4320.000000,20,0,56072.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2471,4320.000000,21,0,50146.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4287,4320.000000,21,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1835,4320.000000,21,0,39188.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,541,4320.000000,21,0,12201.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,21,0,8526.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1323,4320.000000,21,0,28118.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1935,4320.000000,21,0,39228.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,134,4320.000000,21,0,705.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1284,4320.000000,21,0,28158.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,21,0,21061.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,114,4320.000000,21,0,745.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,21,0,-1.000000,2036.100000,baseline,nbiot,180 +on3,0,0,24,1,0,2355,4320.000000,21,0,50186.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,231,4320.000000,22,0,5973.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3600,4320.000000,22,0,75105.000000,1754.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,22,0,-1.000000,1965.900000,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,22,0,9145.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,22,0,31273.000000,1754.000000,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,1,4320.000000,22,0,842.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,787,4320.000000,22,0,15167.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,22,0,9213.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3738,4320.000000,22,0,78767.000000,1897.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,23,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,23,0,41500.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3150,4320.000000,23,0,62738.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,27,4320.000000,23,0,3485.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1148,4320.000000,23,0,24958.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,23,0,8012.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,23,0,-1.000000,2089.400000,baseline,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,23,0,33161.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,870,4320.000000,23,0,21367.000000,1774.150000,baseline,nbiot,180 +on12,0,0,24,1,0,3703,4320.000000,23,0,72485.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3744,4320.000000,23,0,76972.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1871,4320.000000,23,0,37786.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1888,4320.000000,23,0,37826.000000,1881.400000,baseline,nbiot,180 +on5,0,0,24,1,0,1347,4320.000000,24,0,26779.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,553,4320.000000,24,0,11881.000000,1758.550000,baseline,nbiot,180 +on8,0,0,24,1,0,545,4320.000000,24,0,11841.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,24,0,-1.000000,2044.550000,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,24,0,5816.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3960,4320.000000,24,0,80084.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,747,4320.000000,24,0,15498.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,25,4320.000000,24,0,1232.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2160,4320.000000,24,0,46390.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,24,0,23034.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,640,4320.000000,24,0,11921.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,24,0,7558.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3247,4320.000000,24,0,66637.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,25,0,30586.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,25,0,8735.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,25,0,-1.000000,2030.250000,baseline,nbiot,180 +on2,0,0,24,1,0,2802,4320.000000,25,0,57320.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,25,0,1391.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,25,0,8799.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1328,4320.000000,25,0,28143.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3358,4320.000000,25,0,67655.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1080,4320.000000,25,0,23945.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,369,4320.000000,25,0,8667.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,25,0,23894.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,696,4320.000000,25,0,16790.000000,1770.250000,baseline,nbiot,180 +on4,0,0,24,1,0,1098,4320.000000,26,0,21907.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,26,0,-1.000000,2028.950000,baseline,nbiot,180 +on8,0,0,24,1,0,418,4320.000000,26,0,9577.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,26,0,9635.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2293,4320.000000,26,0,46353.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,4054,4320.000000,26,0,80380.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4311,4320.000000,26,0,-1.000000,1845.000000,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,26,0,1591.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,26,0,6855.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,610,4320.000000,26,0,14051.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1387,4320.000000,26,0,25808.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2416,4320.000000,26,0,48953.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,26,0,16760.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,27,0,29123.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,27,0,12479.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,27,0,-1.000000,2064.700000,baseline,nbiot,180 +on10,0,0,24,1,0,181,4320.000000,27,0,3957.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,27,0,12557.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3285,4320.000000,27,0,66273.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2579,4320.000000,27,0,51671.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1162,4320.000000,27,0,23486.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,27,0,47842.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,27,0,9436.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,918,4320.000000,27,0,19963.000000,1775.450000,baseline,nbiot,180 +on2,0,0,24,1,0,3322,4320.000000,27,0,66313.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2698,4320.000000,27,0,56532.000000,1755.950000,baseline,nbiot,180 +on6,0,0,24,1,0,568,4320.000000,28,0,13736.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4304,4320.000000,28,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,28,0,34738.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,28,0,2437.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3019,4320.000000,28,0,60268.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,28,0,-1.000000,2040.650000,baseline,nbiot,180 +on3,0,0,24,1,0,2797,4320.000000,28,0,56777.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,28,0,28025.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1429,4320.000000,28,0,31314.000000,1761.800000,baseline,nbiot,180 +on5,0,0,24,1,0,4016,4320.000000,28,0,80907.000000,1770.900000,baseline,nbiot,180 +on8,0,0,24,0,0,4295,4320.000000,28,0,-1.000000,1845.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,28,0,23705.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2891,4320.000000,28,0,60228.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1634,4320.000000,29,0,33773.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,29,0,14659.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1685,4320.000000,29,0,33733.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4300,4320.000000,29,0,-1.000000,1844.350000,baseline,nbiot,180 +on9,0,0,24,1,0,3780,4320.000000,29,0,79054.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4284,4320.000000,29,0,-1.000000,1752.050000,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,29,0,6592.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3240,4320.000000,29,0,65441.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,29,0,14551.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,642,4320.000000,29,0,11858.000000,1880.750000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,29,0,-1.000000,2017.250000,baseline,nbiot,180 +on6,0,0,24,1,0,2880,4320.000000,29,0,57882.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,30,0,42579.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,30,0,19100.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,30,0,11030.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,30,0,15306.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2642,4320.000000,30,0,52692.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,30,0,10291.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,30,0,1950.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,30,0,5534.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,30,0,52779.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,30,0,1991.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,30,0,-1.000000,2049.750000,baseline,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,30,0,24282.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3898,4320.000000,30,0,77686.000000,1763.750000,baseline,nbiot,180 +on12,0,0,24,1,0,1980,4320.000000,31,0,39658.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,31,0,-1.000000,2024.400000,baseline,nbiot,180 +on6,0,0,24,1,0,3240,4320.000000,31,0,66753.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1824,4320.000000,31,0,38654.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1086,4320.000000,31,0,24273.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2700,4320.000000,31,0,55688.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,62,4320.000000,31,0,762.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,31,0,12134.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,4085,4320.000000,31,0,81184.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,4041,4320.000000,31,0,81144.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3728,4320.000000,31,0,74973.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,31,0,4800.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2038,4320.000000,32,0,40986.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,32,0,16451.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3630,4320.000000,32,0,75333.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,32,0,1637.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,32,0,-1.000000,2020.500000,baseline,nbiot,180 +on4,0,0,24,1,0,1364,4320.000000,32,0,26865.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1729,4320.000000,32,0,34401.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,16,4320.000000,32,0,1677.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,960,4320.000000,32,0,18396.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,32,0,4199.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4308,4320.000000,32,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4284,4320.000000,32,0,-1.000000,1752.050000,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,32,0,10928.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3960,4320.000000,33,0,79826.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1126,4320.000000,33,0,22047.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,33,0,-1.000000,1991.250000,baseline,nbiot,180 +on10,0,0,24,1,0,404,4320.000000,33,0,9314.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,955,4320.000000,33,0,19675.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,33,0,13699.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,617,4320.000000,33,0,13625.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1307,4320.000000,33,0,28615.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,33,0,9449.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,33,0,29912.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,176,4320.000000,33,0,4175.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,34,0,32672.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1032,4320.000000,34,0,20138.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4276,4320.000000,34,0,-1.000000,1757.900000,baseline,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,34,0,63678.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3780,4320.000000,34,0,76105.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,990,4320.000000,34,0,20178.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,727,4320.000000,34,0,15478.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1458,4320.000000,34,0,31596.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3960,4320.000000,34,0,80753.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1664,4320.000000,34,0,32622.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,34,0,-1.000000,2035.450000,baseline,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,34,0,25550.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,35,0,6217.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1207,4320.000000,35,0,24548.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,35,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,4197,4320.000000,35,0,83919.000000,1988.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,35,0,-1.000000,2084.200000,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,35,0,6287.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,35,0,20252.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,35,0,15423.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3,4320.000000,35,0,3064.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,35,0,3162.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1930,4320.000000,35,0,41210.000000,1889.850000,baseline,nbiot,180 +on4,0,0,24,1,0,654,4320.000000,35,0,11443.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,192,4320.000000,35,0,6327.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2190,4320.000000,36,0,46052.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,160,4320.000000,36,0,4863.000000,1871.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,36,0,-1.000000,2062.100000,baseline,nbiot,180 +on12,0,0,24,1,0,1084,4320.000000,36,0,22906.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1114,4320.000000,36,0,22946.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2798,4320.000000,36,0,55617.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,36,0,1292.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,36,0,4823.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,36,0,46012.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2530,4320.000000,36,0,52904.000000,1881.400000,baseline,nbiot,180 +on10,0,0,24,1,0,1237,4320.000000,36,0,26940.000000,1775.450000,baseline,nbiot,180 +on11,0,0,24,1,0,1101,4320.000000,37,0,24407.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3887,4320.000000,37,0,77967.000000,1770.250000,baseline,nbiot,180 +on6,0,0,24,1,0,3233,4320.000000,37,0,66158.000000,1759.200000,baseline,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,37,0,13159.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2264,4320.000000,37,0,45496.000000,1858.650000,baseline,nbiot,180 +on1,0,0,24,1,0,1980,4320.000000,37,0,42891.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,37,0,-1.000000,2097.200000,baseline,nbiot,180 +on5,0,0,24,1,0,691,4320.000000,37,0,15986.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,37,0,9243.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1639,4320.000000,37,0,34031.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2695,4320.000000,37,0,54826.000000,1757.900000,baseline,nbiot,180 +on9,0,0,24,1,0,974,4320.000000,37,0,19386.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,37,0,36449.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4315,4320.000000,38,0,-1.000000,1845.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4308,4320.000000,38,0,-1.000000,1736.450000,baseline,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,38,0,9406.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,38,0,15014.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1620,4320.000000,38,0,33471.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,202,4320.000000,38,0,3859.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1841,4320.000000,38,0,38847.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3441,4320.000000,38,0,71740.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3516,4320.000000,38,0,71780.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3672,4320.000000,38,0,72333.000000,1774.150000,baseline,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,38,0,58296.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,370,4320.000000,38,0,9446.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,38,0,-1.000000,2020.500000,baseline,nbiot,180 +on6,0,0,24,0,0,4316,4320.000000,39,0,-1.000000,1731.250000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,39,0,12458.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,39,0,17024.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3065,4320.000000,39,0,64056.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3964,4320.000000,39,0,79931.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,725,4320.000000,39,0,16954.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4278,4320.000000,39,0,-1.000000,1865.800000,baseline,nbiot,180 +on4,0,0,24,1,0,2700,4320.000000,39,0,56266.000000,1754.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,39,0,-1.000000,1967.850000,baseline,nbiot,180 +on12,0,0,24,1,0,2880,4320.000000,39,0,59121.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,643,4320.000000,39,0,12383.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3138,4320.000000,40,0,63604.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4292,4320.000000,40,0,-1.000000,1747.500000,baseline,nbiot,180 +on9,0,0,24,0,0,4304,4320.000000,40,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2581,4320.000000,40,0,53132.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,600,4320.000000,40,0,13867.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1205,4320.000000,40,0,23215.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,40,0,-1.000000,2038.700000,baseline,nbiot,180 +on6,0,0,24,1,0,497,4320.000000,40,0,10260.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,72,4320.000000,40,0,3366.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,40,0,30772.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,4015,4320.000000,40,0,82406.000000,1774.150000,baseline,nbiot,180 +on3,0,0,24,1,0,2077,4320.000000,40,0,42544.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,40,0,37009.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,857,4320.000000,41,0,17485.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,41,0,38159.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,41,0,20666.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,125,4320.000000,41,0,1208.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2700,4320.000000,41,0,56527.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,787,4320.000000,41,0,17445.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1394,4320.000000,41,0,27522.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,41,0,-1.000000,1988.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,41,0,6608.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,41,0,1343.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2792,4320.000000,41,0,56469.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,42,0,56313.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1616,4320.000000,42,0,34638.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,278,4320.000000,42,0,4650.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1061,4320.000000,42,0,23301.000000,1871.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3314,4320.000000,42,0,65246.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,585,4320.000000,42,0,14092.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1085,4320.000000,42,0,23341.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1323,4320.000000,42,0,27134.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,42,0,-1.000000,2073.800000,baseline,nbiot,180 +on3,0,0,24,1,0,3646,4320.000000,42,0,74922.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,42,0,17834.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2552,4320.000000,42,0,53189.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,42,0,4721.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,611,4320.000000,43,0,11285.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4310,4320.000000,43,0,-1.000000,1845.000000,baseline,nbiot,180 +on9,0,0,24,1,0,878,4320.000000,43,0,19856.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3374,4320.000000,43,0,67226.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1164,4320.000000,43,0,22872.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,43,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,43,0,11409.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,43,0,19916.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3021,4320.000000,43,0,64279.000000,1780.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,43,0,-1.000000,2026.350000,baseline,nbiot,180 +on8,0,0,24,1,0,1473,4320.000000,43,0,29687.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3240,4320.000000,43,0,67355.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4296,4320.000000,43,0,-1.000000,1744.250000,baseline,nbiot,180 +on9,0,0,24,1,0,3080,4320.000000,44,0,63996.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1080,4320.000000,44,0,23847.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,44,0,17661.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,44,0,-1.000000,2040.650000,baseline,nbiot,180 +on8,0,0,24,1,0,3600,4320.000000,44,0,74310.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2473,4320.000000,44,0,47125.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,44,0,21343.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1632,4320.000000,44,0,32930.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,45,4320.000000,44,0,2533.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,995,4320.000000,44,0,21220.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,44,0,17552.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,44,0,52071.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,295,4320.000000,44,0,6005.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2289,4320.000000,45,0,45308.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1459,4320.000000,45,0,30915.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1180,4320.000000,45,0,22282.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,410,4320.000000,45,0,9018.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,45,0,34212.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,45,0,15873.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,45,0,25659.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,732,4320.000000,45,0,15761.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3240,4320.000000,45,0,68098.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1579,4320.000000,45,0,30875.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,45,0,-1.000000,1988.000000,baseline,nbiot,180 +on6,0,0,24,1,0,819,4320.000000,46,0,15290.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,377,4320.000000,46,0,9870.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,46,0,22183.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2405,4320.000000,46,0,47876.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1521,4320.000000,46,0,32226.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,46,0,9830.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,46,0,18295.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3060,4320.000000,46,0,62267.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1940,4320.000000,46,0,42151.000000,1988.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,46,0,-1.000000,2015.300000,baseline,nbiot,180 +on7,0,0,24,1,0,907,4320.000000,46,0,18335.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1265,4320.000000,47,0,26576.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,107,4320.000000,47,0,3162.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2520,4320.000000,47,0,50922.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1232,4320.000000,47,0,26536.000000,1772.850000,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,47,0,24801.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,186,4320.000000,47,0,6963.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,756,4320.000000,47,0,15539.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,809,4320.000000,47,0,15499.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,47,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,47,0,19980.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,47,0,39314.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3960,4320.000000,47,0,80305.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,47,0,-1.000000,2032.850000,baseline,nbiot,180 +on11,0,0,24,1,0,1267,4320.000000,48,0,27907.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,48,0,-1.000000,2038.700000,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,48,0,10520.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3613,4320.000000,48,0,72932.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,48,0,46150.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,48,0,4528.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,48,0,61869.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2256,4320.000000,48,0,46073.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2208,4320.000000,48,0,46033.000000,1867.750000,baseline,nbiot,180 +on1,0,0,24,1,0,185,4320.000000,48,0,4423.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4285,4320.000000,48,0,-1.000000,1751.400000,baseline,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,48,0,27867.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,290,4320.000000,48,0,4463.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,49,0,33708.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4282,4320.000000,49,0,-1.000000,1753.350000,baseline,nbiot,180 +on3,0,0,24,1,0,571,4320.000000,49,0,11946.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,345,4320.000000,49,0,7468.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,49,0,5482.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,49,0,43820.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1080,4320.000000,49,0,21873.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3326,4320.000000,49,0,65289.000000,1871.000000,baseline,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,49,0,20738.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,201,4320.000000,49,0,5522.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2168,4320.000000,49,0,43726.000000,1758.550000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,49,0,-1.000000,2072.500000,baseline,nbiot,180 +on1,0,0,24,1,0,787,4320.000000,49,0,16816.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1462,4320.000000,50,0,31394.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4291,4320.000000,50,0,-1.000000,1747.500000,baseline,nbiot,180 +on9,0,0,24,1,0,3250,4320.000000,50,0,67842.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1216,4320.000000,50,0,22392.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,50,0,14082.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1198,4320.000000,50,0,22432.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2520,4320.000000,50,0,52563.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,50,0,10297.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,50,0,28282.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,50,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1496,4320.000000,50,0,31434.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1841,4320.000000,50,0,36325.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,50,0,-1.000000,2007.500000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,51,0,-1.000000,2061.450000,baseline,nbiot,180 +on10,0,0,24,1,0,476,4320.000000,51,0,9046.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,790,4320.000000,51,0,14719.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,801,4320.000000,51,0,14679.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1568,4320.000000,51,0,31902.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1809,4320.000000,51,0,36403.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2580,4320.000000,51,0,51440.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,474,4320.000000,51,0,9086.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1716,4320.000000,51,0,32680.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,622,4320.000000,51,0,13170.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,495,4320.000000,51,0,9006.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,51,0,48766.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,51,0,14764.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4297,4320.000000,52,0,-1.000000,1845.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1835,4320.000000,52,0,37600.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,52,0,2546.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,215,4320.000000,52,0,6735.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,52,0,13904.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,52,0,17450.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3420,4320.000000,52,0,69944.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,301,4320.000000,52,0,6775.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2880,4320.000000,52,0,60624.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3448,4320.000000,52,0,69840.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,52,0,-1.000000,1977.600000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3600,4320.000000,53,0,75148.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1080,4320.000000,53,0,24061.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4251,4320.000000,53,0,-1.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1982,4320.000000,53,0,40754.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3213,4320.000000,53,0,66682.000000,1871.000000,baseline,nbiot,180 +on12,0,0,24,1,0,780,4320.000000,53,0,17292.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4264,4320.000000,53,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2698,4320.000000,53,0,56880.000000,1755.950000,baseline,nbiot,180 +on4,0,0,24,1,0,1678,4320.000000,53,0,33121.000000,1770.250000,baseline,nbiot,180 +on7,0,0,24,1,0,550,4320.000000,53,0,12172.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,753,4320.000000,53,0,17212.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,53,0,-1.000000,2082.250000,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,54,0,1940.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3665,4320.000000,54,0,73304.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,54,0,30971.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4302,4320.000000,54,0,-1.000000,1740.350000,baseline,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,54,0,45413.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2212,4320.000000,54,0,45350.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,576,4320.000000,54,0,12413.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,573,4320.000000,54,0,12453.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,54,0,24009.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,54,0,-1.000000,1974.350000,baseline,nbiot,180 +on10,0,0,24,1,0,3148,4320.000000,54,0,62403.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,673,4320.000000,55,0,12100.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3625,4320.000000,55,0,73525.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,206,4320.000000,55,0,4891.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2123,4320.000000,55,0,45205.000000,1778.700000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,542,4320.000000,55,0,12140.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,55,0,26086.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1781,4320.000000,55,0,38548.000000,1871.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,55,0,51572.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,55,0,12233.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2197,4320.000000,55,0,45100.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,55,0,29471.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,55,0,-1.000000,2051.700000,baseline,nbiot,180 +on5,0,0,24,1,0,3178,4320.000000,56,0,64369.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3341,4320.000000,56,0,65733.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3600,4320.000000,56,0,72254.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1839,4320.000000,56,0,37556.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2651,4320.000000,56,0,55760.000000,1787.150000,baseline,nbiot,180 +on8,0,0,24,1,0,904,4320.000000,56,0,18979.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,18,4320.000000,56,0,2228.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,56,0,6586.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3483,4320.000000,56,0,69132.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,56,0,2188.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3554,4320.000000,56,0,69092.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,740,4320.000000,56,0,15042.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,56,0,-1.000000,2077.050000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,57,0,-1.000000,2032.200000,baseline,nbiot,180 +on2,0,0,24,1,0,1459,4320.000000,57,0,30602.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2185,4320.000000,57,0,44766.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,57,0,2685.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4291,4320.000000,57,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,57,0,11849.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,57,0,7315.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1531,4320.000000,57,0,30642.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,57,0,7384.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3504,4320.000000,57,0,69109.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2123,4320.000000,57,0,44726.000000,1778.700000,baseline,nbiot,180 +on12,0,0,24,1,0,1887,4320.000000,57,0,38020.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2111,4320.000000,58,0,40142.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,35,4320.000000,58,0,2627.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3714,4320.000000,58,0,72247.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,746,4320.000000,58,0,15810.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1914,4320.000000,58,0,37542.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3066,4320.000000,58,0,64534.000000,1768.950000,baseline,nbiot,180 +on10,0,0,24,1,0,2102,4320.000000,58,0,45253.000000,1988.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,58,0,-1.000000,2106.300000,baseline,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,58,0,58603.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,853,4320.000000,58,0,15770.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3942,4320.000000,58,0,81034.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,1,0,315,4320.000000,58,0,4408.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,638,4320.000000,58,0,12142.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,59,0,17329.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,59,0,-1.000000,2059.500000,baseline,nbiot,180 +on3,0,0,24,1,0,779,4320.000000,59,0,17288.000000,1773.500000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,59,0,10383.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,81,4320.000000,59,0,2203.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,902,4320.000000,59,0,19930.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,300,4320.000000,59,0,6807.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3911,4320.000000,59,0,79024.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2340,4320.000000,59,0,49334.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1572,4320.000000,59,0,30906.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,917,4320.000000,59,0,19890.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,562,4320.000000,59,0,13051.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,59,0,13011.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1980,4320.000000,60,0,41544.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,392,4320.000000,60,0,9297.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,60,0,24377.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3077,4320.000000,60,0,62414.000000,1754.650000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,60,0,-1.000000,2014.000000,baseline,nbiot,180 +on3,0,0,24,1,0,619,4320.000000,60,0,11104.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3682,4320.000000,60,0,73911.000000,1755.950000,baseline,nbiot,180 +on2,0,0,24,0,0,4307,4320.000000,60,0,-1.000000,1737.100000,baseline,nbiot,180 +on1,0,0,24,0,0,4299,4320.000000,60,0,-1.000000,1845.000000,baseline,nbiot,180 +on4,0,0,24,1,0,778,4320.000000,60,0,17414.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3432,4320.000000,60,0,70709.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,111,4320.000000,60,0,867.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,399,4320.000000,60,0,9337.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,288,4320.000000,61,0,4112.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3240,4320.000000,61,0,66085.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,61,0,7894.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1543,4320.000000,61,0,30790.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,902,4320.000000,61,0,18251.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3644,4320.000000,61,0,75443.000000,1884.650000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,61,0,-1.000000,2056.900000,baseline,nbiot,180 +on12,0,0,24,0,0,4289,4320.000000,61,0,-1.000000,1848.250000,baseline,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,61,0,30904.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1208,4320.000000,61,0,24935.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,492,4320.000000,61,0,7820.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,367,4320.000000,61,0,7934.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2545,4320.000000,61,0,52548.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,200,4320.000000,62,0,5607.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,62,0,62157.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,729,4320.000000,62,0,14826.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3732,4320.000000,62,0,74881.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,884,4320.000000,62,0,20400.000000,1871.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,62,0,-1.000000,2051.050000,baseline,nbiot,180 +on4,0,0,24,1,0,3435,4320.000000,62,0,70747.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3076,4320.000000,62,0,62197.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,62,0,52150.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,5,4320.000000,62,0,3022.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,62,0,5672.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,9,4320.000000,62,0,2942.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,15,4320.000000,62,0,2982.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,63,0,57138.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3600,4320.000000,63,0,72922.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,63,0,28382.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,63,0,41177.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3562,4320.000000,63,0,72840.000000,1779.350000,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,63,0,17772.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2847,4320.000000,63,0,60105.000000,1776.100000,baseline,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,63,0,12962.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,63,0,-1.000000,2053.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2197,4320.000000,63,0,43377.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,63,0,17711.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4294,4320.000000,63,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,64,0,24703.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3960,4320.000000,64,0,80036.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2225,4320.000000,64,0,44894.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1111,4320.000000,64,0,24646.000000,1761.150000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,64,0,-1.000000,2004.900000,baseline,nbiot,180 +on11,0,0,24,1,0,4140,4320.000000,64,0,83661.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,543,4320.000000,64,0,12480.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2448,4320.000000,64,0,47169.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4280,4320.000000,64,0,-1.000000,1962.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1923,4320.000000,64,0,37011.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2457,4320.000000,64,0,47129.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4308,4320.000000,64,0,-1.000000,1736.450000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,20,4320.000000,65,0,658.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2047,4320.000000,65,0,42936.000000,1772.850000,baseline,nbiot,180 +on1,0,0,24,1,0,1808,4320.000000,65,0,36665.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,65,0,18993.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1791,4320.000000,65,0,36804.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,175,4320.000000,65,0,6847.000000,1757.900000,baseline,nbiot,180 +on4,0,0,24,0,0,4286,4320.000000,65,0,-1.000000,1750.750000,baseline,nbiot,180 +on7,0,0,24,1,0,3607,4320.000000,65,0,73073.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,65,0,13044.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,65,0,-1.000000,2066.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1578,4320.000000,65,0,29114.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3060,4320.000000,65,0,61497.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,65,0,36757.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1093,4320.000000,66,0,25036.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,66,0,13234.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,4253,4320.000000,66,0,84069.000000,1871.650000,baseline,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,66,0,-1.000000,1949.650000,baseline,nbiot,180 +on2,0,0,24,0,0,4317,4320.000000,66,0,-1.000000,1730.600000,baseline,nbiot,180 +on6,0,0,24,1,0,1808,4320.000000,66,0,39121.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,66,0,4404.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1108,4320.000000,66,0,24996.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4307,4320.000000,66,0,-1.000000,1962.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4288,4320.000000,66,0,-1.000000,1859.950000,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,66,0,9583.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1141,4320.000000,67,0,23381.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,67,0,5432.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2654,4320.000000,67,0,52922.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,67,0,1593.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,67,0,-1.000000,2017.900000,baseline,nbiot,180 +on8,0,0,24,1,0,1630,4320.000000,67,0,32601.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,355,4320.000000,67,0,9865.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,67,0,36293.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,67,0,26379.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1377,4320.000000,67,0,26246.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,67,0,23434.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,574,4320.000000,67,0,11602.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,68,0,2239.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2282,4320.000000,68,0,46248.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,68,0,26330.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,970,4320.000000,68,0,21083.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1573,4320.000000,68,0,31168.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,822,4320.000000,68,0,17197.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4293,4320.000000,68,0,-1.000000,1845.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2700,4320.000000,68,0,54759.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,68,0,-1.000000,2023.750000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,68,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,68,0,21177.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1013,4320.000000,68,0,21043.000000,1771.550000,baseline,nbiot,180 +on7,0,0,24,1,0,593,4320.000000,68,0,11560.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3960,4320.000000,69,0,81795.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,69,0,16035.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,69,0,13945.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4302,4320.000000,69,0,-1.000000,1740.350000,baseline,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,69,0,9819.000000,1754.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,69,0,-1.000000,1969.800000,baseline,nbiot,180 +on4,0,0,24,1,0,1807,4320.000000,69,0,36060.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1000,4320.000000,69,0,21210.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,841,4320.000000,69,0,15954.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1375,4320.000000,69,0,28327.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4288,4320.000000,69,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,70,0,30754.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,70,0,-1.000000,2051.050000,baseline,nbiot,180 +on9,0,0,24,1,0,4087,4320.000000,70,0,83021.000000,1789.750000,baseline,nbiot,180 +on8,0,0,24,1,0,2428,4320.000000,70,0,49607.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2880,4320.000000,70,0,59569.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,387,4320.000000,70,0,10499.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,70,0,2240.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1534,4320.000000,70,0,30648.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2700,4320.000000,70,0,54726.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1620,4320.000000,70,0,32624.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4297,4320.000000,70,0,-1.000000,1845.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4308,4320.000000,70,0,-1.000000,1845.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2018,4320.000000,70,0,40496.000000,1871.000000,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,71,0,18696.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1797,4320.000000,71,0,38909.000000,1756.600000,baseline,nbiot,180 +on7,0,0,24,1,0,1866,4320.000000,71,0,38794.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3051,4320.000000,71,0,63616.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1503,4320.000000,71,0,29241.000000,1871.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1943,4320.000000,71,0,41219.000000,1778.700000,baseline,nbiot,180 +on3,0,0,24,0,0,4311,4320.000000,71,0,-1.000000,1832.000000,baseline,nbiot,180 +on4,0,0,24,1,0,138,4320.000000,71,0,3130.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,911,4320.000000,71,0,18578.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,71,0,5717.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,71,0,5815.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3420,4320.000000,71,0,70980.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,71,0,-1.000000,2071.850000,baseline,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,72,0,41125.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1822,4320.000000,72,0,36361.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,72,0,29335.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,72,0,7507.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1260,4320.000000,72,0,27039.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4304,4320.000000,72,0,-1.000000,1845.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2057,4320.000000,72,0,41009.000000,1776.100000,baseline,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,72,0,29376.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,72,0,18965.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,668,4320.000000,72,0,11942.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,72,0,-1.000000,2047.150000,baseline,nbiot,180 +on4,0,0,24,1,0,1441,4320.000000,72,0,29416.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,72,0,34248.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3885,4320.000000,73,0,76697.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,388,4320.000000,73,0,7937.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2369,4320.000000,73,0,47558.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,270,4320.000000,73,0,6474.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2342,4320.000000,73,0,47518.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2879,4320.000000,73,0,58586.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,314,4320.000000,73,0,6434.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1092,4320.000000,73,0,24842.000000,1757.250000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,73,0,-1.000000,2056.900000,baseline,nbiot,180 +on3,0,0,24,1,0,1576,4320.000000,73,0,30987.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1136,4320.000000,73,0,24762.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,73,0,216.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1158,4320.000000,73,0,24802.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,74,0,3358.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,468,4320.000000,74,0,9173.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1826,4320.000000,74,0,39144.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,74,0,20281.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,74,0,-1.000000,2037.400000,baseline,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,74,0,17105.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,74,0,39104.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,981,4320.000000,74,0,20228.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,652,4320.000000,74,0,11651.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,74,0,28107.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2520,4320.000000,74,0,52090.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,74,0,11697.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4286,4320.000000,74,0,-1.000000,1962.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,75,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2052,4320.000000,75,0,41685.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2210,4320.000000,75,0,46492.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2064,4320.000000,75,0,41725.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1267,4320.000000,75,0,25426.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4308,4320.000000,75,0,-1.000000,1845.000000,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,75,0,343.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,75,0,37288.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2038,4320.000000,75,0,41645.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,75,0,-1.000000,1996.450000,baseline,nbiot,180 +on4,0,0,24,1,0,4140,4320.000000,75,0,85494.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,670,4320.000000,75,0,12262.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,306,4320.000000,75,0,6580.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3844,4320.000000,76,0,76957.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,76,0,17486.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,76,0,8420.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3871,4320.000000,76,0,76917.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,435,4320.000000,76,0,8343.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3338,4320.000000,76,0,67607.000000,1871.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,76,0,-1.000000,2057.550000,baseline,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,76,0,58180.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,76,0,28326.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,671,4320.000000,76,0,12018.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,76,0,6330.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1391,4320.000000,76,0,28262.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,76,0,35539.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2694,4320.000000,77,0,57223.000000,1773.500000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,77,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,77,0,-1.000000,2053.000000,baseline,nbiot,180 +on10,0,0,24,1,0,751,4320.000000,77,0,16316.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,183,4320.000000,77,0,5037.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,553,4320.000000,77,0,11106.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,233,4320.000000,77,0,4997.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1402,4320.000000,77,0,29183.000000,1861.250000,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,77,0,11066.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,736,4320.000000,77,0,16276.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,77,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,77,0,57183.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,77,0,42925.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,78,0,-1.000000,2075.750000,baseline,nbiot,180 +on7,0,0,24,1,0,3033,4320.000000,78,0,64229.000000,1772.200000,baseline,nbiot,180 +on12,0,0,24,1,0,377,4320.000000,78,0,9263.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,78,0,10926.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,23,4320.000000,78,0,2505.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,749,4320.000000,78,0,15614.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3624,4320.000000,78,0,72187.000000,1988.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1586,4320.000000,78,0,33845.000000,1776.750000,baseline,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,78,0,50084.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,78,0,27081.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,393,4320.000000,78,0,9223.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1247,4320.000000,78,0,27137.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2143,4320.000000,79,0,45597.000000,1765.700000,baseline,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,79,0,56934.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2469,4320.000000,79,0,47923.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,79,0,-1.000000,2051.700000,baseline,nbiot,180 +on3,0,0,24,1,0,70,4320.000000,79,0,1250.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2049,4320.000000,79,0,42628.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,79,0,1337.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,79,0,20308.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,79,0,28613.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2160,4320.000000,79,0,45515.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,79,0,20365.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1126,4320.000000,79,0,23148.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,79,0,4836.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1112,4320.000000,80,0,22071.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,80,0,-1.000000,1989.950000,baseline,nbiot,180 +on12,0,0,24,1,0,265,4320.000000,80,0,7046.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,80,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,80,0,3067.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1342,4320.000000,80,0,27933.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1111,4320.000000,80,0,22111.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,80,0,7829.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,218,4320.000000,80,0,7086.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,659,4320.000000,80,0,11668.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2878,4320.000000,80,0,58258.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,80,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1738,4320.000000,80,0,33096.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,81,0,6287.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1174,4320.000000,81,0,23659.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,81,0,20581.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2182,4320.000000,81,0,45898.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,81,0,-1.000000,2014.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2706,4320.000000,81,0,56295.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1212,4320.000000,81,0,23619.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2700,4320.000000,81,0,56255.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1670,4320.000000,81,0,33615.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,81,0,2528.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,81,0,2585.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,81,0,56342.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,99,4320.000000,82,0,521.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1080,4320.000000,82,0,24478.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1548,4320.000000,82,0,32169.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4299,4320.000000,82,0,-1.000000,1742.300000,baseline,nbiot,180 +on2,0,0,24,1,0,35,4320.000000,82,0,561.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1988,4320.000000,82,0,42548.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,898,4320.000000,82,0,20669.000000,1755.950000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,82,0,-1.000000,2047.150000,baseline,nbiot,180 +on1,0,0,24,1,0,1458,4320.000000,82,0,32129.000000,1769.600000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,82,0,12037.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,122,4320.000000,82,0,601.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4280,4320.000000,82,0,-1.000000,1755.300000,baseline,nbiot,180 +on3,0,0,24,1,0,120,4320.000000,82,0,641.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,436,4320.000000,83,0,7461.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,83,0,22041.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1039,4320.000000,83,0,21208.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,83,0,-1.000000,2014.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1369,4320.000000,83,0,25719.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3264,4320.000000,83,0,67883.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2393,4320.000000,83,0,47862.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,207,4320.000000,83,0,4927.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,594,4320.000000,83,0,13212.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,83,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,83,0,3214.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1002,4320.000000,83,0,21248.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,601,4320.000000,83,0,13172.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1480,4320.000000,84,0,29894.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1192,4320.000000,84,0,24351.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,119,4320.000000,84,0,2095.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2807,4320.000000,84,0,58514.000000,1872.300000,baseline,nbiot,180 +on11,0,0,24,1,0,1771,4320.000000,84,0,38525.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,397,4320.000000,84,0,7737.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,84,0,-1.000000,2074.450000,baseline,nbiot,180 +on8,0,0,24,1,0,29,4320.000000,84,0,2135.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,84,0,33616.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4288,4320.000000,84,0,-1.000000,1845.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1767,4320.000000,84,0,38431.000000,1871.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2657,4320.000000,85,0,51014.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,85,0,2905.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,85,0,-1.000000,2008.800000,baseline,nbiot,180 +on4,0,0,24,0,0,4287,4320.000000,85,0,-1.000000,1854.750000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,85,0,2977.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,370,4320.000000,85,0,7640.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3393,4320.000000,85,0,68706.000000,1772.200000,baseline,nbiot,180 +on8,0,0,24,1,0,1612,4320.000000,85,0,33501.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,85,0,12961.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2019,4320.000000,85,0,39801.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,85,0,62750.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4296,4320.000000,86,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1720,4320.000000,86,0,35421.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3005,4320.000000,86,0,60393.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3929,4320.000000,86,0,80991.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,86,0,23262.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,86,0,19251.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1188,4320.000000,86,0,23146.000000,1761.800000,baseline,nbiot,180 +on4,0,0,24,0,0,4274,4320.000000,86,0,-1.000000,1759.200000,baseline,nbiot,180 +on7,0,0,24,1,0,1394,4320.000000,86,0,26003.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2564,4320.000000,86,0,53126.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2644,4320.000000,86,0,53086.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,86,0,35496.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,86,0,-1.000000,2064.050000,baseline,nbiot,180 +on12,0,0,24,1,0,1294,4320.000000,87,0,26482.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,87,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,87,0,62074.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,87,0,-1.000000,1988.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1007,4320.000000,87,0,18415.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,87,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,839,4320.000000,87,0,16564.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2520,4320.000000,87,0,53574.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2469,4320.000000,87,0,49430.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3780,4320.000000,87,0,75941.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,87,0,59308.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,87,0,5348.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3795,4320.000000,87,0,75816.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,88,0,2135.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,88,0,57369.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,88,0,5651.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,77,4320.000000,88,0,2041.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2880,4320.000000,88,0,59134.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,88,0,28100.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,88,0,-1.000000,2006.850000,baseline,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,88,0,18114.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,374,4320.000000,88,0,7634.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,88,0,7705.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,36,4320.000000,88,0,2175.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4292,4320.000000,88,0,-1.000000,1746.850000,baseline,nbiot,180 +on4,0,0,24,0,0,4295,4320.000000,89,0,-1.000000,1745.550000,baseline,nbiot,180 +on2,0,0,24,1,0,812,4320.000000,89,0,16482.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2695,4320.000000,89,0,54129.000000,1871.000000,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,89,0,10585.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3085,4320.000000,89,0,61454.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2374,4320.000000,89,0,48087.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,89,0,6218.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,89,0,3007.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,89,0,-1.000000,2054.300000,baseline,nbiot,180 +on9,0,0,24,1,0,4140,4320.000000,89,0,85212.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,89,0,20432.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3600,4320.000000,89,0,73742.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2963,4320.000000,89,0,58737.000000,1873.600000,baseline,nbiot,180 +on2,0,0,24,1,0,291,4320.000000,90,0,6756.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,90,0,10609.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,364,4320.000000,90,0,10515.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,90,0,47459.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,655,4320.000000,90,0,11307.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,286,4320.000000,90,0,6796.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,90,0,11363.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,90,0,-1.000000,2042.600000,baseline,nbiot,180 +on6,0,0,24,1,0,2221,4320.000000,90,0,45353.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,90,0,15267.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,90,0,11412.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,90,0,30644.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2877,4320.000000,90,0,58557.000000,1871.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,91,0,-1.000000,2025.700000,baseline,nbiot,180 +on7,0,0,24,1,0,1001,4320.000000,91,0,20634.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,91,0,59960.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2160,4320.000000,91,0,46311.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,91,0,13731.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,582,4320.000000,91,0,13666.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4314,4320.000000,91,0,-1.000000,1845.000000,baseline,nbiot,180 +on3,0,0,24,1,0,259,4320.000000,91,0,4847.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,91,0,34077.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,765,4320.000000,91,0,17064.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,645,4320.000000,91,0,13626.000000,1761.150000,baseline,nbiot,180 +on10,0,0,24,1,0,463,4320.000000,91,0,10381.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3600,4320.000000,91,0,75120.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,92,0,-1.000000,2049.100000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2282,4320.000000,92,0,45278.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,872,4320.000000,92,0,21254.000000,1871.000000,baseline,nbiot,180 +on8,0,0,24,1,0,933,4320.000000,92,0,21139.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1342,4320.000000,92,0,26930.000000,1855.400000,baseline,nbiot,180 +on10,0,0,24,1,0,1160,4320.000000,92,0,24273.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,560,4320.000000,92,0,13023.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3494,4320.000000,92,0,68739.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1486,4320.000000,92,0,29763.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,92,0,27033.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3240,4320.000000,92,0,66272.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2593,4320.000000,92,0,52173.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,93,0,57404.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1039,4320.000000,93,0,18901.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,636,4320.000000,93,0,11585.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1028,4320.000000,93,0,18941.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3052,4320.000000,93,0,62092.000000,1988.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2674,4320.000000,93,0,57295.000000,1871.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1479,4320.000000,93,0,30459.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,362,4320.000000,93,0,7760.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,93,0,-1.000000,2064.050000,baseline,nbiot,180 +on9,0,0,24,1,0,791,4320.000000,93,0,14796.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,93,0,26093.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,394,4320.000000,93,0,7720.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,499,4320.000000,93,0,7680.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1181,4320.000000,94,0,24506.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2520,4320.000000,94,0,50593.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2700,4320.000000,94,0,55174.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,94,0,60783.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,94,0,62518.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,94,0,4118.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,94,0,20144.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1997,4320.000000,94,0,40280.000000,1754.650000,baseline,nbiot,180 +on7,0,0,24,1,0,4159,4320.000000,94,0,84775.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,94,0,-1.000000,2050.400000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3673,4320.000000,94,0,73200.000000,1768.950000,baseline,nbiot,180 +on10,0,0,24,1,0,1409,4320.000000,94,0,29203.000000,1774.800000,baseline,nbiot,180 +on7,0,0,24,1,0,418,4320.000000,95,0,7737.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,765,4320.000000,95,0,15928.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,95,0,-1.000000,2004.250000,baseline,nbiot,180 +on2,0,0,24,0,0,4303,4320.000000,95,0,-1.000000,1845.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4300,4320.000000,95,0,-1.000000,1741.650000,baseline,nbiot,180 +on4,0,0,24,1,0,875,4320.000000,95,0,19685.000000,1770.900000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,846,4320.000000,95,0,15968.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2012,4320.000000,95,0,41345.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,480,4320.000000,95,0,7697.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2200,4320.000000,95,0,45350.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,95,0,67006.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2978,4320.000000,95,0,57949.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,96,0,57829.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2230,4320.000000,96,0,43937.000000,1770.250000,baseline,nbiot,180 +on4,0,0,24,1,0,1992,4320.000000,96,0,40179.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,480,4320.000000,96,0,7361.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4270,4320.000000,96,0,-1.000000,1762.450000,baseline,nbiot,180 +on12,0,0,24,1,0,1002,4320.000000,96,0,20884.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,96,0,27313.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,293,4320.000000,96,0,4083.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2047,4320.000000,96,0,40139.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4319,4320.000000,96,0,-1.000000,1729.300000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,96,0,-1.000000,2091.350000,baseline,nbiot,180 +on2,0,0,24,1,0,4109,4320.000000,96,0,86134.000000,1887.900000,baseline,nbiot,180 +on11,0,0,24,1,0,2604,4320.000000,96,0,50805.000000,1770.900000,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,97,0,5974.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,97,0,8655.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,97,0,41375.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1103,4320.000000,97,0,23705.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,120,4320.000000,97,0,3278.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1050,4320.000000,97,0,23665.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2291,4320.000000,97,0,50132.000000,1880.750000,baseline,nbiot,180 +on8,0,0,24,1,0,1153,4320.000000,97,0,23607.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,97,0,-1.000000,2064.050000,baseline,nbiot,180 +on9,0,0,24,1,0,1905,4320.000000,97,0,36556.000000,1776.750000,baseline,nbiot,180 +on12,0,0,24,1,0,1358,4320.000000,97,0,28100.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2934,4320.000000,98,0,59256.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,98,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,920,4320.000000,98,0,20398.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,98,0,16768.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,122,4320.000000,98,0,3519.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,124,4320.000000,98,0,3479.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,136,4320.000000,98,0,3439.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,606,4320.000000,98,0,14181.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,98,0,-1.000000,2014.000000,baseline,nbiot,180 +on11,0,0,24,1,0,216,4320.000000,98,0,7007.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,214,4320.000000,98,0,7047.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3549,4320.000000,98,0,70559.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3060,4320.000000,98,0,61962.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2235,4320.000000,99,0,45305.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,99,0,41731.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,99,0,52428.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,911,4320.000000,99,0,20223.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1800,4320.000000,99,0,38544.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1379,4320.000000,99,0,28197.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,99,0,-1.000000,2014.650000,baseline,nbiot,180 +on7,0,0,24,1,0,4140,4320.000000,99,0,85189.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,99,0,170.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,571,4320.000000,99,0,13295.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3780,4320.000000,99,0,77313.000000,1754.650000,baseline,nbiot,180 +on12,0,0,24,1,0,1471,4320.000000,99,0,30818.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,100,0,32170.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,100,0,7514.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2680,4320.000000,100,0,55137.000000,1767.650000,baseline,nbiot,180 +on7,0,0,24,1,0,1810,4320.000000,100,0,37211.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,100,0,18461.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,100,0,4227.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1294,4320.000000,100,0,27120.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1765,4320.000000,100,0,37171.000000,1777.400000,baseline,nbiot,180 +on9,0,0,24,1,0,2094,4320.000000,100,0,42744.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,100,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2880,4320.000000,100,0,59120.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,100,0,-1.000000,2051.050000,baseline,nbiot,180 +on8,0,0,24,1,0,480,4320.000000,100,0,7405.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3518,4320.000000,101,0,68952.000000,1767.650000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,101,0,-1.000000,1987.350000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3259,4320.000000,101,0,67248.000000,1754.650000,baseline,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,101,0,8093.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2443,4320.000000,101,0,47274.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,101,0,37719.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,101,0,22378.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,962,4320.000000,101,0,21261.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4265,4320.000000,101,0,-1.000000,1857.350000,baseline,nbiot,180 +on5,0,0,24,1,0,1353,4320.000000,101,0,28084.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,448,4320.000000,102,0,9216.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3420,4320.000000,102,0,68914.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2700,4320.000000,102,0,55015.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1910,4320.000000,102,0,36750.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,102,0,-1.000000,2012.050000,baseline,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,102,0,27189.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,557,4320.000000,102,0,12912.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3328,4320.000000,102,0,67371.000000,1871.650000,baseline,nbiot,180 +on7,0,0,24,1,0,999,4320.000000,102,0,20405.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,102,0,6462.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,102,0,12872.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,103,0,1094.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,103,0,13084.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3811,4320.000000,103,0,76654.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3673,4320.000000,103,0,73643.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2610,4320.000000,103,0,51956.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,103,0,-1.000000,1999.700000,baseline,nbiot,180 +on4,0,0,24,1,0,4140,4320.000000,103,0,83793.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,103,0,10021.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,103,0,981.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1243,4320.000000,103,0,25407.000000,1765.700000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3423,4320.000000,103,0,68602.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1833,4320.000000,104,0,36950.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,67,4320.000000,104,0,3104.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4282,4320.000000,104,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,197,4320.000000,104,0,3761.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,104,0,3823.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,791,4320.000000,104,0,15782.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,104,0,-1.000000,2013.350000,baseline,nbiot,180 +on4,0,0,24,1,0,3003,4320.000000,104,0,59778.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1158,4320.000000,104,0,22291.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,104,0,33327.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,104,0,27221.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1857,4320.000000,104,0,36910.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,105,0,5033.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1597,4320.000000,105,0,35582.000000,1769.600000,baseline,nbiot,180 +on9,0,0,24,1,0,1329,4320.000000,105,0,26129.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,105,0,20040.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3600,4320.000000,105,0,74199.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,105,0,-1.000000,1993.200000,baseline,nbiot,180 +on5,0,0,24,0,0,4297,4320.000000,105,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,105,0,3035.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1508,4320.000000,105,0,30571.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3060,4320.000000,105,0,63211.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,105,0,37857.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,106,0,2010.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,106,0,3983.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4304,4320.000000,106,0,-1.000000,1845.000000,baseline,nbiot,180 +on8,0,0,24,1,0,998,4320.000000,106,0,19337.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3142,4320.000000,106,0,64068.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,106,0,-1.000000,2015.300000,baseline,nbiot,180 +on3,0,0,24,1,0,2444,4320.000000,106,0,47716.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,106,0,25995.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,559,4320.000000,106,0,13750.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4284,4320.000000,106,0,-1.000000,1846.950000,baseline,nbiot,180 +on9,0,0,24,1,0,2429,4320.000000,106,0,47676.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,972,4320.000000,106,0,19377.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,107,0,38160.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1369,4320.000000,107,0,27271.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,107,0,-1.000000,2014.650000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2694,4320.000000,107,0,55533.000000,1760.500000,baseline,nbiot,180 +on6,0,0,24,1,0,219,4320.000000,107,0,6943.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,995,4320.000000,107,0,18738.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,363,4320.000000,107,0,8646.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4290,4320.000000,107,0,-1.000000,1822.900000,baseline,nbiot,180 +on2,0,0,24,1,0,2369,4320.000000,107,0,47917.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,107,0,45926.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3318,4320.000000,107,0,67697.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3420,4320.000000,107,0,71595.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3960,4320.000000,108,0,81623.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1876,4320.000000,108,0,37982.000000,1871.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1080,4320.000000,108,0,24421.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1002,4320.000000,108,0,20418.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,990,4320.000000,108,0,20378.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,108,0,29399.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2338,4320.000000,108,0,50004.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,586,4320.000000,108,0,11077.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,108,0,9319.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,983,4320.000000,108,0,20338.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2700,4320.000000,108,0,56681.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,108,0,33334.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,108,0,-1.000000,2075.750000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,109,0,21948.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3060,4320.000000,109,0,63033.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3571,4320.000000,109,0,72652.000000,1774.150000,baseline,nbiot,180 +on6,0,0,24,1,0,25,4320.000000,109,0,420.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,109,0,26395.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2142,4320.000000,109,0,46536.000000,1766.350000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,109,0,-1.000000,2068.600000,baseline,nbiot,180 +on11,0,0,24,1,0,236,4320.000000,109,0,5528.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,46,4320.000000,109,0,380.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,109,0,5625.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,109,0,13241.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2921,4320.000000,109,0,57931.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4313,4320.000000,110,0,-1.000000,1842.400000,baseline,nbiot,180 +on1,0,0,24,1,0,635,4320.000000,110,0,13291.000000,1772.200000,baseline,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,110,0,26088.000000,1754.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,110,0,-1.000000,1992.550000,baseline,nbiot,180 +on5,0,0,24,1,0,468,4320.000000,110,0,9132.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,273,4320.000000,110,0,6350.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1542,4320.000000,110,0,31807.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4290,4320.000000,110,0,-1.000000,1748.800000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,110,0,9224.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,36,4320.000000,110,0,933.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4310,4320.000000,110,0,-1.000000,1735.150000,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,110,0,6457.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1195,4320.000000,111,0,23045.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,111,0,11593.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4290,4320.000000,111,0,-1.000000,1956.150000,baseline,nbiot,180 +on4,0,0,24,0,0,4248,4320.000000,111,0,-1.000000,1868.400000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,111,0,-1.000000,2056.900000,baseline,nbiot,180 +on6,0,0,24,1,0,995,4320.000000,111,0,18694.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1006,4320.000000,111,0,18734.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1307,4320.000000,111,0,27666.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1010,4320.000000,111,0,18774.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,905,4320.000000,111,0,18654.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1399,4320.000000,111,0,27706.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,111,0,64471.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,111,0,4151.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2588,4320.000000,112,0,52937.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2672,4320.000000,112,0,57364.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2881,4320.000000,112,0,58231.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,112,0,7503.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1880,4320.000000,112,0,39280.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,761,4320.000000,112,0,17353.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1318,4320.000000,112,0,28469.000000,1871.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,112,0,-1.000000,2013.350000,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,112,0,1750.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2704,4320.000000,112,0,57289.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4298,4320.000000,112,0,-1.000000,1845.000000,baseline,nbiot,180 +on8,0,0,24,1,0,35,4320.000000,113,0,1785.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1903,4320.000000,113,0,38173.000000,1773.500000,baseline,nbiot,180 +on11,0,0,24,1,0,581,4320.000000,113,0,12819.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,405,4320.000000,113,0,8296.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3010,4320.000000,113,0,60111.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1800,4320.000000,113,0,38273.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4289,4320.000000,113,0,-1.000000,1748.800000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,113,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1724,4320.000000,113,0,35440.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,113,0,8433.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,113,0,-1.000000,2035.450000,baseline,nbiot,180 +on4,0,0,24,1,0,2330,4320.000000,113,0,48620.000000,1761.150000,baseline,nbiot,180 +on2,0,0,24,1,0,33,4320.000000,113,0,1825.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,114,0,848.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,238,4320.000000,114,0,5059.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,114,0,5110.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3960,4320.000000,114,0,79793.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2537,4320.000000,114,0,52818.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,114,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,114,0,35636.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1901,4320.000000,114,0,39331.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,114,0,10024.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,114,0,-1.000000,2014.000000,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,114,0,787.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,272,4320.000000,114,0,4979.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,252,4320.000000,114,0,5019.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1080,4320.000000,115,0,23543.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,115,0,-1.000000,2040.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2491,4320.000000,115,0,52679.000000,1773.500000,baseline,nbiot,180 +on9,0,0,24,1,0,1421,4320.000000,115,0,29065.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,475,4320.000000,115,0,9953.000000,1762.450000,baseline,nbiot,180 +on8,0,0,24,1,0,644,4320.000000,115,0,13185.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,115,0,36120.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4304,4320.000000,115,0,-1.000000,1739.050000,baseline,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,115,0,58165.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1495,4320.000000,115,0,28976.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,105,4320.000000,115,0,2429.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3780,4320.000000,115,0,75806.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1134,4320.000000,116,0,25028.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1965,4320.000000,116,0,40811.000000,1768.950000,baseline,nbiot,180 +on6,0,0,24,1,0,414,4320.000000,116,0,7397.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,116,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,84,4320.000000,116,0,2137.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,56,4320.000000,116,0,2257.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,116,0,45857.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,52,4320.000000,116,0,2177.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3489,4320.000000,116,0,70271.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,116,0,29131.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,25,4320.000000,116,0,2217.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2187,4320.000000,116,0,45800.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,116,0,-1.000000,2028.950000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,117,0,17069.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,117,0,23456.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3900,4320.000000,117,0,76787.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,4237,4320.000000,117,0,84775.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,117,0,26753.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,117,0,-1.000000,2032.200000,baseline,nbiot,180 +on5,0,0,24,1,0,1440,4320.000000,117,0,29355.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,462,4320.000000,117,0,8358.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2528,4320.000000,117,0,53186.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,117,0,40505.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,205,4320.000000,117,0,3956.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,401,4320.000000,117,0,8318.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,118,0,1719.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,118,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,118,0,53608.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2407,4320.000000,118,0,48314.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,118,0,-1.000000,2055.600000,baseline,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,118,0,56613.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,118,0,6567.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1259,4320.000000,118,0,26240.000000,1755.300000,baseline,nbiot,180 +on10,0,0,24,0,0,4286,4320.000000,118,0,-1.000000,1750.750000,baseline,nbiot,180 +on3,0,0,24,1,0,669,4320.000000,118,0,12145.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,118,0,8937.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,403,4320.000000,118,0,8809.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3355,4320.000000,118,0,69214.000000,1885.950000,baseline,nbiot,180 +on7,0,0,24,1,0,1897,4320.000000,119,0,38858.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,451,4320.000000,119,0,9989.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,806,4320.000000,119,0,15032.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,119,0,31940.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,470,4320.000000,119,0,10029.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3919,4320.000000,119,0,81406.000000,1781.950000,baseline,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,119,0,26424.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,40,4320.000000,119,0,2455.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,667,4320.000000,119,0,13430.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,119,0,-1.000000,2040.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,119,0,32005.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3600,4320.000000,120,0,72553.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1371,4320.000000,120,0,25999.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,120,0,2112.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,916,4320.000000,120,0,20321.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3402,4320.000000,120,0,69006.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,120,0,31623.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,120,0,-1.000000,2078.350000,baseline,nbiot,180 +on4,0,0,24,1,0,128,4320.000000,120,0,1984.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3268,4320.000000,120,0,68198.000000,1772.200000,baseline,nbiot,180 +on9,0,0,24,1,0,2045,4320.000000,120,0,39979.000000,1863.850000,baseline,nbiot,180 +on12,0,0,24,1,0,2276,4320.000000,120,0,43520.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,952,4320.000000,120,0,20281.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2619,4320.000000,120,0,51710.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2958,4320.000000,121,0,58864.000000,1871.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,121,0,67590.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,322,4320.000000,121,0,7634.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,121,0,34753.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4296,4320.000000,121,0,-1.000000,1744.250000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,121,0,-1.000000,2014.650000,baseline,nbiot,180 +on12,0,0,24,1,0,1453,4320.000000,121,0,29550.000000,1774.800000,baseline,nbiot,180 +on6,0,0,24,1,0,273,4320.000000,121,0,6005.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,407,4320.000000,121,0,7555.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,121,0,23989.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,122,0,29182.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,362,4320.000000,122,0,7490.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,122,0,15224.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,478,4320.000000,122,0,7450.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,122,0,29090.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,122,0,22598.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1808,4320.000000,122,0,37507.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,122,0,-1.000000,2017.250000,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,122,0,2924.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,947,4320.000000,122,0,20688.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,122,0,37467.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,69,4320.000000,122,0,2818.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4316,4320.000000,122,0,-1.000000,1845.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2476,4320.000000,123,0,51643.000000,1887.900000,baseline,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,123,0,32999.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2297,4320.000000,123,0,43396.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,123,0,5771.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,123,0,32898.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,123,0,-1.000000,2066.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2197,4320.000000,123,0,43356.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,370,4320.000000,123,0,7980.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3591,4320.000000,123,0,75165.000000,1760.500000,baseline,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,123,0,39428.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,123,0,19837.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,306,4320.000000,123,0,5698.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1749,4320.000000,124,0,34023.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,841,4320.000000,124,0,16490.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,124,0,44302.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3600,4320.000000,124,0,74355.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4292,4320.000000,124,0,-1.000000,1746.850000,baseline,nbiot,180 +on3,0,0,24,1,0,1298,4320.000000,124,0,25948.000000,1871.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,124,0,-1.000000,1973.050000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,124,0,16625.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,850,4320.000000,124,0,16530.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3060,4320.000000,124,0,61888.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,125,0,3314.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,671,4320.000000,125,0,11297.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1019,4320.000000,125,0,21354.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,125,0,8693.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,192,4320.000000,125,0,6476.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,125,0,15726.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3060,4320.000000,125,0,62926.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1087,4320.000000,125,0,22433.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1491,4320.000000,125,0,31540.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2184,4320.000000,125,0,46448.000000,1871.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,125,0,-1.000000,2052.350000,baseline,nbiot,180 +on12,0,0,24,1,0,95,4320.000000,125,0,3243.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3109,4320.000000,125,0,62880.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,447,4320.000000,126,0,8381.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,126,0,21050.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,126,0,39885.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,267,4320.000000,126,0,4089.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,126,0,-1.000000,1985.400000,baseline,nbiot,180 +on2,0,0,24,1,0,911,4320.000000,126,0,20955.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,911,4320.000000,126,0,21090.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,126,0,59712.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4288,4320.000000,126,0,-1.000000,1845.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4318,4320.000000,126,0,-1.000000,1729.950000,baseline,nbiot,180 +on12,0,0,24,1,0,2351,4320.000000,126,0,47634.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,250,4320.000000,126,0,4129.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,361,4320.000000,127,0,7731.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,127,0,-1.000000,2066.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3570,4320.000000,127,0,74018.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,127,0,19973.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2577,4320.000000,127,0,53594.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1883,4320.000000,127,0,37679.000000,1766.350000,baseline,nbiot,180 +on2,0,0,24,1,0,468,4320.000000,127,0,7691.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1484,4320.000000,127,0,30391.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,127,0,1216.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4292,4320.000000,127,0,-1.000000,1848.900000,baseline,nbiot,180 +on9,0,0,24,1,0,1444,4320.000000,127,0,30431.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2068,4320.000000,127,0,42177.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,87,4320.000000,127,0,1102.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,128,0,-1.000000,1980.200000,baseline,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,128,0,15606.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,128,0,9896.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3166,4320.000000,128,0,61467.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1003,4320.000000,128,0,18970.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1029,4320.000000,128,0,18930.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2608,4320.000000,128,0,50892.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2050,4320.000000,128,0,41364.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2095,4320.000000,128,0,41324.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,128,0,24727.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,129,0,19993.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,129,0,41927.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1779,4320.000000,129,0,37435.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2340,4320.000000,129,0,48090.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,736,4320.000000,129,0,17497.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,129,0,51152.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,319,4320.000000,129,0,6994.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1901,4320.000000,129,0,37475.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,129,0,-1.000000,2058.850000,baseline,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,129,0,8039.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4278,4320.000000,129,0,-1.000000,1756.600000,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,129,0,2590.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,129,0,11502.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,201,4320.000000,130,0,5222.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,609,4320.000000,130,0,11910.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,244,4320.000000,130,0,5142.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3960,4320.000000,130,0,81501.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1457,4320.000000,130,0,32233.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,188,4320.000000,130,0,5182.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,853,4320.000000,130,0,16465.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,130,0,8569.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,588,4320.000000,130,0,11950.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,130,0,-1.000000,2054.300000,baseline,nbiot,180 +on11,0,0,24,1,0,4140,4320.000000,130,0,85870.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,130,0,5265.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,130,0,16603.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1544,4320.000000,131,0,29626.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3593,4320.000000,131,0,73706.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2753,4320.000000,131,0,56068.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2859,4320.000000,131,0,60262.000000,1768.300000,baseline,nbiot,180 +on3,0,0,24,1,0,1901,4320.000000,131,0,36597.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,131,0,51371.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,131,0,4625.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,30,4320.000000,131,0,1823.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4300,4320.000000,131,0,-1.000000,1741.650000,baseline,nbiot,180 +on11,0,0,24,0,0,4304,4320.000000,131,0,-1.000000,1845.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,131,0,-1.000000,2032.200000,baseline,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,131,0,13000.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,764,4320.000000,131,0,14693.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,132,0,4397.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,69,4320.000000,132,0,899.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,132,0,35635.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,132,0,37098.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2160,4320.000000,132,0,44776.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1947,4320.000000,132,0,39986.000000,1871.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3509,4320.000000,132,0,69189.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,132,0,995.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,132,0,-1.000000,2088.100000,baseline,nbiot,180 +on2,0,0,24,1,0,1364,4320.000000,132,0,26797.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2700,4320.000000,132,0,57225.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3270,4320.000000,132,0,65987.000000,1778.700000,baseline,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,132,0,57135.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,130,4320.000000,133,0,2771.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2170,4320.000000,133,0,45581.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,223,4320.000000,133,0,4682.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,133,0,54253.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,133,0,18494.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2238,4320.000000,133,0,45541.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,292,4320.000000,133,0,4728.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2064,4320.000000,133,0,41620.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,133,0,-1.000000,2030.900000,baseline,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,133,0,14850.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4296,4320.000000,133,0,-1.000000,1848.900000,baseline,nbiot,180 +on6,0,0,24,1,0,3467,4320.000000,133,0,70612.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,20,4320.000000,133,0,2811.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3720,4320.000000,134,0,73942.000000,1856.050000,baseline,nbiot,180 +on2,0,0,24,0,0,4288,4320.000000,134,0,-1.000000,1749.450000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,134,0,-1.000000,1997.100000,baseline,nbiot,180 +on11,0,0,24,1,0,613,4320.000000,134,0,11640.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1338,4320.000000,134,0,27203.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,361,4320.000000,134,0,9301.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1330,4320.000000,134,0,27243.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1290,4320.000000,134,0,27283.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1348,4320.000000,134,0,27163.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1649,4320.000000,134,0,32647.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,134,0,11687.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,135,0,59151.000000,1754.000000,baseline,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,135,0,-1.000000,1919.750000,baseline,nbiot,180 +on4,0,0,24,1,0,851,4320.000000,135,0,17150.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3323,4320.000000,135,0,65719.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,135,0,23610.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,412,4320.000000,135,0,7799.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4306,4320.000000,135,0,-1.000000,1845.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,276,4320.000000,135,0,4562.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,135,0,2635.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,366,4320.000000,136,0,8267.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1269,4320.000000,136,0,26676.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,136,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3467,4320.000000,136,0,69743.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,136,0,-1.000000,1991.250000,baseline,nbiot,180 +on10,0,0,24,1,0,1380,4320.000000,136,0,26636.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,915,4320.000000,136,0,20857.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1328,4320.000000,136,0,26716.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,392,4320.000000,136,0,8307.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,136,0,34248.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4316,4320.000000,136,0,-1.000000,1845.000000,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,136,0,20908.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,809,4320.000000,136,0,15163.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,563,4320.000000,137,0,13172.000000,1850.850000,baseline,nbiot,180 +on1,0,0,24,0,0,4296,4320.000000,137,0,-1.000000,1744.250000,baseline,nbiot,180 +on6,0,0,24,1,0,222,4320.000000,137,0,6156.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,137,0,6267.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4308,4320.000000,137,0,-1.000000,1845.000000,baseline,nbiot,180 +on11,0,0,24,1,0,753,4320.000000,137,0,16504.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,4240,4320.000000,137,0,84818.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,4173,4320.000000,137,0,84858.000000,1772.200000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,137,0,-1.000000,2053.650000,baseline,nbiot,180 +on9,0,0,24,1,0,2546,4320.000000,137,0,53367.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,512,4320.000000,137,0,13311.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,994,4320.000000,137,0,18245.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4304,4320.000000,137,0,-1.000000,1739.050000,baseline,nbiot,180 +on9,0,0,24,1,0,3346,4320.000000,138,0,66252.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,138,0,24335.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,104,4320.000000,138,0,1639.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,802,4320.000000,138,0,15378.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,138,0,20502.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1199,4320.000000,138,0,24230.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,138,0,39105.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4308,4320.000000,138,0,-1.000000,1852.800000,baseline,nbiot,180 +on2,0,0,24,1,0,2880,4320.000000,138,0,59857.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2880,4320.000000,138,0,59945.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1620,4320.000000,138,0,34986.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1995,4320.000000,138,0,40483.000000,1770.250000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,138,0,-1.000000,2039.350000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,139,0,-1.000000,2083.550000,baseline,nbiot,180 +on5,0,0,24,1,0,527,4320.000000,139,0,14104.000000,1763.100000,baseline,nbiot,180 +on10,0,0,24,1,0,400,4320.000000,139,0,10131.000000,1871.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2312,4320.000000,139,0,48981.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,139,0,14182.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,139,0,3942.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1262,4320.000000,139,0,25983.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2130,4320.000000,139,0,44943.000000,1890.500000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,139,0,10190.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,201,4320.000000,139,0,3982.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,4,4320.000000,139,0,3386.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,139,0,26103.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3648,4320.000000,140,0,72688.000000,1770.250000,baseline,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,140,0,34087.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,140,0,15541.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4290,4320.000000,140,0,-1.000000,1748.150000,baseline,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,140,0,30249.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4256,4320.000000,140,0,-1.000000,1862.550000,baseline,nbiot,180 +on12,0,0,24,1,0,1087,4320.000000,140,0,24876.000000,1755.950000,baseline,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,140,0,41398.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1459,4320.000000,140,0,30289.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4290,4320.000000,140,0,-1.000000,1857.350000,baseline,nbiot,180 +on9,0,0,24,0,0,4311,4320.000000,140,0,-1.000000,1735.150000,baseline,nbiot,180 +on4,0,0,24,1,0,615,4320.000000,140,0,11196.000000,1754.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,140,0,-1.000000,2045.200000,baseline,nbiot,180 +on5,0,0,24,1,0,3471,4320.000000,141,0,70940.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4269,4320.000000,141,0,-1.000000,1876.850000,baseline,nbiot,180 +on2,0,0,24,1,0,790,4320.000000,141,0,15550.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1273,4320.000000,141,0,25641.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,141,0,50916.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,141,0,-1.000000,1997.750000,baseline,nbiot,180 +on1,0,0,24,1,0,41,4320.000000,141,0,661.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,127,4320.000000,141,0,701.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3676,4320.000000,141,0,73615.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1845.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1670,4320.000000,141,0,34850.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3346,4320.000000,141,0,65257.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3149,4320.000000,142,0,62770.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2314,4320.000000,142,0,49371.000000,1771.550000,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,142,0,6331.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1437,4320.000000,142,0,29559.000000,1756.600000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,142,0,-1.000000,2073.150000,baseline,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,142,0,39987.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,142,0,28230.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,142,0,2046.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,142,0,8281.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3219,4320.000000,142,0,67561.000000,1768.300000,baseline,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,142,0,53535.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2719,4320.000000,142,0,56527.000000,1871.000000,baseline,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,143,0,11558.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,143,0,51012.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1694,4320.000000,143,0,32600.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,143,0,-1.000000,2068.600000,baseline,nbiot,180 +on2,0,0,24,1,0,352,4320.000000,143,0,7701.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1198,4320.000000,143,0,24145.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1852,4320.000000,143,0,37271.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3441,4320.000000,143,0,71151.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1035,4320.000000,143,0,20082.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,143,0,6074.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,143,0,30720.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,143,0,37401.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2713,4320.000000,143,0,54864.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1101,4320.000000,144,0,24740.000000,1763.750000,baseline,nbiot,180 +on11,0,0,24,0,0,4283,4320.000000,144,0,-1.000000,1752.700000,baseline,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,144,0,24700.000000,1754.650000,baseline,nbiot,180 +on5,0,0,24,1,0,1631,4320.000000,144,0,33096.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,144,0,-1.000000,2070.550000,baseline,nbiot,180 +on2,0,0,24,1,0,1117,4320.000000,144,0,24652.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,729,4320.000000,144,0,16901.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3178,4320.000000,144,0,62831.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1001,4320.000000,144,0,19987.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1090,4320.000000,144,0,24612.000000,1775.450000,baseline,nbiot,180 +on7,0,0,24,1,0,810,4320.000000,144,0,16861.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2230,4320.000000,144,0,45501.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,144,0,9439.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,145,0,2338.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,145,0,6378.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,145,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1023,4320.000000,145,0,21322.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,145,0,16968.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,145,0,33270.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2189,4320.000000,145,0,44780.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,145,0,26230.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,145,0,31690.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2222,4320.000000,145,0,44860.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,145,0,-1.000000,2014.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2290,4320.000000,145,0,44820.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,998,4320.000000,145,0,21362.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2880,4320.000000,146,0,60622.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2520,4320.000000,146,0,52222.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,21,4320.000000,146,0,1525.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,264,4320.000000,146,0,4541.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,146,0,1403.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,4006,4320.000000,146,0,80395.000000,1767.000000,baseline,nbiot,180 +on12,0,0,24,1,0,817,4320.000000,146,0,17501.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,39,4320.000000,146,0,1485.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,146,0,1445.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,146,0,30513.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,146,0,-1.000000,2053.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1166,4320.000000,146,0,22260.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,146,0,11588.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2814,4320.000000,147,0,56519.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,147,0,7351.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,995,4320.000000,147,0,21030.000000,1774.150000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,147,0,-1.000000,2045.850000,baseline,nbiot,180 +on12,0,0,24,0,0,4303,4320.000000,147,0,-1.000000,1845.000000,baseline,nbiot,180 +on11,0,0,24,1,0,772,4320.000000,147,0,17239.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,147,0,17371.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,147,0,33548.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4274,4320.000000,147,0,-1.000000,1759.200000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3679,4320.000000,147,0,74943.000000,1774.800000,baseline,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,147,0,26746.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,147,0,2997.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,148,0,-1.000000,2010.100000,baseline,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,148,0,30715.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,607,4320.000000,148,0,12702.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3494,4320.000000,148,0,71100.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1301,4320.000000,148,0,27191.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,596,4320.000000,148,0,12742.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1387,4320.000000,148,0,27231.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2058,4320.000000,148,0,43042.000000,1872.300000,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,148,0,9424.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,985,4320.000000,148,0,20799.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1610,4320.000000,148,0,34197.000000,1765.700000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1709,4320.000000,149,0,35025.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,149,0,52902.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,151,4320.000000,149,0,6363.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3218,4320.000000,149,0,66531.000000,1769.600000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,149,0,3180.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,149,0,52854.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.650000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,149,0,23539.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,149,0,-1.000000,2031.550000,baseline,nbiot,180 +on12,0,0,24,0,0,4295,4320.000000,149,0,-1.000000,1744.900000,baseline,nbiot,180 +on2,0,0,24,1,0,3729,4320.000000,149,0,74262.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1883,4320.000000,149,0,37309.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3064,4320.000000,150,0,62186.000000,1763.750000,baseline,nbiot,180 +on4,0,0,24,0,0,4302,4320.000000,150,0,-1.000000,1740.350000,baseline,nbiot,180 +on11,0,0,24,1,0,631,4320.000000,150,0,13689.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3170,4320.000000,150,0,62146.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,407,4320.000000,150,0,8913.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1380,4320.000000,150,0,28535.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1146,4320.000000,150,0,24798.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4279,4320.000000,150,0,-1.000000,1865.800000,baseline,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,150,0,38936.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,150,0,-1.000000,2049.100000,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,150,0,14823.000000,1765.050000,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,150,0,13777.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,150,0,28615.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,151,0,-1.000000,2051.700000,baseline,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,151,0,5561.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,151,0,13623.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,151,0,342.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4318,4320.000000,151,0,-1.000000,1845.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2910,4320.000000,151,0,58975.000000,1873.600000,baseline,nbiot,180 +on2,0,0,24,1,0,3105,4320.000000,151,0,62900.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2449,4320.000000,151,0,47524.000000,1764.400000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,151,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2050,4320.000000,151,0,42807.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1108,4320.000000,151,0,23035.000000,1780.000000,baseline,nbiot,180 +on11,0,0,24,1,0,797,4320.000000,151,0,15242.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4275,4320.000000,151,0,-1.000000,1962.000000,baseline,nbiot,180 +on7,0,0,24,1,0,227,4320.000000,152,0,4463.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4276,4320.000000,152,0,-1.000000,1962.000000,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,152,0,20705.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1966,4320.000000,152,0,40656.000000,1763.750000,baseline,nbiot,180 +on12,0,0,24,1,0,1025,4320.000000,152,0,20637.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1644,4320.000000,152,0,34150.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,152,0,40558.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,152,0,9994.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2538,4320.000000,152,0,51944.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,152,0,-1.000000,2055.600000,baseline,nbiot,180 +on2,0,0,24,1,0,635,4320.000000,152,0,14087.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,822,4320.000000,152,0,15079.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1620,4320.000000,152,0,34110.000000,1755.950000,baseline,nbiot,180 +on12,0,0,24,1,0,3129,4320.000000,153,0,62385.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3240,4320.000000,153,0,66102.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,153,0,-1.000000,2040.650000,baseline,nbiot,180 +on6,0,0,24,1,0,4140,4320.000000,153,0,83692.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4281,4320.000000,153,0,-1.000000,1850.200000,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,153,0,17008.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2289,4320.000000,153,0,46278.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,153,0,26091.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,751,4320.000000,153,0,16954.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,153,0,18447.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,400,4320.000000,153,0,9422.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,241,4320.000000,153,0,5480.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3261,4320.000000,153,0,66142.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,154,0,5623.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,827,4320.000000,154,0,16513.000000,1871.000000,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,154,0,8907.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2938,4320.000000,154,0,59210.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,549,4320.000000,154,0,13640.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,492,4320.000000,154,0,8814.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,154,0,-1.000000,2050.400000,baseline,nbiot,180 +on10,0,0,24,1,0,2676,4320.000000,154,0,54270.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,154,0,13600.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,474,4320.000000,154,0,8774.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3344,4320.000000,154,0,64960.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,35,4320.000000,154,0,3145.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3391,4320.000000,155,0,69427.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,155,0,52798.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,965,4320.000000,155,0,20254.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,155,0,13955.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,155,0,32559.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,155,0,63982.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,720,4320.000000,155,0,15762.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,155,0,2698.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2716,4320.000000,155,0,54135.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3240,4320.000000,155,0,65698.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,4244,4320.000000,155,0,86230.000000,1756.600000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,155,0,-1.000000,2062.100000,baseline,nbiot,180 +on12,0,0,24,1,0,4173,4320.000000,155,0,86270.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2700,4320.000000,156,0,55037.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2520,4320.000000,156,0,52252.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3343,4320.000000,156,0,67989.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,807,4320.000000,156,0,15037.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3107,4320.000000,156,0,62126.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1980,4320.000000,156,0,39807.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,382,4320.000000,156,0,9856.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,435,4320.000000,156,0,9816.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,156,0,-1.000000,2005.550000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3259,4320.000000,156,0,67949.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,919,4320.000000,156,0,20860.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1217,4320.000000,157,0,23965.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,157,0,-1.000000,1991.250000,baseline,nbiot,180 +on7,0,0,24,0,0,4305,4320.000000,157,0,-1.000000,1738.400000,baseline,nbiot,180 +on10,0,0,24,1,0,2823,4320.000000,157,0,54446.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,157,0,49769.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,157,0,6093.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,60,4320.000000,157,0,1890.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,157,0,24081.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,157,0,1934.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3032,4320.000000,157,0,63565.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1892,4320.000000,157,0,37208.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4298,4320.000000,158,0,-1.000000,1742.950000,baseline,nbiot,180 +on8,0,0,24,1,0,1647,4320.000000,158,0,33314.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3480,4320.000000,158,0,70093.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,158,0,2238.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1443,4320.000000,158,0,31216.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3960,4320.000000,158,0,80221.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,238,4320.000000,158,0,5230.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,158,0,11606.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,158,0,-1.000000,2056.250000,baseline,nbiot,180 +on1,0,0,24,1,0,157,4320.000000,158,0,5293.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1407,4320.000000,158,0,31273.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2677,4320.000000,158,0,56256.000000,1769.600000,baseline,nbiot,180 +on10,0,0,24,1,0,1688,4320.000000,159,0,35763.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,691,4320.000000,159,0,15897.000000,1871.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1250,4320.000000,159,0,27448.000000,1871.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4283,4320.000000,159,0,-1.000000,1859.950000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,159,0,746.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2962,4320.000000,159,0,59737.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,417,4320.000000,159,0,10159.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,159,0,11871.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,159,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1510,4320.000000,159,0,31788.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2160,4320.000000,159,0,43797.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,159,0,-1.000000,2060.800000,baseline,nbiot,180 +on9,0,0,24,1,0,638,4320.000000,159,0,11828.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2633,4320.000000,160,0,53642.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2700,4320.000000,160,0,54928.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,829,4320.000000,160,0,16926.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1959,4320.000000,160,0,41262.000000,1768.300000,baseline,nbiot,180 +on8,0,0,24,1,0,558,4320.000000,160,0,11462.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1911,4320.000000,160,0,39231.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,160,0,-1.000000,2054.300000,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,160,0,2762.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2113,4320.000000,160,0,41182.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2001,4320.000000,160,0,41222.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,655,4320.000000,160,0,11382.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,369,4320.000000,160,0,7918.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,568,4320.000000,160,0,11422.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1,4320.000000,161,0,1807.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3436,4320.000000,161,0,68949.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2394,4320.000000,161,0,48001.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4288,4320.000000,161,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,161,0,34535.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,943,4320.000000,161,0,19242.000000,1763.750000,baseline,nbiot,180 +on4,0,0,24,1,0,1471,4320.000000,161,0,29000.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,161,0,-1.000000,2044.550000,baseline,nbiot,180 +on11,0,0,24,0,0,4312,4320.000000,161,0,-1.000000,1845.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3960,4320.000000,161,0,80816.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,828,4320.000000,161,0,17713.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,161,0,48123.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3751,4320.000000,161,0,77881.000000,1773.500000,baseline,nbiot,180 +on11,0,0,24,1,0,583,4320.000000,162,0,11036.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2031,4320.000000,162,0,40807.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2288,4320.000000,162,0,44094.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,756,4320.000000,162,0,14510.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1704,4320.000000,162,0,35128.000000,1754.650000,baseline,nbiot,180 +on7,0,0,24,1,0,209,4320.000000,162,0,6472.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4304,4320.000000,162,0,-1.000000,1739.050000,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,162,0,393.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,162,0,-1.000000,1973.700000,baseline,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,162,0,37833.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1139,4320.000000,162,0,24978.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,163,0,23533.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,163,0,29713.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3234,4320.000000,163,0,66141.000000,1758.550000,baseline,nbiot,180 +on1,0,0,24,1,0,2422,4320.000000,163,0,49923.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,163,0,53718.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1066,4320.000000,163,0,23573.000000,1763.750000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,163,0,-1.000000,2062.750000,baseline,nbiot,180 +on7,0,0,24,1,0,668,4320.000000,163,0,13143.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,182,4320.000000,163,0,4667.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,423,4320.000000,163,0,9855.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2187,4320.000000,163,0,44723.000000,1762.450000,baseline,nbiot,180 +on4,0,0,24,1,0,1680,4320.000000,163,0,35252.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,163,0,4759.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,164,0,6913.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,164,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,164,0,10145.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1495,4320.000000,164,0,31985.000000,1853.450000,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,164,0,33231.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1428,4320.000000,164,0,32025.000000,1981.500000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,164,0,-1.000000,2011.400000,baseline,nbiot,180 +on2,0,0,24,0,0,4281,4320.000000,164,0,-1.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,522,4320.000000,164,0,13599.000000,1766.350000,baseline,nbiot,180 +on10,0,0,24,1,0,3479,4320.000000,164,0,69710.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,164,0,16148.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,164,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,164,0,37708.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2950,4320.000000,165,0,58564.000000,1855.400000,baseline,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,165,0,29673.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1293,4320.000000,165,0,27701.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3317,4320.000000,165,0,65155.000000,1759.850000,baseline,nbiot,180 +on8,0,0,24,1,0,479,4320.000000,165,0,9724.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,165,0,-1.000000,2091.350000,baseline,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,165,0,27767.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2663,4320.000000,165,0,55614.000000,1778.700000,baseline,nbiot,180 +on11,0,0,24,1,0,585,4320.000000,165,0,12406.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1080,4320.000000,165,0,23436.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2376,4320.000000,165,0,48396.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1077,4320.000000,165,0,23370.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,165,0,9781.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3931,4320.000000,166,0,80106.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,166,0,6307.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,166,0,-1.000000,2062.750000,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,166,0,8399.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2550,4320.000000,166,0,53235.000000,1754.650000,baseline,nbiot,180 +on4,0,0,24,1,0,3562,4320.000000,166,0,72294.000000,1779.350000,baseline,nbiot,180 +on1,0,0,24,1,0,23,4320.000000,166,0,1149.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3164,4320.000000,166,0,61916.000000,1757.250000,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,166,0,18790.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2443,4320.000000,166,0,49334.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,166,0,12667.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,186,4320.000000,166,0,6347.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,166,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3655,4320.000000,167,0,74123.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,287,4320.000000,167,0,5893.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1114,4320.000000,167,0,24428.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,167,0,37503.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,51,4320.000000,167,0,2252.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,167,0,-1.000000,2014.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1635,4320.000000,167,0,32900.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,46,4320.000000,167,0,2292.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,167,0,8035.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,167,0,68087.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,167,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,370,4320.000000,167,0,8075.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,799,4320.000000,167,0,15213.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2506,4320.000000,168,0,52105.000000,1764.400000,baseline,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,168,0,29583.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,906,4320.000000,168,0,21168.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1612,4320.000000,168,0,33120.000000,1871.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1768,4320.000000,168,0,37061.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,639,4320.000000,168,0,10978.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,168,0,5397.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1688,4320.000000,168,0,33044.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,168,0,-1.000000,2120.600000,baseline,nbiot,180 +on7,0,0,24,1,0,3747,4320.000000,168,0,76093.000000,1776.100000,baseline,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,168,0,37131.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3600,4320.000000,168,0,74398.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2369,4320.000000,168,0,48252.000000,1774.800000,baseline,nbiot,180 +on4,0,0,24,1,0,2594,4320.000000,169,0,52008.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2036,4320.000000,169,0,40603.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2700,4320.000000,169,0,55815.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,169,0,24160.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2321,4320.000000,169,0,48273.000000,1875.550000,baseline,nbiot,180 +on1,0,0,24,1,0,268,4320.000000,169,0,4486.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,169,0,20540.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,169,0,9329.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,169,0,-1.000000,2045.200000,baseline,nbiot,180 +on3,0,0,24,1,0,3641,4320.000000,169,0,74567.000000,1769.600000,baseline,nbiot,180 +on10,0,0,24,1,0,2878,4320.000000,169,0,58112.000000,1871.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,169,0,24240.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,170,0,32753.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,170,0,27136.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2880,4320.000000,170,0,59444.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,555,4320.000000,170,0,11074.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2318,4320.000000,170,0,49449.000000,1871.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4292,4320.000000,170,0,-1.000000,2079.000000,baseline,nbiot,180 +on7,0,0,24,1,0,558,4320.000000,170,0,11034.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,170,0,579.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,170,0,20090.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3638,4320.000000,170,0,72916.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,170,0,-1.000000,2054.950000,baseline,nbiot,180 +on6,0,0,24,1,0,3420,4320.000000,170,0,70775.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,9,4320.000000,170,0,619.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,171,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,171,0,1700.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1701,4320.000000,171,0,34125.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4284,4320.000000,171,0,-1.000000,1752.050000,baseline,nbiot,180 +on7,0,0,24,1,0,237,4320.000000,171,0,4708.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2224,4320.000000,171,0,44685.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3609,4320.000000,171,0,72109.000000,1759.850000,baseline,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,171,0,7691.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,171,0,13300.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2340,4320.000000,171,0,47220.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,171,0,-1.000000,2017.900000,baseline,nbiot,180 +on1,0,0,24,1,0,1183,4320.000000,171,0,22460.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3500,4320.000000,171,0,69907.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,639,4320.000000,172,0,11819.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,172,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1466,4320.000000,172,0,30177.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1492,4320.000000,172,0,30217.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,172,0,-1.000000,2004.250000,baseline,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,172,0,65374.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4305,4320.000000,172,0,-1.000000,1738.400000,baseline,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,172,0,24551.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2055,4320.000000,172,0,41417.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3785,4320.000000,172,0,77771.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,114,4320.000000,172,0,912.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,172,0,21442.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3240,4320.000000,172,0,65460.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3780,4320.000000,173,0,77909.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,173,0,-1.000000,2067.300000,baseline,nbiot,180 +on11,0,0,24,1,0,3605,4320.000000,173,0,72430.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,173,0,65579.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1505,4320.000000,173,0,29332.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2520,4320.000000,173,0,51941.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1343,4320.000000,173,0,27784.000000,1763.100000,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,173,0,1738.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,173,0,17139.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,617,4320.000000,173,0,12642.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,33,4320.000000,173,0,1778.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3334,4320.000000,173,0,65537.000000,1772.200000,baseline,nbiot,180 +on4,0,0,24,1,0,2443,4320.000000,173,0,49670.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,174,0,37138.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2891,4320.000000,174,0,60958.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,444,4320.000000,174,0,7677.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,174,0,19897.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,174,0,24106.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1808,4320.000000,174,0,37178.000000,1767.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2128,4320.000000,174,0,45906.000000,1775.450000,baseline,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,174,0,35338.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,627,4320.000000,174,0,12137.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,165,4320.000000,174,0,6579.000000,1764.400000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,174,0,-1.000000,2082.900000,baseline,nbiot,180 +on2,0,0,24,1,0,4104,4320.000000,174,0,86042.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,5,4320.000000,175,0,3347.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,781,4320.000000,175,0,17350.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,175,0,10497.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,207,4320.000000,175,0,6468.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,175,0,-1.000000,2004.250000,baseline,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,175,0,52665.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,920,4320.000000,175,0,18817.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,659,4320.000000,175,0,13546.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,175,0,31145.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,731,4320.000000,175,0,17390.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,175,0,3307.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,175,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,175,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4285,4320.000000,176,0,-1.000000,1751.400000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,132,4320.000000,176,0,524.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2375,4320.000000,176,0,49395.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,615,4320.000000,176,0,12841.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,176,0,29173.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1501,4320.000000,176,0,29047.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1739,4320.000000,176,0,35542.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2435,4320.000000,176,0,49355.000000,1871.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1800,4320.000000,176,0,38402.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,176,0,-1.000000,2017.900000,baseline,nbiot,180 +on1,0,0,24,1,0,2823,4320.000000,176,0,54834.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,995,4320.000000,176,0,20736.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,95,4320.000000,177,0,309.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,177,0,51177.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,177,0,5806.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1173,4320.000000,177,0,23414.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4318,4320.000000,177,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,177,0,7698.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,299,4320.000000,177,0,5693.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,177,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4313,4320.000000,177,0,-1.000000,1845.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,177,0,-1.000000,1969.150000,baseline,nbiot,180 +on1,0,0,24,1,0,2372,4320.000000,177,0,47421.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,177,0,20943.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,177,0,16517.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,178,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,287,4320.000000,178,0,4637.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,178,0,37823.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,178,0,4723.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,178,0,41557.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,178,0,-1.000000,2014.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3090,4320.000000,178,0,63171.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1662,4320.000000,178,0,33905.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,178,0,14798.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,178,0,13236.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,387,4320.000000,178,0,10205.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,178,0,20406.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3378,4320.000000,178,0,67780.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,179,0,26385.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,552,4320.000000,179,0,12383.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,179,0,8490.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,179,0,5899.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,179,0,-1.000000,2058.850000,baseline,nbiot,180 +on9,0,0,24,1,0,22,4320.000000,179,0,3290.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,391,4320.000000,179,0,8400.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,179,0,12343.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3420,4320.000000,179,0,71789.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3893,4320.000000,179,0,80071.000000,1798.850000,baseline,nbiot,180 +on10,0,0,24,1,0,401,4320.000000,179,0,8360.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3649,4320.000000,179,0,74230.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,539,4320.000000,180,0,13129.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,631,4320.000000,180,0,13057.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2580,4320.000000,180,0,53561.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,180,0,5595.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,838,4320.000000,180,0,16912.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,125,4320.000000,180,0,3263.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3420,4320.000000,180,0,70187.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,423,4320.000000,180,0,9799.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3644,4320.000000,180,0,72524.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,180,0,-1.000000,2054.300000,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,180,0,42001.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2627,4320.000000,180,0,53521.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,382,4320.000000,180,0,9839.000000,1759.850000,baseline,nbiot,180 +on12,0,0,24,1,0,115,4320.000000,181,0,2694.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,181,0,18997.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,181,0,2774.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,181,0,11400.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3568,4320.000000,181,0,72581.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,4263,4320.000000,181,0,84827.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,181,0,-1.000000,2034.800000,baseline,nbiot,180 +on9,0,0,24,1,0,1355,4320.000000,181,0,27554.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1151,4320.000000,181,0,24081.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1056,4320.000000,181,0,24121.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,181,0,42289.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,182,0,31745.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,635,4320.000000,182,0,13934.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1143,4320.000000,182,0,23420.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,182,0,14048.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,182,0,54531.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3780,4320.000000,182,0,78525.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,62,4320.000000,182,0,3101.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4274,4320.000000,182,0,-1.000000,1962.000000,baseline,nbiot,180 +on2,0,0,24,1,0,684,4320.000000,182,0,14464.000000,1871.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,182,0,-1.000000,2017.250000,baseline,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,182,0,39419.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1037,4320.000000,183,0,21246.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,571,4320.000000,183,0,11742.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2823,4320.000000,183,0,55927.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,183,0,42524.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1617,4320.000000,183,0,33652.000000,1871.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,183,0,-1.000000,1990.600000,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,183,0,22928.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2160,4320.000000,183,0,46447.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,370,4320.000000,183,0,7601.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,258,4320.000000,183,0,5280.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2050,4320.000000,183,0,42408.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1935,4320.000000,184,0,36542.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,184,0,42698.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,184,0,19629.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,184,0,17521.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1367,4320.000000,184,0,26447.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,189,4320.000000,184,0,6234.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,184,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1800,4320.000000,184,0,36633.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2757,4320.000000,184,0,56529.000000,1774.150000,baseline,nbiot,180 +on12,0,0,24,1,0,2160,4320.000000,184,0,45199.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2495,4320.000000,184,0,51971.000000,1770.900000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,184,0,-1.000000,2051.050000,baseline,nbiot,180 +on8,0,0,24,1,0,1085,4320.000000,184,0,22454.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2026,4320.000000,185,0,42643.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,24,4320.000000,185,0,1938.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4280,4320.000000,185,0,-1.000000,1865.800000,baseline,nbiot,180 +on4,0,0,24,0,0,4282,4320.000000,185,0,-1.000000,1753.350000,baseline,nbiot,180 +on9,0,0,24,1,0,3039,4320.000000,185,0,63110.000000,1768.300000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,185,0,2026.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3368,4320.000000,185,0,66962.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,185,0,-1.000000,2064.700000,baseline,nbiot,180 +on12,0,0,24,1,0,886,4320.000000,185,0,19524.000000,1763.750000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,185,0,14150.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,977,4320.000000,185,0,19454.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,185,0,16298.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,185,0,16358.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,497,4320.000000,186,0,9878.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,213,4320.000000,186,0,5565.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3362,4320.000000,186,0,66250.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,186,0,-1.000000,2006.200000,baseline,nbiot,180 +on6,0,0,24,1,0,1554,4320.000000,186,0,30752.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,258,4320.000000,186,0,5605.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,94,4320.000000,186,0,2319.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,186,0,12208.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,375,4320.000000,186,0,9918.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1953,4320.000000,186,0,40427.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,186,0,52266.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,643,4320.000000,187,0,11812.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,309,4320.000000,187,0,6904.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,187,0,30356.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,187,0,2035.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,187,0,-1.000000,2037.400000,baseline,nbiot,180 +on3,0,0,24,1,0,4140,4320.000000,187,0,84969.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1931,4320.000000,187,0,36326.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,752,4320.000000,187,0,15578.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1641,4320.000000,187,0,35596.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3385,4320.000000,187,0,71458.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,1,0,136,4320.000000,187,0,1995.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1446,4320.000000,187,0,30304.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2628,4320.000000,188,0,52290.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,188,0,40103.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1134,4320.000000,188,0,24590.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,188,0,25775.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4315,4320.000000,188,0,-1.000000,1731.900000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,188,0,-1.000000,1982.800000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,188,0,2427.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,188,0,17076.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1963,4320.000000,188,0,40197.000000,1871.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,188,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,533,4320.000000,188,0,13970.000000,1871.000000,baseline,nbiot,180 +on7,0,0,24,1,0,464,4320.000000,188,0,9820.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,188,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1100,4320.000000,189,0,23690.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1462,4320.000000,189,0,31372.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,189,0,12478.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,189,0,-1.000000,2049.100000,baseline,nbiot,180 +on6,0,0,24,1,0,2710,4320.000000,189,0,56698.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,189,0,2870.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,18,4320.000000,189,0,2910.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,189,0,25951.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,189,0,23732.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,198,4320.000000,189,0,6545.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,189,0,40827.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4303,4320.000000,189,0,-1.000000,1739.700000,baseline,nbiot,180 +on8,0,0,24,1,0,2912,4320.000000,189,0,59535.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2887,4320.000000,190,0,59306.000000,1871.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1143,4320.000000,190,0,23194.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1539,4320.000000,190,0,32057.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,190,0,5120.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1077,4320.000000,190,0,23260.000000,1830.700000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,206,4320.000000,190,0,5160.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4255,4320.000000,190,0,-1.000000,1865.150000,baseline,nbiot,180 +on2,0,0,24,1,0,1723,4320.000000,190,0,33319.000000,1871.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,190,0,-1.000000,2056.250000,baseline,nbiot,180 +on1,0,0,24,1,0,2514,4320.000000,190,0,50768.000000,1758.550000,baseline,nbiot,180 +on6,0,0,24,0,0,4284,4320.000000,190,0,-1.000000,1752.050000,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,190,0,18801.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2021,4320.000000,191,0,40793.000000,1871.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1929,4320.000000,191,0,37253.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1028,4320.000000,191,0,19066.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3510,4320.000000,191,0,68839.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,191,0,-1.000000,2039.350000,baseline,nbiot,180 +on5,0,0,24,1,0,312,4320.000000,191,0,3786.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2550,4320.000000,191,0,52119.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,191,0,8656.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,832,4320.000000,191,0,17612.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1838,4320.000000,191,0,37213.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,728,4320.000000,191,0,17652.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1298,4320.000000,191,0,26997.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,192,0,65160.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,270,4320.000000,192,0,5772.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,192,0,40834.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,4087,4320.000000,192,0,81525.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,104,4320.000000,192,0,967.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4309,4320.000000,192,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1664,4320.000000,192,0,35627.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1620,4320.000000,192,0,35709.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1491,4320.000000,192,0,31029.000000,1871.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1865,4320.000000,192,0,38847.000000,1754.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,192,0,-1.000000,2032.850000,baseline,nbiot,180 +on11,0,0,24,1,0,317,4320.000000,192,0,5732.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,192,0,38949.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2523,4320.000000,193,0,50697.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,193,0,-1.000000,2079.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,193,0,30119.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2546,4320.000000,193,0,50657.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,699,4320.000000,193,0,15291.000000,1768.300000,baseline,nbiot,180 +on10,0,0,24,1,0,1516,4320.000000,193,0,30074.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3217,4320.000000,193,0,67475.000000,1769.600000,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,193,0,9679.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2037,4320.000000,193,0,42105.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3452,4320.000000,193,0,71425.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1477,4320.000000,193,0,30034.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2827,4320.000000,193,0,56650.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,817,4320.000000,193,0,15197.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3545,4320.000000,194,0,69064.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,194,0,23138.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2700,4320.000000,194,0,54289.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,194,0,51224.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,194,0,29160.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1042,4320.000000,194,0,23229.000000,1871.000000,baseline,nbiot,180 +on1,0,0,24,1,0,48,4320.000000,194,0,2243.000000,1754.000000,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,194,0,-1.000000,2070.550000,baseline,nbiot,180 +on2,0,0,24,1,0,2547,4320.000000,194,0,51141.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1707,4320.000000,194,0,35680.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1507,4320.000000,194,0,29057.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2744,4320.000000,194,0,54218.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2608,4320.000000,194,0,51101.000000,1871.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2435,4320.000000,195,0,46943.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,436,4320.000000,195,0,8135.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,195,0,11905.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3600,4320.000000,195,0,75394.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,370,4320.000000,195,0,8175.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4318,4320.000000,195,0,-1.000000,1729.950000,baseline,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,195,0,39172.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3636,4320.000000,195,0,75329.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,195,0,17676.000000,1754.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,195,0,-1.000000,2017.900000,baseline,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,195,0,20877.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4304,4320.000000,195,0,-1.000000,1845.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1914,4320.000000,195,0,39065.000000,1770.900000,baseline,nbiot,180 +on3,0,0,24,1,0,209,4320.000000,196,0,4212.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3268,4320.000000,196,0,65549.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4316,4320.000000,196,0,-1.000000,1731.250000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,196,0,-1.000000,1985.400000,baseline,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,196,0,20287.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4290,4320.000000,196,0,-1.000000,1748.150000,baseline,nbiot,180 +on11,0,0,24,1,0,2807,4320.000000,196,0,55771.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,225,4320.000000,196,0,4257.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,196,0,24331.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,196,0,7963.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1337,4320.000000,196,0,25817.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,196,0,17000.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,777,4320.000000,197,0,15914.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,938,4320.000000,197,0,18641.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4293,4320.000000,197,0,-1.000000,1845.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1958,4320.000000,197,0,41321.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1671,4320.000000,197,0,32913.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,385,4320.000000,197,0,10290.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2470,4320.000000,197,0,49709.000000,1871.000000,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,197,0,10250.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,197,0,-1.000000,2001.000000,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,197,0,6251.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,36,4320.000000,197,0,1853.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,198,0,3039.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,198,0,23041.000000,1754.000000,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,198,0,4514.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,198,0,-1.000000,1978.900000,baseline,nbiot,180 +on3,0,0,24,1,0,804,4320.000000,198,0,14904.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,739,4320.000000,198,0,14944.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3060,4320.000000,198,0,64372.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4300,4320.000000,198,0,-1.000000,1845.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1436,4320.000000,198,0,30749.000000,1757.250000,baseline,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,198,0,19124.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,4,4320.000000,198,0,3079.000000,1754.000000,baseline,nbiot,180 +on9,0,0,24,1,0,634,4320.000000,199,0,11762.000000,1754.000000,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,199,0,6466.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1118,4320.000000,199,0,22289.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,199,0,15640.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,199,0,49681.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4295,4320.000000,199,0,-1.000000,1744.900000,baseline,nbiot,180 +on11,0,0,24,1,0,802,4320.000000,199,0,15577.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1080,4320.000000,199,0,22249.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1584,4320.000000,199,0,32541.000000,1871.000000,baseline,nbiot,180 +on4,0,0,24,1,0,861,4320.000000,199,0,21267.000000,1780.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,199,0,-1.000000,2054.950000,baseline,nbiot,180 +on7,0,0,24,1,0,793,4320.000000,199,0,15537.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3144,4320.000000,200,0,61329.000000,1754.000000,baseline,nbiot,180 +on1,0,0,24,1,0,2880,4320.000000,200,0,58725.000000,1754.000000,baseline,nbiot,180 +on8,0,0,24,1,0,13,4320.000000,200,0,3412.000000,1754.000000,baseline,nbiot,180 +on11,0,0,24,1,0,377,4320.000000,200,0,8518.000000,1754.000000,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,200,0,8633.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2700,4320.000000,200,0,55798.000000,1754.000000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,200,0,-1.000000,1962.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3310,4320.000000,200,0,66154.000000,1754.000000,baseline,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,200,0,20338.000000,1754.000000,baseline,nbiot,180 +on3,0,0,24,1,0,111,4320.000000,200,0,3372.000000,1754.000000,baseline,nbiot,180 +on6,0,0,24,1,0,475,4389.000000,1,1,8299.600960,1826.450000,hint,nbiot,180 +on4,0,0,26,1,0,363,4680.000000,1,3,11766.000320,2177.500208,hint,nbiot,180 +on9,0,0,25,1,0,1102,4500.000000,1,1,25587.000320,2128.250000,hint,nbiot,180 +on12,0,0,25,1,0,900,4500.000000,1,1,18289.600640,2074.105208,hint,nbiot,180 +on11,0,0,25,1,0,1011,4500.000000,1,1,22575.000320,1919.600000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,1,0,-1.000000,2042.865824,hint,nbiot,180 +on7,0,0,26,1,0,929,4743.000000,1,4,22615.000960,2284.143960,hint,nbiot,180 +on2,0,0,27,1,0,807,4860.000000,1,3,18205.000960,2223.498960,hint,nbiot,180 +on1,0,0,25,1,0,775,4500.000000,1,2,18165.000320,2021.650000,hint,nbiot,180 +on10,0,0,24,1,0,367,4320.000000,1,0,8258.000320,1894.010000,hint,nbiot,180 +on3,0,0,25,1,0,1440,4500.000000,1,1,29232.000320,1917.000000,hint,nbiot,180 +on8,0,0,24,1,0,314,4320.000000,1,0,4398.000320,1822.250416,hint,nbiot,180 +on5,0,0,25,1,0,653,4500.000000,1,1,16301.000640,1916.349792,hint,nbiot,180 +on6,0,0,24,1,0,859,4320.000000,2,0,16377.000320,1817.700416,hint,nbiot,180 +on7,0,0,24,1,0,117,4320.000000,2,0,2963.000320,1801.060416,hint,nbiot,180 +on2,0,0,24,1,0,995,4320.000000,2,0,20058.000320,1783.250416,hint,nbiot,180 +on12,0,0,25,1,0,294,4500.000000,2,1,6057.000320,1985.251040,hint,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,hint,nbiot,180 +on3,0,0,26,1,0,1174,4680.000000,2,2,28026.000320,2421.965000,hint,nbiot,180 +on1,0,0,25,1,0,1002,4500.000000,2,1,24572.000320,2115.899792,hint,nbiot,180 +on11,0,0,26,1,0,1384,4680.000000,2,2,28066.000960,2319.395000,hint,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,2,0,3017.000320,1815.750416,hint,nbiot,180 +on4,0,0,26,1,0,1414,4680.000000,2,2,30942.000320,2357.549792,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,2,0,-1.000000,2047.156240,hint,nbiot,180 +on10,0,0,26,1,0,1253,4680.000000,2,2,24613.600960,1977.950624,hint,nbiot,180 +on9,0,0,24,1,0,2340,4320.000000,2,0,48781.000320,1813.800208,hint,nbiot,180 +on3,0,0,27,1,0,749,4860.000000,3,3,16376.600960,2240.659376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,3,0,-1.000000,2065.353536,hint,nbiot,180 +on4,0,0,26,1,0,578,4680.000000,3,4,16335.000320,2343.508752,hint,nbiot,180 +on6,0,0,25,1,0,724,4500.000000,3,2,16417.201600,1849.464376,hint,nbiot,180 +on11,0,0,24,1,0,63,4320.000000,3,0,1228.000320,1803.009792,hint,nbiot,180 +on7,0,0,25,1,0,171,4500.000000,3,1,3795.000320,2072.219584,hint,nbiot,180 +on2,0,0,24,1,0,383,4320.000000,3,1,9711.000320,1895.310832,hint,nbiot,180 +on10,0,0,25,1,0,38,4500.000000,3,1,1269.600960,1940.270416,hint,nbiot,180 +on12,0,0,26,1,0,666,4680.000000,3,2,14145.000960,2170.349376,hint,nbiot,180 +on1,0,0,26,1,0,747,4680.000000,3,2,14185.001600,1988.609792,hint,nbiot,180 +on8,0,0,24,1,0,580,4320.000000,3,0,14105.000320,1818.350000,hint,nbiot,180 +on5,0,0,25,1,0,494,4500.000000,3,1,9751.000960,2033.219584,hint,nbiot,180 +on9,0,0,25,1,0,836,4500.000000,3,1,18816.000320,2033.350000,hint,nbiot,180 +on12,0,0,24,1,0,564,4320.000000,4,0,10864.000320,1877.759584,hint,nbiot,180 +on10,0,0,26,1,0,914,4680.000000,4,2,18371.000320,2195.699792,hint,nbiot,180 +on9,0,0,25,1,0,385,4500.000000,4,2,10396.600960,2014.955208,hint,nbiot,180 +on2,0,0,25,1,0,349,4500.000000,4,1,10305.000320,1987.330208,hint,nbiot,180 +on7,0,0,25,1,0,833,4500.000000,4,1,17672.000320,1916.350000,hint,nbiot,180 +on1,0,0,25,1,0,541,4500.000000,4,1,10975.600320,1953.270208,hint,nbiot,180 +on5,0,0,25,1,0,745,4500.000000,4,2,17761.600960,1826.195416,hint,nbiot,180 +on3,0,0,25,1,0,0,4500.000000,4,2,4518.000320,2057.270000,hint,nbiot,180 +on6,0,0,25,1,0,806,4667.000000,4,2,17721.000320,2182.699792,hint,nbiot,180 +on4,0,0,26,1,0,445,4680.000000,4,3,10356.000320,2123.810000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,4,0,-1.000000,2040.004576,hint,nbiot,180 +on8,0,0,24,1,0,12,4320.000000,4,0,988.000320,1754.000416,hint,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,4,0,1070.000320,1845.000000,hint,nbiot,180 +on8,0,0,24,1,0,59,4320.000000,5,0,2108.000320,1806.000000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,5,0,-1.000000,2061.973952,hint,nbiot,180 +on5,0,0,25,1,0,540,4500.000000,5,1,14255.600640,1826.195416,hint,nbiot,180 +on2,0,0,25,1,0,17,4500.000000,5,1,2148.000960,2021.259792,hint,nbiot,180 +on9,0,0,26,1,0,424,4680.000000,5,3,10123.000320,2084.159168,hint,nbiot,180 +on3,0,0,25,1,0,260,4500.000000,5,1,5296.000960,1938.449168,hint,nbiot,180 +on1,0,0,26,1,0,267,4792.000000,5,3,10243.401280,2278.134792,hint,nbiot,180 +on11,0,0,24,1,0,130,4339.000000,5,1,5256.000320,1852.145000,hint,nbiot,180 +on7,0,0,27,1,0,360,4860.000000,5,3,14135.000320,2555.129376,hint,nbiot,180 +on6,0,0,26,1,0,618,4773.000000,5,3,16227.000320,2500.699584,hint,nbiot,180 +on12,0,0,25,1,0,496,4500.000000,5,1,10163.000960,1891.585000,hint,nbiot,180 +on10,0,0,26,1,0,539,4680.000000,5,2,10203.400640,1955.199584,hint,nbiot,180 +on4,0,0,29,1,0,555,5220.000000,5,6,16267.000960,2631.398544,hint,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,6,0,41254.000320,1845.000000,hint,nbiot,180 +on1,0,0,24,1,0,1177,4320.000000,6,0,24399.000320,1807.560000,hint,nbiot,180 +on5,0,0,24,1,0,651,4320.000000,6,0,11662.000320,1837.460000,hint,nbiot,180 +on6,0,0,24,1,0,1620,4320.000000,6,0,33123.000320,1754.000208,hint,nbiot,180 +on10,0,0,26,1,0,875,4680.000000,6,2,17812.600960,2082.599792,hint,nbiot,180 +on3,0,0,24,1,0,930,4320.000000,6,0,20100.000320,1824.460000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,6,0,-1.000000,2040.004784,hint,nbiot,180 +on2,0,0,26,1,0,1414,4680.000000,6,3,28975.000320,2195.700000,hint,nbiot,180 +on11,0,0,26,1,0,773,4680.000000,6,2,20141.600960,2204.150208,hint,nbiot,180 +on4,0,0,25,1,0,1193,4500.000000,6,1,27562.000320,1872.800416,hint,nbiot,180 +on7,0,0,24,1,0,28,4320.000000,6,0,2582.000320,1966.810832,hint,nbiot,180 +on9,0,0,25,1,0,892,4500.000000,6,1,17771.000320,1954.309792,hint,nbiot,180 +on12,0,0,24,1,0,193,4320.000000,6,0,3899.000320,1754.000208,hint,nbiot,180 +on2,0,0,25,1,0,293,4500.000000,7,1,9349.000320,2218.664584,hint,nbiot,180 +on10,0,0,27,1,0,821,4860.000000,7,3,21334.000320,2384.959168,hint,nbiot,180 +on3,0,0,25,1,0,1671,4500.000000,7,1,35632.000320,1982.000000,hint,nbiot,180 +on6,0,0,27,1,0,621,4860.000000,7,3,10950.000960,2200.619584,hint,nbiot,180 +on5,0,0,25,1,0,335,4500.000000,7,1,9389.000960,2007.349584,hint,nbiot,180 +on4,0,0,25,1,0,474,4500.000000,7,2,16366.000320,2033.675000,hint,nbiot,180 +on12,0,0,24,1,0,16,4320.000000,7,0,330.000320,1846.820208,hint,nbiot,180 +on9,0,0,26,1,0,560,4680.000000,7,2,10910.000320,2137.394584,hint,nbiot,180 +on8,0,0,26,1,0,707,4830.000000,7,4,21375.600960,2455.250000,hint,nbiot,180 +on7,0,0,27,1,0,511,4860.000000,7,4,10990.601600,2269.585208,hint,nbiot,180 +on11,0,0,25,1,0,181,4500.000000,7,1,5017.600320,1852.260416,hint,nbiot,180 +on1,0,0,25,1,0,260,4500.000000,7,1,4879.000320,1911.020416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,7,0,-1.000000,2040.005200,hint,nbiot,180 +on7,0,0,24,1,0,726,4482.000000,8,1,20125.000320,2127.159584,hint,nbiot,180 +on2,0,0,24,1,0,547,4320.000000,8,0,13260.000320,1839.800208,hint,nbiot,180 +on11,0,0,24,1,0,277,4320.000000,8,0,5471.000320,1780.909792,hint,nbiot,180 +on12,0,0,25,1,0,588,4500.000000,8,2,13304.801280,1827.690832,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,8,0,-1.000000,2049.754576,hint,nbiot,180 +on6,0,0,25,1,0,1116,4500.000000,8,1,22499.000320,1980.179792,hint,nbiot,180 +on3,0,0,24,1,0,1297,4320.000000,8,0,28655.000320,1820.950000,hint,nbiot,180 +on5,0,0,26,1,0,332,4680.000000,8,2,7883.000320,2307.759792,hint,nbiot,180 +on4,0,0,29,1,0,806,5220.000000,8,5,22540.600960,2860.198752,hint,nbiot,180 +on1,0,0,26,1,0,310,4680.000000,8,3,5512.600960,2005.444792,hint,nbiot,180 +on8,0,0,26,1,0,874,4680.000000,8,2,20166.600960,2228.850000,hint,nbiot,180 +on9,0,0,24,1,0,3,4320.000000,8,0,1696.000320,1756.600000,hint,nbiot,180 +on10,0,0,25,1,0,717,4500.000000,8,1,14805.000320,2028.409584,hint,nbiot,180 +on4,0,0,26,1,0,478,4680.000000,9,2,11346.000320,2226.119792,hint,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,9,0,2188.000320,1870.610000,hint,nbiot,180 +on1,0,0,25,1,0,316,4500.000000,9,1,6204.000320,2067.670000,hint,nbiot,180 +on5,0,0,24,1,0,41,4320.000000,9,0,2056.000320,1869.310624,hint,nbiot,180 +on8,0,0,25,1,0,774,4500.000000,9,1,17299.000320,1977.580000,hint,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,9,0,2110.000320,1869.310416,hint,nbiot,180 +on7,0,0,25,1,0,2514,4500.000000,9,1,52482.000320,1971.600000,hint,nbiot,180 +on6,0,0,25,1,0,391,4674.000000,9,3,9705.000320,2208.509584,hint,nbiot,180 +on11,0,0,25,1,0,469,4602.000000,9,2,9746.600960,2142.920624,hint,nbiot,180 +on10,0,0,26,1,0,874,4680.000000,9,2,20103.000320,2195.699792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,9,0,-1.000000,2054.566032,hint,nbiot,180 +on9,0,0,26,1,0,873,4680.000000,9,2,17339.000960,2195.504792,hint,nbiot,180 +on3,0,0,26,1,0,1036,4680.000000,9,2,20143.000960,1998.489792,hint,nbiot,180 +on10,0,0,25,1,0,859,4625.000000,10,3,20506.601600,2308.056248,hint,nbiot,180 +on4,0,0,25,1,0,2015,4500.000000,10,1,42198.000320,1920.250208,hint,nbiot,180 +on2,0,0,25,1,0,946,4500.000000,10,1,20426.000320,2032.700624,hint,nbiot,180 +on5,0,0,24,1,0,2724,4320.000000,10,0,54743.000320,1829.400000,hint,nbiot,180 +on7,0,0,24,1,0,120,4320.000000,10,0,1976.000320,1860.860416,hint,nbiot,180 +on1,0,0,24,1,0,671,4320.000000,10,0,13395.000320,1824.850416,hint,nbiot,180 +on11,0,0,25,1,0,1384,4500.000000,10,1,26669.000320,2104.850000,hint,nbiot,180 +on3,0,0,25,1,0,1053,4500.000000,10,1,20466.000960,1890.999584,hint,nbiot,180 +on8,0,0,25,1,0,326,4500.000000,10,2,9470.000320,1922.849792,hint,nbiot,180 +on9,0,0,29,1,0,860,5220.000000,10,8,23368.000320,2802.544376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,10,0,-1.000000,2055.607072,hint,nbiot,180 +on6,0,0,24,1,0,729,4320.000000,10,0,14735.000320,1780.000624,hint,nbiot,180 +on12,0,0,25,1,0,271,4500.000000,10,1,5306.000320,2059.610208,hint,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,11,0,5886.000320,1941.719584,hint,nbiot,180 +on12,0,0,27,1,0,1303,4860.000000,11,3,28858.000320,2394.060000,hint,nbiot,180 +on8,0,0,26,1,0,1060,4680.000000,11,2,22884.600960,2040.350416,hint,nbiot,180 +on5,0,0,25,1,0,1777,4500.000000,11,1,35072.000320,1905.560208,hint,nbiot,180 +on3,0,0,26,1,0,870,4680.000000,11,2,18969.000320,2214.420208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,11,0,-1.000000,2071.205824,hint,nbiot,180 +on1,0,0,24,1,0,2677,4320.000000,11,0,56191.000320,1860.600000,hint,nbiot,180 +on6,0,0,24,1,0,374,4399.000000,11,1,12330.000320,2149.079792,hint,nbiot,180 +on2,0,0,26,1,0,694,4680.000000,11,2,12371.600960,2130.700624,hint,nbiot,180 +on7,0,0,24,1,0,427,4320.000000,11,0,8977.000320,1849.419792,hint,nbiot,180 +on10,0,0,27,1,0,1025,4860.000000,11,4,22843.000320,2486.034584,hint,nbiot,180 +on4,0,0,25,1,0,334,4585.000000,11,2,9018.600960,1971.800000,hint,nbiot,180 +on11,0,0,25,1,0,1598,4500.000000,11,1,35129.600320,1954.050416,hint,nbiot,180 +on11,0,0,26,1,0,728,4680.000000,12,3,13821.601600,2199.730208,hint,nbiot,180 +on6,0,0,26,1,0,694,4680.000000,12,2,16454.000320,2270.968544,hint,nbiot,180 +on4,0,0,25,1,0,1,4500.000000,12,1,1131.600320,1826.000416,hint,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,12,0,21102.000320,1828.750208,hint,nbiot,180 +on5,0,0,27,1,0,917,4860.000000,12,3,22960.000320,2475.244376,hint,nbiot,180 +on9,0,0,26,1,0,898,4680.000000,12,3,21057.601600,2054.649584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,12,0,-1.000000,2040.004368,hint,nbiot,180 +on7,0,0,24,1,0,448,4320.000000,12,0,7890.000320,1868.270208,hint,nbiot,180 +on2,0,0,26,1,0,902,4680.000000,12,2,21017.000960,2081.299584,hint,nbiot,180 +on10,0,0,24,1,0,663,4320.000000,12,0,13741.000320,1880.360000,hint,nbiot,180 +on8,0,0,26,1,0,873,4680.000000,12,2,20977.000320,2168.399792,hint,nbiot,180 +on12,0,0,24,1,0,61,4320.000000,12,0,1071.000320,1791.960208,hint,nbiot,180 +on3,0,0,25,1,0,559,4500.000000,12,1,13781.000960,2025.549792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,13,0,-1.000000,2060.804784,hint,nbiot,180 +on2,0,0,25,1,0,2,4500.000000,13,1,2383.600640,1826.195624,hint,nbiot,180 +on1,0,0,24,1,0,1111,4341.000000,13,1,23314.600960,2133.160000,hint,nbiot,180 +on8,0,0,24,1,0,979,4320.000000,13,0,21063.000320,1953.810416,hint,nbiot,180 +on5,0,0,25,1,0,833,4500.000000,13,1,17514.000320,1982.520000,hint,nbiot,180 +on9,0,0,26,1,0,1414,4680.000000,13,2,26595.600960,1981.200416,hint,nbiot,180 +on3,0,0,25,1,0,1288,4500.000000,13,1,26554.000320,2121.100000,hint,nbiot,180 +on10,0,0,25,1,0,1589,4500.000000,13,1,31625.000320,1917.000000,hint,nbiot,180 +on12,0,0,27,1,0,856,4860.000000,13,5,23273.000320,2466.729168,hint,nbiot,180 +on7,0,0,26,1,0,2133,4680.000000,13,3,45659.000320,2221.700000,hint,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,13,0,11998.000320,1891.020000,hint,nbiot,180 +on4,0,0,25,1,0,2094,4500.000000,13,1,41565.000320,1943.195208,hint,nbiot,180 +on6,0,0,25,1,0,2643,4500.000000,13,1,53453.000320,1917.000000,hint,nbiot,180 +on3,0,0,24,1,0,775,4320.000000,14,0,14810.000320,1805.350624,hint,nbiot,180 +on7,0,0,25,1,0,360,4500.000000,14,1,8652.000320,1830.160624,hint,nbiot,180 +on4,0,0,25,1,0,181,4500.000000,14,2,4160.000320,1989.605000,hint,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,14,0,37924.000320,1933.400208,hint,nbiot,180 +on1,0,0,25,1,0,1013,4500.000000,14,1,19344.000320,1866.950416,hint,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,14,0,3031.000320,2041.560832,hint,nbiot,180 +on8,0,0,26,1,0,334,4680.000000,14,2,4201.600960,2014.350624,hint,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,14,0,19428.000320,1975.000624,hint,nbiot,180 +on10,0,0,24,1,0,75,4320.000000,14,0,2903.000320,1949.650832,hint,nbiot,180 +on2,0,0,25,1,0,4006,4500.000000,14,1,80849.000320,1917.000000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,14,0,-1.000000,2040.007904,hint,nbiot,180 +on9,0,0,25,1,0,614,4500.000000,14,1,13525.000320,2136.830416,hint,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,14,0,2946.000320,2032.850416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,15,0,-1.000000,2052.356240,hint,nbiot,180 +on11,0,0,26,1,0,647,4773.000000,15,3,19069.000320,2603.464792,hint,nbiot,180 +on4,0,0,24,1,0,1217,4320.000000,15,0,24912.000320,1754.909792,hint,nbiot,180 +on1,0,0,27,1,0,669,4860.000000,15,3,17741.000960,2563.579584,hint,nbiot,180 +on8,0,0,25,1,0,1054,4611.000000,15,2,24953.600960,2103.100208,hint,nbiot,180 +on3,0,0,24,1,0,275,4320.000000,15,0,5851.000320,1870.350416,hint,nbiot,180 +on5,0,0,25,1,0,564,4500.000000,15,1,13544.400640,1996.300624,hint,nbiot,180 +on10,0,0,25,1,0,3174,4500.000000,15,1,64591.000320,2034.000000,hint,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,15,2,7969.000320,2391.369792,hint,nbiot,180 +on2,0,0,24,1,0,611,4320.000000,15,0,13464.000320,1866.060208,hint,nbiot,180 +on12,0,0,25,1,0,601,4500.000000,15,1,13504.000960,1986.160000,hint,nbiot,180 +on9,0,0,25,1,0,583,4631.000000,15,2,17701.000320,2420.370000,hint,nbiot,180 +on7,0,0,25,1,0,940,4500.000000,15,2,19109.600960,2039.395208,hint,nbiot,180 +on11,0,0,25,1,0,0,4500.000000,16,2,2827.000320,2254.610208,hint,nbiot,180 +on5,0,0,25,1,0,205,4500.000000,16,2,4471.600960,1913.425000,hint,nbiot,180 +on7,0,0,25,1,0,101,4500.000000,16,2,4348.000320,2030.100000,hint,nbiot,180 +on1,0,0,26,1,0,334,4680.000000,16,2,4388.000960,2060.044584,hint,nbiot,180 +on2,0,0,25,1,0,384,4500.000000,16,1,11545.000320,2014.110208,hint,nbiot,180 +on4,0,0,26,1,0,333,4680.000000,16,2,4431.000320,2159.559584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,16,0,-1.000000,2063.274576,hint,nbiot,180 +on9,0,0,26,1,0,514,4680.000000,16,3,15946.000320,2180.100000,hint,nbiot,180 +on8,0,0,25,1,0,1416,4500.000000,16,1,29587.000320,2044.400000,hint,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,16,0,21729.000320,1896.350208,hint,nbiot,180 +on10,0,0,25,1,0,326,4500.000000,16,1,8806.000320,2004.684168,hint,nbiot,180 +on6,0,0,24,1,0,26,4320.000000,16,0,2707.000320,1776.100208,hint,nbiot,180 +on3,0,0,25,1,0,1080,4500.000000,16,1,21843.000320,2057.660208,hint,nbiot,180 +on2,0,0,28,1,0,723,5040.000000,17,4,23360.000320,2779.099376,hint,nbiot,180 +on8,0,0,24,1,0,117,4320.000000,17,0,1670.000320,1867.620208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,17,0,-1.000000,2040.004784,hint,nbiot,180 +on5,0,0,25,1,0,333,4500.000000,17,1,6635.000960,1890.999584,hint,nbiot,180 +on4,0,0,26,1,0,384,4680.000000,17,2,8691.000320,2310.750000,hint,nbiot,180 +on12,0,0,26,1,0,309,4680.000000,17,2,6675.001600,2063.100416,hint,nbiot,180 +on7,0,0,24,1,0,595,4320.000000,17,0,12657.000320,1897.000000,hint,nbiot,180 +on3,0,0,28,1,0,898,5040.000000,17,4,21399.000960,2511.559168,hint,nbiot,180 +on6,0,0,25,1,0,348,4500.000000,17,1,6595.000320,1916.350000,hint,nbiot,180 +on10,0,0,27,1,0,447,4860.000000,17,4,8731.000960,2171.239168,hint,nbiot,180 +on11,0,0,26,1,0,666,4680.000000,17,2,12697.000960,2128.034584,hint,nbiot,180 +on9,0,0,26,1,0,577,4680.000000,17,2,16324.000320,2278.509792,hint,nbiot,180 +on1,0,0,27,1,0,770,4860.000000,17,4,21359.000320,2416.354376,hint,nbiot,180 +on5,0,0,24,1,0,611,4320.000000,18,0,13010.000320,1961.350624,hint,nbiot,180 +on12,0,0,26,1,0,1105,4680.000000,18,3,21516.601600,2125.500832,hint,nbiot,180 +on7,0,0,26,1,0,1534,4680.000000,18,3,31203.000320,2106.000000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,18,0,-1.000000,2081.215616,hint,nbiot,180 +on1,0,0,26,1,0,1116,4680.000000,18,2,21476.000960,2054.194168,hint,nbiot,180 +on11,0,0,24,1,0,2700,4320.000000,18,0,57342.000320,1754.000208,hint,nbiot,180 +on4,0,0,24,1,0,859,4320.000000,18,0,15719.000320,1824.850416,hint,nbiot,180 +on8,0,0,24,1,0,472,4320.000000,18,0,8934.000320,1848.250208,hint,nbiot,180 +on2,0,0,24,1,0,1145,4320.000000,18,0,22542.000320,1802.100000,hint,nbiot,180 +on6,0,0,26,1,0,766,4680.000000,18,3,21436.000320,2257.319792,hint,nbiot,180 +on3,0,0,27,1,0,1070,4860.000000,18,3,25697.000320,2456.459584,hint,nbiot,180 +on9,0,0,25,1,0,3330,4500.000000,18,1,69878.000320,2206.250000,hint,nbiot,180 +on10,0,0,25,1,0,3080,4500.000000,18,1,66134.000320,2038.940208,hint,nbiot,180 +on7,0,0,26,1,0,614,4680.000000,19,2,12984.000320,2078.309792,hint,nbiot,180 +on2,0,0,24,1,0,285,4320.000000,19,0,5593.000320,1776.100000,hint,nbiot,180 +on1,0,0,25,1,0,181,4500.000000,19,1,5633.000960,2157.369376,hint,nbiot,180 +on10,0,0,25,1,0,1585,4500.000000,19,1,33145.000320,1849.205208,hint,nbiot,180 +on6,0,0,25,1,0,2583,4500.000000,19,1,52323.000320,2084.570000,hint,nbiot,180 +on11,0,0,25,1,0,2825,4500.000000,19,1,55504.000320,1953.400000,hint,nbiot,180 +on9,0,0,26,1,0,177,4680.000000,19,3,5673.601600,2062.450832,hint,nbiot,180 +on3,0,0,25,1,0,293,4500.000000,19,1,9471.000320,2053.500416,hint,nbiot,180 +on5,0,0,24,1,0,2452,4320.000000,19,0,49532.000320,1772.200000,hint,nbiot,180 +on12,0,0,26,1,0,760,4680.000000,19,2,13025.600960,1989.260624,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,19,0,-1.000000,2096.425408,hint,nbiot,180 +on4,0,0,27,1,0,552,4890.000000,19,4,15576.000320,2389.094376,hint,nbiot,180 +on8,0,0,25,1,0,958,4500.000000,19,1,20675.000320,1883.850416,hint,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,20,0,8140.000320,1827.060416,hint,nbiot,180 +on8,0,0,26,1,0,1084,4680.000000,20,3,23351.000320,2078.699584,hint,nbiot,180 +on11,0,0,24,1,0,541,4320.000000,20,0,12874.000320,1952.250208,hint,nbiot,180 +on10,0,0,25,1,0,487,4580.000000,20,3,12954.601600,2157.519376,hint,nbiot,180 +on5,0,0,25,1,0,653,4500.000000,20,1,14844.000320,1916.350000,hint,nbiot,180 +on3,0,0,25,1,0,572,4500.000000,20,1,12994.602240,2214.569792,hint,nbiot,180 +on6,0,0,26,1,0,669,4714.000000,20,3,21160.000320,2536.250000,hint,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,20,0,4765.000320,1754.000416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,20,0,-1.000000,2058.206448,hint,nbiot,180 +on4,0,0,27,1,0,1106,4860.000000,20,3,26019.000320,2579.699792,hint,nbiot,180 +on2,0,0,26,1,0,1092,4689.000000,20,3,23391.000960,2055.195208,hint,nbiot,180 +on7,0,0,26,1,0,492,4680.000000,20,3,12914.000960,2112.174584,hint,nbiot,180 +on12,0,0,24,1,0,2730,4320.000000,20,0,56072.000320,1825.500000,hint,nbiot,180 +on12,0,0,27,1,0,1588,4860.000000,21,4,39830.000320,2906.000000,hint,nbiot,180 +on9,0,0,25,1,0,3781,4500.000000,21,1,80704.000320,2177.000000,hint,nbiot,180 +on6,0,0,25,1,0,2046,4500.000000,21,2,44900.000320,2026.720416,hint,nbiot,180 +on8,0,0,24,1,0,541,4320.000000,21,0,12201.000320,1844.350208,hint,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,21,0,8526.000320,1754.000416,hint,nbiot,180 +on5,0,0,24,1,0,1323,4320.000000,21,0,28118.000320,1854.750208,hint,nbiot,180 +on10,0,0,25,1,0,1716,4500.000000,21,1,35609.000320,1947.550416,hint,nbiot,180 +on1,0,0,24,1,0,134,4320.000000,21,0,705.000320,1970.450624,hint,nbiot,180 +on11,0,0,25,1,0,1284,4500.000000,21,2,31476.000320,2435.310000,hint,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,21,0,21061.000320,1778.700624,hint,nbiot,180 +on4,0,0,25,1,0,227,4500.000000,21,2,5017.000320,1868.900208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,21,0,-1.000000,2062.106448,hint,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,21,0,50171.000320,2077.700208,hint,nbiot,180 +on5,0,0,24,1,0,231,4320.000000,22,0,5973.000320,1766.350208,hint,nbiot,180 +on9,0,0,25,1,0,1846,4500.000000,22,1,38696.000320,1885.800208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,22,0,-1.000000,2040.005408,hint,nbiot,180 +on10,0,0,25,1,0,389,4500.000000,22,1,9174.001600,2349.898960,hint,nbiot,180 +on8,0,0,26,1,0,831,4680.000000,22,2,15208.600960,1925.950416,hint,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,22,0,31273.000320,1754.000208,hint,nbiot,180 +on2,0,0,25,1,0,531,4500.000000,22,1,9094.000320,1876.960832,hint,nbiot,180 +on11,0,0,24,1,0,1,4320.000000,22,0,842.000320,2099.409792,hint,nbiot,180 +on1,0,0,27,1,0,493,4860.000000,22,4,9134.000960,2228.439584,hint,nbiot,180 +on12,0,0,24,1,0,787,4320.000000,22,0,15167.000320,2037.010000,hint,nbiot,180 +on4,0,0,25,1,0,360,4500.000000,22,2,12520.000320,2275.799376,hint,nbiot,180 +on3,0,0,27,1,0,630,4860.000000,22,3,12560.000960,2255.544168,hint,nbiot,180 +on6,0,0,25,1,0,2399,4500.000000,22,1,51605.000320,2052.200000,hint,nbiot,180 +on6,0,0,25,1,0,634,4500.000000,23,1,15321.000320,2079.109792,hint,nbiot,180 +on2,0,0,26,1,0,423,4680.000000,23,2,11882.000320,2287.479584,hint,nbiot,180 +on3,0,0,25,1,0,835,4500.000000,23,1,21351.000960,2109.529584,hint,nbiot,180 +on11,0,0,25,1,0,27,4500.000000,23,1,3485.600640,1981.805000,hint,nbiot,180 +on9,0,0,26,1,0,717,4680.000000,23,2,15362.600960,2111.460832,hint,nbiot,180 +on1,0,0,25,1,0,380,4500.000000,23,1,8032.600960,2032.310000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,23,0,-1.000000,2083.814992,hint,nbiot,180 +on8,0,0,25,1,0,409,4500.000000,23,1,7991.000320,1917.064792,hint,nbiot,180 +on10,0,0,24,1,0,728,4376.000000,23,1,21311.000320,2131.950000,hint,nbiot,180 +on12,0,0,27,1,0,1064,4860.000000,23,3,27205.000320,2478.494584,hint,nbiot,180 +on4,0,0,26,1,0,402,4680.000000,23,2,11923.600960,2145.065000,hint,nbiot,180 +on7,0,0,26,1,0,1055,4680.000000,23,2,24958.000320,2195.049792,hint,nbiot,180 +on5,0,0,27,1,0,1216,5008.000000,23,5,29803.000320,2712.479376,hint,nbiot,180 +on5,0,0,26,1,0,890,4680.000000,24,2,18812.000320,2179.190000,hint,nbiot,180 +on2,0,0,25,1,0,676,4500.000000,24,1,15538.000960,2032.894376,hint,nbiot,180 +on8,0,0,24,1,0,545,4320.000000,24,0,11841.000320,1841.100000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,24,0,-1.000000,2044.556240,hint,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,24,0,5816.000320,1759.200208,hint,nbiot,180 +on6,0,0,30,1,0,1164,5400.000000,24,7,31040.000960,2961.643544,hint,nbiot,180 +on9,0,0,24,1,0,747,4320.000000,24,0,15498.000320,1825.760000,hint,nbiot,180 +on3,0,0,24,1,0,25,4320.000000,24,0,1232.000320,1754.000832,hint,nbiot,180 +on4,0,0,26,1,0,1330,4680.000000,24,2,31000.000320,2166.319792,hint,nbiot,180 +on10,0,0,27,1,0,933,4875.000000,24,6,23019.000320,2411.498960,hint,nbiot,180 +on11,0,0,27,1,0,950,5011.000000,24,5,26779.000320,2685.793960,hint,nbiot,180 +on1,0,0,25,1,0,360,4500.000000,24,1,7558.600640,1831.915416,hint,nbiot,180 +on12,0,0,28,1,0,1362,5040.000000,24,4,32788.000320,2638.374376,hint,nbiot,180 +on5,0,0,26,1,0,1121,4680.000000,25,2,23911.600960,2035.409584,hint,nbiot,180 +on6,0,0,25,1,0,653,4500.000000,25,1,16788.000320,1916.350000,hint,nbiot,180 +on11,0,0,26,1,0,401,4680.000000,25,4,11432.600960,2223.129168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,25,0,-1.000000,2040.004784,hint,nbiot,180 +on2,0,0,25,1,0,1393,4500.000000,25,1,28143.000320,1917.000000,hint,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,25,0,1391.000320,1826.150208,hint,nbiot,180 +on10,0,0,25,1,0,360,4500.000000,25,1,8799.001600,2005.920000,hint,nbiot,180 +on12,0,0,26,1,0,764,4680.000000,25,2,18751.000320,2191.409584,hint,nbiot,180 +on7,0,0,27,1,0,913,4860.000000,25,3,23870.000320,2523.409376,hint,nbiot,180 +on1,0,0,25,1,0,724,4500.000000,25,1,16828.000960,2092.499792,hint,nbiot,180 +on8,0,0,24,1,0,369,4320.000000,25,0,8667.000320,1779.349584,hint,nbiot,180 +on9,0,0,26,1,0,819,4704.000000,25,3,18792.600960,2297.339792,hint,nbiot,180 +on4,0,0,25,1,0,515,4500.000000,25,2,11391.000320,1984.079792,hint,nbiot,180 +on4,0,0,28,1,0,799,5058.000000,26,5,20832.600960,2724.224376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,26,0,-1.000000,2046.505408,hint,nbiot,180 +on8,0,0,24,1,0,418,4320.000000,26,0,9577.000320,1867.360208,hint,nbiot,180 +on3,0,0,25,1,0,374,4500.000000,26,1,9657.400960,1931.299792,hint,nbiot,180 +on2,0,0,26,1,0,632,4680.000000,26,2,14092.001280,2040.480000,hint,nbiot,180 +on12,0,0,25,1,0,1013,4500.000000,26,1,20791.000320,1915.959792,hint,nbiot,180 +on1,0,0,25,1,0,1619,4500.000000,26,1,35354.000320,2143.070000,hint,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,26,0,1591.000320,1869.310208,hint,nbiot,180 +on6,0,0,26,1,0,371,4680.000000,26,3,9617.000960,2172.234792,hint,nbiot,180 +on5,0,0,24,1,0,610,4320.000000,26,0,14051.000320,1798.850000,hint,nbiot,180 +on11,0,0,25,1,0,311,4500.000000,26,1,6853.000320,1976.410624,hint,nbiot,180 +on7,0,0,26,1,0,873,4680.000000,26,2,16676.000960,2170.349584,hint,nbiot,180 +on10,0,0,26,1,0,678,4804.000000,26,3,16636.000320,2442.248960,hint,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,27,0,29123.000320,1800.150416,hint,nbiot,180 +on1,0,0,26,1,0,608,4739.000000,27,5,17880.600960,2362.494376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,27,0,-1.000000,2062.366032,hint,nbiot,180 +on10,0,0,24,1,0,181,4320.000000,27,0,3957.000320,1896.610208,hint,nbiot,180 +on12,0,0,25,1,0,501,4500.000000,27,1,9366.000960,2008.195000,hint,nbiot,180 +on4,0,0,25,1,0,513,4500.000000,27,1,12463.000960,2007.349584,hint,nbiot,180 +on9,0,0,26,1,0,173,4680.000000,27,3,4030.601280,2015.845624,hint,nbiot,180 +on11,0,0,26,1,0,516,4680.000000,27,2,12423.000320,2274.350208,hint,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,27,0,47842.000320,1961.350000,hint,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,27,0,9436.000320,1798.460208,hint,nbiot,180 +on7,0,0,27,1,0,674,4860.000000,27,3,17839.000320,2476.479168,hint,nbiot,180 +on2,0,0,27,1,0,578,4860.000000,27,3,12503.001600,2180.599792,hint,nbiot,180 +on6,0,0,26,1,0,267,4680.000000,27,2,9326.000320,2195.244792,hint,nbiot,180 +on6,0,0,24,1,0,568,4320.000000,28,0,13736.000320,1968.500624,hint,nbiot,180 +on1,0,0,25,1,0,3937,4500.000000,28,1,76801.000320,2150.350000,hint,nbiot,180 +on12,0,0,25,1,0,1621,4500.000000,28,1,34739.600320,1943.910416,hint,nbiot,180 +on7,0,0,25,1,0,0,4500.000000,28,1,2437.600640,1992.855624,hint,nbiot,180 +on10,0,0,26,1,0,713,4680.000000,28,2,13776.000960,2080.195000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,28,0,-1.000000,2058.857280,hint,nbiot,180 +on3,0,0,26,1,0,305,4680.000000,28,2,7746.000320,2237.820624,hint,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,28,0,28025.000320,1890.760416,hint,nbiot,180 +on4,0,0,24,1,0,1434,4463.000000,28,2,34649.000320,2232.009792,hint,nbiot,180 +on5,0,0,25,1,0,1610,4500.000000,28,1,31279.000320,1984.600208,hint,nbiot,180 +on8,0,0,26,1,0,722,4680.000000,28,3,13816.601600,2056.340624,hint,nbiot,180 +on9,0,0,26,1,0,543,4680.000000,28,2,14726.000320,2371.849792,hint,nbiot,180 +on11,0,0,24,1,0,2891,4320.000000,28,0,60228.000320,1929.500208,hint,nbiot,180 +on11,0,0,26,1,0,965,4680.000000,29,3,21382.601600,2185.170832,hint,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,29,0,14659.000320,1845.000208,hint,nbiot,180 +on8,0,0,24,1,0,1685,4320.000000,29,0,33733.000320,1802.750000,hint,nbiot,180 +on3,0,0,25,1,0,934,4500.000000,29,1,21302.000320,1931.039584,hint,nbiot,180 +on9,0,0,24,1,0,3780,4320.000000,29,0,79054.000320,1845.000000,hint,nbiot,180 +on1,0,0,26,1,0,1049,4680.000000,29,2,21342.000960,2068.820000,hint,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,29,0,6592.000320,1780.000416,hint,nbiot,180 +on2,0,0,26,1,0,1082,4680.000000,29,2,23448.000320,2195.049792,hint,nbiot,180 +on4,0,0,26,1,0,1233,4680.000000,29,2,23488.000960,2142.009792,hint,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,29,0,14551.000320,2046.760416,hint,nbiot,180 +on5,0,0,24,1,0,642,4320.000000,29,0,11858.000320,2042.600000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,29,0,-1.000000,2071.206032,hint,nbiot,180 +on6,0,0,25,1,0,1553,4500.000000,29,1,32132.000320,2106.800416,hint,nbiot,180 +on6,0,0,25,1,0,1108,4500.000000,30,1,19124.000960,2030.100208,hint,nbiot,180 +on7,0,0,26,1,0,445,4680.000000,30,3,10291.000320,2388.099792,hint,nbiot,180 +on4,0,0,25,1,0,419,4500.000000,30,1,10177.000320,1869.680416,hint,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,30,0,15306.000320,1916.760624,hint,nbiot,180 +on1,0,0,25,1,0,2425,4500.000000,30,1,49979.000320,1977.709792,hint,nbiot,180 +on8,0,0,25,1,0,366,4500.000000,30,1,11013.000320,2028.150208,hint,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,30,0,1950.000320,1957.060624,hint,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,30,0,5534.000320,2035.711040,hint,nbiot,180 +on10,0,0,25,1,0,2383,4587.000000,30,2,50020.600960,2040.459584,hint,nbiot,180 +on9,0,0,25,1,0,1,4500.000000,30,1,1992.600320,1940.270624,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,30,0,-1.000000,2040.006240,hint,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,30,0,24282.000320,1754.000208,hint,nbiot,180 +on2,0,0,25,1,0,997,4500.000000,30,1,19084.000320,1974.200000,hint,nbiot,180 +on12,0,0,28,1,0,783,5040.000000,31,5,19123.000960,2449.353544,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,31,0,-1.000000,2063.142912,hint,nbiot,180 +on6,0,0,25,1,0,289,4500.000000,31,1,7471.000640,1842.574792,hint,nbiot,180 +on11,0,0,28,1,0,491,5040.000000,31,4,14817.001280,2502.849584,hint,nbiot,180 +on1,0,0,26,1,0,606,4680.000000,31,2,12126.401280,2099.693960,hint,nbiot,180 +on4,0,0,26,1,0,304,4680.000000,31,2,12006.000320,2310.490000,hint,nbiot,180 +on3,0,0,25,1,0,801,4500.000000,31,1,19083.000320,2065.850000,hint,nbiot,180 +on7,0,0,24,1,0,62,4320.000000,31,0,762.000320,1754.000208,hint,nbiot,180 +on8,0,0,25,1,0,653,4500.000000,31,1,14776.000320,2045.633960,hint,nbiot,180 +on10,0,0,25,1,0,513,4500.000000,31,1,12046.000960,1890.740000,hint,nbiot,180 +on5,0,0,29,1,0,759,5220.000000,31,6,24273.000320,2824.644168,hint,nbiot,180 +on2,0,0,27,1,0,588,4860.000000,31,4,12086.400640,2216.089168,hint,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,31,0,4800.000320,1780.910208,hint,nbiot,180 +on1,0,0,25,1,0,1816,4500.000000,32,1,39134.000320,2134.490000,hint,nbiot,180 +on11,0,0,26,1,0,538,4680.000000,32,2,10520.001600,2166.905416,hint,nbiot,180 +on10,0,0,27,1,0,602,4860.000000,32,3,10930.000960,2328.799584,hint,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,32,0,1637.000320,1754.000208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,32,0,-1.000000,2040.006240,hint,nbiot,180 +on4,0,0,27,1,0,1191,4860.000000,32,4,23136.000320,2242.349584,hint,nbiot,180 +on9,0,0,27,1,0,862,4860.000000,32,3,18436.000960,2263.019792,hint,nbiot,180 +on5,0,0,25,1,0,16,4500.000000,32,2,4144.000320,2010.860000,hint,nbiot,180 +on7,0,0,25,1,0,653,4500.000000,32,1,16407.000320,2032.700416,hint,nbiot,180 +on6,0,0,26,1,0,246,4680.000000,32,4,10890.000320,2288.194168,hint,nbiot,180 +on3,0,0,25,1,0,522,4500.000000,32,1,10440.000320,1917.195000,hint,nbiot,180 +on2,0,0,26,1,0,837,4680.000000,32,2,18396.000320,2235.349792,hint,nbiot,180 +on8,0,0,25,1,0,513,4500.000000,32,1,10480.000960,2014.108960,hint,nbiot,180 +on11,0,0,25,1,0,1013,4500.000000,33,1,22047.000320,2149.700000,hint,nbiot,180 +on6,0,0,26,1,0,740,4680.000000,33,2,13665.000960,2095.209792,hint,nbiot,180 +on7,0,0,26,1,0,514,4680.000000,33,2,9355.600960,2107.168960,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,33,0,-1.000000,2043.254160,hint,nbiot,180 +on10,0,0,24,1,0,404,4320.000000,33,0,9314.000320,1815.359792,hint,nbiot,180 +on1,0,0,24,1,0,955,4320.000000,33,0,19675.000320,1899.209792,hint,nbiot,180 +on5,0,0,25,1,0,546,4500.000000,33,1,13705.001600,2090.418960,hint,nbiot,180 +on2,0,0,24,1,0,617,4320.000000,33,0,13625.000320,1794.300000,hint,nbiot,180 +on8,0,0,26,1,0,790,4680.000000,33,2,15228.000960,2150.069376,hint,nbiot,180 +on3,0,0,25,1,0,360,4500.000000,33,2,9450.201600,1951.645208,hint,nbiot,180 +on12,0,0,25,1,0,635,4500.000000,33,1,15188.000320,1935.200000,hint,nbiot,180 +on9,0,0,25,1,0,176,4500.000000,33,1,4175.600640,2141.315000,hint,nbiot,180 +on4,0,0,26,1,0,875,4680.000000,33,2,19716.600960,1913.860208,hint,nbiot,180 +on9,0,0,28,1,0,1516,5090.000000,34,6,32663.600960,2680.149168,hint,nbiot,180 +on11,0,0,24,1,0,1032,4320.000000,34,0,20138.000320,1873.470000,hint,nbiot,180 +on1,0,0,25,1,0,2486,4500.000000,34,1,48985.000320,2033.350000,hint,nbiot,180 +on8,0,0,27,1,0,1213,4860.000000,34,3,25469.000320,2456.004376,hint,nbiot,180 +on3,0,0,26,1,0,1571,4680.000000,34,2,31637.001280,2171.194584,hint,nbiot,180 +on5,0,0,25,1,0,991,4500.000000,34,1,20179.600960,2034.260624,hint,nbiot,180 +on2,0,0,24,1,0,727,4320.000000,34,0,15478.000320,1984.620416,hint,nbiot,180 +on6,0,0,27,1,0,1274,4860.000000,34,4,25510.600960,2344.658336,hint,nbiot,180 +on4,0,0,24,1,0,1391,4364.000000,34,1,31596.000320,1979.795000,hint,nbiot,180 +on10,0,0,25,1,0,1193,4500.000000,34,1,24488.000320,1916.350000,hint,nbiot,180 +on7,0,0,25,1,0,1623,4544.000000,34,2,32622.000320,2023.909584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,34,0,-1.000000,2057.555408,hint,nbiot,180 +on12,0,0,25,1,0,1260,4500.000000,34,1,25550.601600,1916.349792,hint,nbiot,180 +on1,0,0,25,1,0,202,4500.000000,35,1,6239.600960,2229.520000,hint,nbiot,180 +on5,0,0,24,1,0,1207,4320.000000,35,0,24548.000320,1754.000208,hint,nbiot,180 +on11,0,0,26,1,0,789,4680.000000,35,2,15358.000320,2150.589792,hint,nbiot,180 +on9,0,0,24,1,0,4197,4320.000000,35,0,83919.000000,1988.000000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,35,0,-1.000000,2076.408736,hint,nbiot,180 +on3,0,0,25,1,0,180,4500.000000,35,1,6287.600640,2101.015208,hint,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,35,0,20252.000320,1833.300000,hint,nbiot,180 +on6,0,0,26,1,0,376,4745.000000,35,3,11484.600960,2509.650624,hint,nbiot,180 +on10,0,0,24,1,0,3,4320.000000,35,0,3064.000320,1782.600208,hint,nbiot,180 +on8,0,0,26,1,0,160,4680.000000,35,4,7405.000320,2189.394792,hint,nbiot,180 +on7,0,0,25,1,0,264,4500.000000,35,2,6198.000320,2062.210624,hint,nbiot,180 +on4,0,0,24,1,0,544,4434.000000,35,1,11443.000320,2005.910000,hint,nbiot,180 +on2,0,0,25,1,0,187,4500.000000,35,1,6327.601280,2186.360624,hint,nbiot,180 +on11,0,0,26,1,0,874,4680.000000,36,2,17150.000960,2189.199376,hint,nbiot,180 +on7,0,0,25,1,0,536,4500.000000,36,1,10157.000320,2032.960000,hint,nbiot,180 +on6,0,0,24,1,0,96,4431.000000,36,1,4745.000320,2070.360416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,36,0,-1.000000,2081.214368,hint,nbiot,180 +on12,0,0,25,1,0,689,4500.000000,36,1,14220.000320,1985.509792,hint,nbiot,180 +on9,0,0,26,1,0,698,4680.000000,36,2,17110.000320,2194.659792,hint,nbiot,180 +on5,0,0,25,1,0,796,4500.000000,36,1,18906.000960,1972.444584,hint,nbiot,180 +on4,0,0,26,1,0,364,4680.000000,36,3,4823.000320,2078.310000,hint,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,36,0,1292.000320,2029.469792,hint,nbiot,180 +on2,0,0,25,1,0,205,4500.000000,36,2,4863.600960,2032.895208,hint,nbiot,180 +on1,0,0,26,1,0,700,4680.000000,36,2,14261.600960,2024.555416,hint,nbiot,180 +on8,0,0,25,1,0,812,4500.000000,36,1,18866.000320,2056.360000,hint,nbiot,180 +on10,0,0,25,1,0,760,4647.000000,36,3,18946.601600,2147.204792,hint,nbiot,180 +on11,0,0,25,1,0,907,4521.000000,37,2,19426.000960,2016.594792,hint,nbiot,180 +on12,0,0,26,1,0,565,4680.000000,37,2,15958.000320,2261.479376,hint,nbiot,180 +on6,0,0,25,1,0,686,4500.000000,37,1,13190.000960,1895.940000,hint,nbiot,180 +on10,0,0,27,1,0,838,4860.000000,37,5,19466.601600,2199.774792,hint,nbiot,180 +on2,0,0,26,1,0,633,4680.000000,37,3,13270.401280,2069.080208,hint,nbiot,180 +on1,0,0,26,1,0,881,4680.000000,37,2,24407.000320,2312.049584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,37,0,-1.000000,2064.705616,hint,nbiot,180 +on5,0,0,25,1,0,625,4500.000000,37,1,13150.000320,2140.859792,hint,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,37,0,9243.000320,1826.019792,hint,nbiot,180 +on8,0,0,24,1,0,1572,4320.000000,37,1,34031.000320,1754.000208,hint,nbiot,180 +on3,0,0,26,1,0,652,4680.000000,37,2,13230.400640,2142.789168,hint,nbiot,180 +on9,0,0,26,1,0,802,4754.000000,37,3,19386.000320,2409.899376,hint,nbiot,180 +on4,0,0,25,1,0,1800,4500.000000,37,1,36449.600640,2017.555000,hint,nbiot,180 +on10,0,0,26,1,0,1237,4680.000000,38,2,27907.000320,2133.364376,hint,nbiot,180 +on8,0,0,25,1,0,1927,4500.000000,38,1,40345.000320,2022.430000,hint,nbiot,180 +on12,0,0,25,1,0,368,4500.000000,38,3,12289.000320,2060.260000,hint,nbiot,180 +on11,0,0,27,1,0,1882,5116.000000,38,8,48595.000320,2904.529376,hint,nbiot,180 +on1,0,0,25,1,0,1031,4500.000000,38,1,20314.000320,2104.460000,hint,nbiot,180 +on4,0,0,24,1,0,202,4320.000000,38,0,3859.000320,1895.960000,hint,nbiot,180 +on3,0,0,25,1,0,532,4500.000000,38,1,9374.000320,2079.760208,hint,nbiot,180 +on5,0,0,25,1,0,643,4500.000000,38,1,14906.000320,1952.815208,hint,nbiot,180 +on6,0,0,26,1,0,963,4680.000000,38,2,20355.600960,2351.959168,hint,nbiot,180 +on2,0,0,25,1,0,2157,4500.000000,38,1,46278.000320,1982.130000,hint,nbiot,180 +on7,0,0,25,1,0,1603,4500.000000,38,1,30990.000320,1917.000000,hint,nbiot,180 +on9,0,0,25,1,0,360,4500.000000,38,1,9436.001280,1910.760624,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,38,0,-1.000000,2063.665408,hint,nbiot,180 +on6,0,0,25,1,0,3350,4500.000000,39,1,67177.000320,1919.209792,hint,nbiot,180 +on2,0,0,26,1,0,1042,4680.000000,39,3,19718.000320,1989.000000,hint,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,39,0,12458.000320,1938.470832,hint,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,39,0,17024.000320,1911.950208,hint,nbiot,180 +on3,0,0,24,1,0,3065,4320.000000,39,0,64056.000320,1812.760208,hint,nbiot,180 +on1,0,0,26,1,0,1760,4680.000000,39,2,35828.000640,2118.349792,hint,nbiot,180 +on5,0,0,24,1,0,725,4320.000000,39,0,16954.000320,1754.909792,hint,nbiot,180 +on9,0,0,26,1,0,3362,4680.000000,39,2,68696.000320,2217.149792,hint,nbiot,180 +on4,0,0,26,1,0,1831,4680.000000,39,2,40057.000320,2198.950416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,39,0,-1.000000,2064.056240,hint,nbiot,180 +on12,0,0,26,1,0,1681,4680.000000,39,3,35868.601280,2312.505832,hint,nbiot,180 +on11,0,0,24,1,0,643,4320.000000,39,0,12383.000320,1869.310624,hint,nbiot,180 +on10,0,0,27,1,0,3308,4860.000000,39,4,67218.600960,2207.704376,hint,nbiot,180 +on1,0,0,25,1,0,693,4500.000000,40,1,13907.000960,1890.999792,hint,nbiot,180 +on7,0,0,25,1,0,850,4500.000000,40,1,19637.000320,1944.950208,hint,nbiot,180 +on9,0,0,26,1,0,617,4680.000000,40,2,15446.000320,2090.204792,hint,nbiot,180 +on2,0,0,26,1,0,1837,4680.000000,40,3,36944.000320,2412.800416,hint,nbiot,180 +on4,0,0,24,1,0,600,4320.000000,40,0,13867.000320,1805.350000,hint,nbiot,180 +on12,0,0,27,1,0,756,4860.000000,40,4,15487.600960,2394.579792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,40,0,-1.000000,2071.206032,hint,nbiot,180 +on6,0,0,24,1,0,497,4320.000000,40,0,10260.000320,1754.000208,hint,nbiot,180 +on11,0,0,24,1,0,72,4320.000000,40,0,3366.000320,2105.909792,hint,nbiot,180 +on10,0,0,26,1,0,717,4680.000000,40,2,13947.001600,2253.615000,hint,nbiot,180 +on5,0,0,24,1,0,4015,4320.000000,40,0,82406.000320,1809.900000,hint,nbiot,180 +on3,0,0,25,1,0,1488,4500.000000,40,1,35860.000320,2016.060208,hint,nbiot,180 +on8,0,0,25,1,0,1231,4500.000000,40,1,23215.000320,1826.000416,hint,nbiot,180 +on5,0,0,27,1,0,497,4860.000000,41,3,11728.000320,2320.090208,hint,nbiot,180 +on3,0,0,24,1,0,817,4320.000000,41,0,17445.000320,1780.909792,hint,nbiot,180 +on1,0,0,28,1,0,708,5040.000000,41,5,17486.600960,2456.700208,hint,nbiot,180 +on10,0,0,25,1,0,900,4500.000000,41,1,20666.000320,2226.400832,hint,nbiot,180 +on9,0,0,24,1,0,125,4320.000000,41,0,1208.000320,1973.961040,hint,nbiot,180 +on11,0,0,26,1,0,266,4680.000000,41,2,6593.000960,2025.205832,hint,nbiot,180 +on4,0,0,26,1,0,334,4680.000000,41,2,9737.000320,2259.399792,hint,nbiot,180 +on12,0,0,25,1,0,113,4500.000000,41,1,6553.000320,2031.465208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,41,0,-1.000000,2040.008528,hint,nbiot,180 +on8,0,0,25,1,0,3862,4500.000000,41,1,76737.000320,2097.050000,hint,nbiot,180 +on2,0,0,24,1,0,196,4500.000000,41,1,6633.600320,2323.510208,hint,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,41,0,1343.000320,1899.470208,hint,nbiot,180 +on6,0,0,24,1,0,2792,4320.000000,41,0,56469.000320,1912.600208,hint,nbiot,180 +on10,0,0,25,1,0,1010,4500.000000,42,1,19904.000320,2107.515208,hint,nbiot,180 +on4,0,0,26,1,0,720,4680.000000,42,3,17793.000320,2215.655416,hint,nbiot,180 +on9,0,0,24,1,0,278,4320.000000,42,0,4650.000320,2028.560624,hint,nbiot,180 +on8,0,0,25,1,0,1072,4500.000000,42,1,23312.600960,2242.909376,hint,nbiot,180 +on2,0,0,26,1,0,1054,4680.000000,42,2,23271.000320,2221.959584,hint,nbiot,180 +on12,0,0,24,1,0,585,4320.000000,42,0,14092.000320,1754.000208,hint,nbiot,180 +on11,0,0,25,1,0,1096,4500.000000,42,2,23353.201600,1956.845000,hint,nbiot,180 +on5,0,0,24,1,0,1323,4320.000000,42,0,27134.000320,2001.000208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,42,0,-1.000000,2073.806240,hint,nbiot,180 +on3,0,0,25,1,0,2993,4500.000000,42,1,59704.000320,1992.400000,hint,nbiot,180 +on6,0,0,25,1,0,721,4500.000000,42,1,17835.600320,1922.720624,hint,nbiot,180 +on7,0,0,26,1,0,944,4680.000000,42,2,19944.000960,2170.999584,hint,nbiot,180 +on1,0,0,25,1,0,181,4500.000000,42,1,4722.600320,2046.350624,hint,nbiot,180 +on6,0,0,24,1,0,611,4320.000000,43,0,11285.000320,1881.010416,hint,nbiot,180 +on7,0,0,24,0,0,4310,4320.000000,43,0,-1.000000,1845.000000,hint,nbiot,180 +on9,0,0,26,1,0,501,4680.000000,43,2,11326.600960,2194.854792,hint,nbiot,180 +on10,0,0,25,1,0,740,4500.000000,43,1,15717.000320,2158.540000,hint,nbiot,180 +on1,0,0,26,1,0,1078,4764.000000,43,4,22872.000320,2344.220208,hint,nbiot,180 +on3,0,0,25,1,0,1363,4500.000000,43,1,28053.000320,1875.660208,hint,nbiot,180 +on5,0,0,25,1,0,719,4565.000000,43,3,19785.000320,2263.969584,hint,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,43,0,19916.000320,1845.000416,hint,nbiot,180 +on4,0,0,24,1,0,3021,4320.000000,43,0,64279.000320,1867.750208,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,43,0,-1.000000,2087.976032,hint,nbiot,180 +on8,0,0,24,1,0,1473,4320.000000,43,0,29687.000320,1754.000208,hint,nbiot,180 +on12,0,0,26,1,0,513,4680.000000,43,2,11409.000320,2225.080416,hint,nbiot,180 +on2,0,0,27,1,0,1430,4860.000000,43,5,32604.000320,2284.599792,hint,nbiot,180 +on9,0,0,25,1,0,1153,4500.000000,44,1,23718.000320,2037.900208,hint,nbiot,180 +on2,0,0,25,1,0,1112,4629.000000,44,3,21300.601600,2207.799584,hint,nbiot,180 +on1,0,0,26,1,0,1028,4693.000000,44,5,25307.000320,2251.794584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,44,0,-1.000000,2040.658112,hint,nbiot,180 +on8,0,0,25,1,0,3600,4500.000000,44,1,74310.000320,1917.000000,hint,nbiot,180 +on4,0,0,26,1,0,1053,4680.000000,44,2,21260.000960,2156.959584,hint,nbiot,180 +on6,0,0,25,1,0,900,4500.000000,44,1,21343.602240,1896.850624,hint,nbiot,180 +on11,0,0,24,1,0,1632,4320.000000,44,0,32930.000320,1800.150208,hint,nbiot,180 +on5,0,0,24,1,0,45,4320.000000,44,0,2533.000320,1953.160624,hint,nbiot,180 +on7,0,0,24,1,0,995,4320.000000,44,0,21220.000320,1999.700208,hint,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,44,0,17552.000320,1871.910000,hint,nbiot,180 +on3,0,0,25,1,0,2520,4500.000000,44,2,52071.600640,2077.095416,hint,nbiot,180 +on10,0,0,24,1,0,295,4320.000000,44,0,6005.000320,1870.350416,hint,nbiot,180 +on4,0,0,26,1,0,1822,4680.000000,45,3,37542.000320,2170.804168,hint,nbiot,180 +on5,0,0,27,1,0,1656,4860.000000,45,3,37583.600960,2461.009168,hint,nbiot,180 +on10,0,0,25,1,0,1593,4500.000000,45,1,30915.000960,2006.309584,hint,nbiot,180 +on1,0,0,24,1,0,1180,4320.000000,45,0,22282.000320,1754.000416,hint,nbiot,180 +on12,0,0,24,1,0,410,4320.000000,45,0,9018.000320,1754.000416,hint,nbiot,180 +on9,0,0,24,1,0,1632,4320.000000,45,0,34224.000960,1837.199584,hint,nbiot,180 +on8,0,0,25,1,0,720,4500.000000,45,2,20330.000320,1943.000000,hint,nbiot,180 +on3,0,0,27,1,0,1703,4860.000000,45,3,34264.001600,2224.214792,hint,nbiot,180 +on7,0,0,25,1,0,1260,4500.000000,45,1,25659.600640,1955.154792,hint,nbiot,180 +on2,0,0,24,1,0,732,4320.000000,45,0,15761.000320,1793.910208,hint,nbiot,180 +on11,0,0,26,1,0,1483,4680.000000,45,2,34184.000320,2209.349584,hint,nbiot,180 +on6,0,0,24,1,0,1579,4320.000000,45,0,30875.000320,1754.000208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,45,0,-1.000000,2040.004576,hint,nbiot,180 +on6,0,0,25,1,0,822,4500.000000,46,2,18222.000320,2020.219792,hint,nbiot,180 +on11,0,0,25,1,0,409,4500.000000,46,2,11114.000320,1989.605000,hint,nbiot,180 +on3,0,0,25,1,0,850,4500.000000,46,1,18262.000960,2032.244792,hint,nbiot,180 +on2,0,0,27,1,0,1004,4860.000000,46,3,22190.000960,2331.594168,hint,nbiot,180 +on12,0,0,27,1,0,1198,4860.000000,46,3,27014.000320,2299.939584,hint,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,46,0,9830.000320,2054.560000,hint,nbiot,180 +on1,0,0,25,1,0,873,4500.000000,46,1,15330.000960,1998.899792,hint,nbiot,180 +on9,0,0,29,1,0,1157,5220.000000,46,5,27054.000960,2593.438960,hint,nbiot,180 +on4,0,0,29,1,0,1368,5220.000000,46,5,32226.000320,2619.114168,hint,nbiot,180 +on10,0,0,24,1,0,984,4494.000000,46,1,22150.000320,2083.600208,hint,nbiot,180 +on5,0,0,26,1,0,514,4680.000000,46,2,11155.600960,2012.660416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,46,0,-1.000000,2040.005408,hint,nbiot,180 +on7,0,0,25,1,0,627,4500.000000,46,1,15290.000320,2128.965416,hint,nbiot,180 +on11,0,0,25,1,0,1265,4500.000000,47,2,31310.000320,2178.950000,hint,nbiot,180 +on2,0,0,24,1,0,107,4320.000000,47,0,3162.000320,1754.000832,hint,nbiot,180 +on7,0,0,26,1,0,503,4680.000000,47,2,10658.600640,2169.245624,hint,nbiot,180 +on4,0,0,24,1,0,1232,4320.000000,47,0,26536.000320,2089.660624,hint,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,47,0,24801.000320,2279.850416,hint,nbiot,180 +on5,0,0,24,1,0,186,4320.000000,47,0,6963.000320,1760.110208,hint,nbiot,180 +on12,0,0,24,1,0,756,4323.000000,47,2,19891.000320,1908.860208,hint,nbiot,180 +on1,0,0,24,1,0,809,4320.000000,47,0,15499.000320,1960.050624,hint,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,47,0,-1.000000,1728.000000,hint,nbiot,180 +on9,0,0,25,1,0,901,4500.000000,47,1,19981.600320,1980.700208,hint,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,47,0,39314.000320,1864.500208,hint,nbiot,180 +on10,0,0,26,1,0,1593,4680.000000,47,2,31350.000960,2196.999584,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,47,0,-1.000000,2032.857280,hint,nbiot,180 +on11,0,0,25,1,0,835,4500.000000,48,1,18071.000320,1994.610000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,48,0,-1.000000,2043.254576,hint,nbiot,180 +on10,0,0,24,1,0,396,4326.000000,48,1,10556.001600,1982.598960,hint,nbiot,180 +on5,0,0,25,1,0,691,4500.000000,48,1,15938.000320,2051.550000,hint,nbiot,180 +on8,0,0,27,1,0,709,4860.000000,48,3,12474.001600,2175.400416,hint,nbiot,180 +on2,0,0,25,1,0,183,4500.000000,48,2,4533.600640,2004.554792,hint,nbiot,180 +on3,0,0,26,1,0,464,4680.000000,48,2,12394.000320,2354.299584,hint,nbiot,180 +on9,0,0,25,1,0,474,4500.000000,48,1,10476.000320,1915.700000,hint,nbiot,180 +on12,0,0,25,1,0,967,4500.000000,48,1,21661.000320,2013.590000,hint,nbiot,180 +on1,0,0,24,1,0,185,4320.000000,48,0,4423.000320,1843.960208,hint,nbiot,180 +on6,0,0,25,1,0,481,4500.000000,48,1,10516.000960,1924.539584,hint,nbiot,180 +on4,0,0,26,1,0,599,4680.000000,48,3,10596.602240,1990.235416,hint,nbiot,180 +on7,0,0,25,1,0,498,4640.000000,48,3,12434.000960,2146.484792,hint,nbiot,180 +on7,0,0,27,1,0,1165,4860.000000,49,4,27662.000320,2380.994168,hint,nbiot,180 +on12,0,0,29,1,0,1178,5220.000000,49,5,27703.600960,2653.174168,hint,nbiot,180 +on3,0,0,24,1,0,571,4320.000000,49,0,11946.000320,1939.119792,hint,nbiot,180 +on6,0,0,24,1,0,284,4321.000000,49,1,7468.000320,1765.644584,hint,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,49,0,5482.000320,1906.100000,hint,nbiot,180 +on9,0,0,25,1,0,1000,4500.000000,49,1,20639.000320,1932.990000,hint,nbiot,180 +on4,0,0,28,1,0,1190,5109.000000,49,5,32260.000320,2766.594168,hint,nbiot,180 +on11,0,0,26,1,0,960,4680.000000,49,2,20679.000960,2150.394376,hint,nbiot,180 +on2,0,0,25,1,0,913,4500.000000,49,1,16856.000960,1938.840208,hint,nbiot,180 +on5,0,0,28,1,0,631,5040.000000,49,7,16896.400640,2554.264792,hint,nbiot,180 +on8,0,0,26,1,0,1050,4680.000000,49,2,21804.000320,2198.299792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,49,0,-1.000000,2079.914160,hint,nbiot,180 +on1,0,0,24,1,0,787,4320.000000,49,0,16816.000320,1799.760000,hint,nbiot,180 +on7,0,0,24,1,0,1462,4320.000000,50,0,31394.000320,1859.560000,hint,nbiot,180 +on3,0,0,24,0,0,4291,4320.000000,50,0,-1.000000,1747.500000,hint,nbiot,180 +on9,0,0,25,1,0,2952,4500.000000,50,1,58742.000320,2069.880208,hint,nbiot,180 +on12,0,0,24,1,0,1216,4320.000000,50,0,22392.000320,1760.110624,hint,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,50,0,14082.000320,2254.760832,hint,nbiot,180 +on5,0,0,25,1,0,1198,4500.000000,50,2,28157.000320,2133.450208,hint,nbiot,180 +on8,0,0,25,1,0,2520,4500.000000,50,1,52563.600640,1997.015416,hint,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,50,0,10297.000320,1882.700624,hint,nbiot,180 +on10,0,0,25,1,0,884,4500.000000,50,1,17218.000320,2143.850624,hint,nbiot,180 +on4,0,0,25,1,0,1497,4500.000000,50,1,31435.600960,1982.000832,hint,nbiot,180 +on2,0,0,26,1,0,1593,4680.000000,50,2,34117.000320,2312.700000,hint,nbiot,180 +on1,0,0,25,1,0,4164,4500.000000,50,1,86101.000000,1927.400000,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,50,0,-1.000000,2033.507280,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,51,0,-1.000000,2061.456032,hint,nbiot,180 +on10,0,0,25,1,0,477,4500.000000,51,1,9047.600960,1940.009792,hint,nbiot,180 +on7,0,0,25,1,0,790,4500.000000,51,1,14719.000960,2059.999584,hint,nbiot,180 +on9,0,0,24,1,0,801,4320.000000,51,0,14679.000320,1791.700000,hint,nbiot,180 +on4,0,0,25,1,0,872,4500.000000,51,1,19489.000320,2072.480208,hint,nbiot,180 +on5,0,0,24,1,0,1809,4320.000000,51,0,36403.000320,1754.000208,hint,nbiot,180 +on11,0,0,27,1,0,758,4860.000000,51,4,14759.601600,2215.959584,hint,nbiot,180 +on2,0,0,28,1,0,671,5040.000000,51,5,23379.000320,2692.649168,hint,nbiot,180 +on8,0,0,25,1,0,1486,4500.000000,51,1,31902.000320,1974.850416,hint,nbiot,180 +on12,0,0,24,1,0,622,4320.000000,51,0,13170.000320,2034.150416,hint,nbiot,180 +on6,0,0,24,1,0,495,4320.000000,51,0,9006.000320,1756.210000,hint,nbiot,180 +on3,0,0,25,1,0,2340,4500.000000,51,1,48766.600640,2033.155000,hint,nbiot,180 +on1,0,0,25,1,0,755,4500.000000,51,1,14799.602240,1927.658336,hint,nbiot,180 +on2,0,0,30,1,0,898,5400.000000,52,6,19767.000960,2783.543544,hint,nbiot,180 +on11,0,0,28,1,0,845,5040.000000,52,5,17438.001600,2569.343336,hint,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,52,0,2546.000320,1754.260000,hint,nbiot,180 +on5,0,0,26,1,0,197,4715.000000,52,3,13874.000320,2465.344792,hint,nbiot,180 +on12,0,0,24,1,0,550,4320.000000,52,0,13914.000960,1941.199584,hint,nbiot,180 +on1,0,0,25,1,0,296,4500.000000,52,1,6737.000640,1922.655624,hint,nbiot,180 +on10,0,0,25,1,0,748,4500.000000,52,1,17478.002240,1880.600208,hint,nbiot,180 +on7,0,0,26,1,0,268,4680.000000,52,2,10533.000320,2196.934376,hint,nbiot,180 +on3,0,0,25,1,0,841,4500.000000,52,1,17358.000320,1931.495000,hint,nbiot,180 +on9,0,0,25,1,0,251,4500.000000,52,2,6777.001280,1865.195416,hint,nbiot,180 +on4,0,0,26,1,0,895,4680.000000,52,3,19727.000320,2173.144376,hint,nbiot,180 +on8,0,0,26,1,0,739,4680.000000,52,3,17398.000960,2170.999376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,52,0,-1.000000,2041.304992,hint,nbiot,180 +on3,0,0,25,1,0,836,4500.000000,53,1,17252.000960,2007.935000,hint,nbiot,180 +on11,0,0,27,1,0,1319,4860.000000,53,3,26896.600960,2132.110000,hint,nbiot,180 +on1,0,0,25,1,0,860,4500.000000,53,1,17212.000320,2031.660416,hint,nbiot,180 +on9,0,0,24,1,0,756,4569.000000,53,2,20631.000320,2132.644792,hint,nbiot,180 +on10,0,0,26,1,0,848,4680.000000,53,2,17292.400640,2106.260208,hint,nbiot,180 +on8,0,0,25,1,0,2075,4500.000000,53,1,46138.000320,2170.045000,hint,nbiot,180 +on12,0,0,25,1,0,791,4500.000000,53,1,17332.401280,1916.349792,hint,nbiot,180 +on6,0,0,29,1,0,1094,5220.000000,53,6,24027.000960,2711.413752,hint,nbiot,180 +on5,0,0,26,1,0,1236,4680.000000,53,2,26855.000320,2311.139584,hint,nbiot,180 +on4,0,0,25,1,0,1466,4500.000000,53,1,31145.000320,2015.670000,hint,nbiot,180 +on7,0,0,24,1,0,550,4320.000000,53,0,12172.000320,1754.000416,hint,nbiot,180 +on2,0,0,25,1,0,983,4613.000000,53,4,23987.000320,2242.284168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,53,0,-1.000000,2095.515408,hint,nbiot,180 +on4,0,0,25,1,0,0,4500.000000,54,1,1940.600640,2056.815832,hint,nbiot,180 +on5,0,0,26,1,0,431,4680.000000,54,2,9556.001600,2001.025416,hint,nbiot,180 +on12,0,0,25,1,0,513,4500.000000,54,1,9516.000960,1890.999584,hint,nbiot,180 +on7,0,0,28,1,0,858,5040.000000,54,5,19681.000320,2517.798752,hint,nbiot,180 +on6,0,0,27,1,0,752,4860.000000,54,3,16030.000320,2327.239584,hint,nbiot,180 +on8,0,0,25,1,0,540,4500.000000,54,1,9476.000320,1916.350000,hint,nbiot,180 +on3,0,0,25,1,0,693,4500.000000,54,1,12453.000960,1890.999584,hint,nbiot,180 +on2,0,0,24,1,0,576,4320.000000,54,0,12413.000320,1826.799584,hint,nbiot,180 +on11,0,0,26,1,0,648,4680.000000,54,2,16070.000960,2230.929168,hint,nbiot,180 +on1,0,0,26,1,0,1104,4680.000000,54,2,19722.600960,2105.350000,hint,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,54,0,24009.000320,1845.000000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,54,0,-1.000000,2040.004784,hint,nbiot,180 +on10,0,0,25,1,0,1164,4500.000000,54,1,23948.000320,1947.810000,hint,nbiot,180 +on2,0,0,24,1,0,673,4320.000000,55,0,12100.000320,1757.900000,hint,nbiot,180 +on7,0,0,25,1,0,406,4500.000000,55,1,10094.000320,1917.195000,hint,nbiot,180 +on11,0,0,25,1,0,206,4500.000000,55,1,4891.600640,1937.865624,hint,nbiot,180 +on8,0,0,26,1,0,992,4680.000000,55,2,19836.001280,2130.894168,hint,nbiot,180 +on6,0,0,26,1,0,1078,4680.000000,55,3,19876.601920,1990.040416,hint,nbiot,180 +on5,0,0,25,1,0,582,4610.000000,55,3,15382.000960,2352.559168,hint,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,55,0,26086.000320,1845.000000,hint,nbiot,180 +on10,0,0,26,1,0,513,4680.000000,55,2,10134.000960,1994.395000,hint,nbiot,180 +on12,0,0,26,1,0,975,4680.000000,55,2,22641.000320,2290.599584,hint,nbiot,180 +on1,0,0,25,1,0,540,4500.000000,55,1,12233.000640,2058.700416,hint,nbiot,180 +on3,0,0,26,1,0,694,4680.000000,55,2,15342.000320,2195.049792,hint,nbiot,180 +on4,0,0,28,1,0,820,5040.000000,55,5,19795.000320,2409.899376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,55,0,-1.000000,2064.705824,hint,nbiot,180 +on5,0,0,26,1,0,403,4680.000000,56,2,10385.000320,2176.719792,hint,nbiot,180 +on2,0,0,27,1,0,379,4860.000000,56,3,13959.000320,2474.399584,hint,nbiot,180 +on11,0,0,25,1,0,2213,4500.000000,56,1,45189.000320,1979.270000,hint,nbiot,180 +on3,0,0,24,1,0,1839,4320.000000,56,0,37556.000320,1870.350208,hint,nbiot,180 +on10,0,0,25,1,0,217,4500.000000,56,1,6518.000320,1995.000208,hint,nbiot,180 +on8,0,0,28,1,0,657,5040.000000,56,5,13999.000960,2275.609376,hint,nbiot,180 +on1,0,0,25,1,0,171,4500.000000,56,2,6558.000960,2041.084792,hint,nbiot,180 +on6,0,0,24,1,0,188,4430.000000,56,1,6598.400640,2042.399584,hint,nbiot,180 +on12,0,0,25,1,0,831,4500.000000,56,1,18979.000320,2036.405000,hint,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,56,0,2188.000320,1955.370416,hint,nbiot,180 +on9,0,0,26,1,0,717,4680.000000,56,3,14039.601600,2107.040416,hint,nbiot,180 +on4,0,0,26,1,0,635,4700.000000,56,3,15042.000320,2268.829584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,56,0,-1.000000,2042.865408,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,57,0,-1.000000,2040.006656,hint,nbiot,180 +on2,0,0,25,1,0,674,4500.000000,57,1,11825.000960,2008.194792,hint,nbiot,180 +on6,0,0,28,1,0,778,5040.000000,57,5,17452.601600,2314.739792,hint,nbiot,180 +on10,0,0,25,1,0,0,4500.000000,57,1,2685.600640,1940.465624,hint,nbiot,180 +on4,0,0,26,1,0,357,4680.000000,57,3,7329.601600,2069.403752,hint,nbiot,180 +on5,0,0,26,1,0,598,4680.000000,57,2,17412.000960,2203.499168,hint,nbiot,180 +on9,0,0,24,1,0,226,4386.000000,57,1,7249.000320,2136.015416,hint,nbiot,180 +on7,0,0,25,1,0,473,4500.000000,57,1,11785.000320,2114.599792,hint,nbiot,180 +on3,0,0,25,1,0,360,4500.000000,57,1,7384.602240,1835.750416,hint,nbiot,180 +on1,0,0,26,1,0,749,4680.000000,57,2,17372.000320,2078.699792,hint,nbiot,180 +on8,0,0,26,1,0,294,4680.000000,57,2,7289.000960,2240.028960,hint,nbiot,180 +on11,0,0,27,1,0,728,4860.000000,57,3,18146.000320,2365.914584,hint,nbiot,180 +on12,0,0,24,1,0,1887,4320.000000,57,0,38020.000320,1788.450000,hint,nbiot,180 +on9,0,0,25,1,0,1011,4500.000000,58,1,20926.000320,1975.240208,hint,nbiot,180 +on2,0,0,24,1,0,35,4320.000000,58,0,2627.000320,1754.000208,hint,nbiot,180 +on4,0,0,26,1,0,1281,4680.000000,58,2,30068.000320,2147.469792,hint,nbiot,180 +on12,0,0,27,1,0,1053,4860.000000,58,6,27434.000320,2458.799584,hint,nbiot,180 +on3,0,0,24,1,0,1914,4320.000000,58,0,37542.000320,1754.000416,hint,nbiot,180 +on5,0,0,25,1,0,512,4500.000000,58,1,10121.000320,1826.845208,hint,nbiot,180 +on10,0,0,25,1,0,1233,4656.000000,58,2,27474.000960,2307.844376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,58,0,-1.000000,2075.755824,hint,nbiot,180 +on7,0,0,25,1,0,1201,4500.000000,58,1,24319.000320,1965.750208,hint,nbiot,180 +on8,0,0,26,1,0,773,4813.000000,58,5,15770.000320,2340.160000,hint,nbiot,180 +on1,0,0,25,1,0,2755,4500.000000,58,1,56910.000320,2075.470000,hint,nbiot,180 +on6,0,0,24,1,0,315,4320.000000,58,0,4408.000320,1869.700416,hint,nbiot,180 +on11,0,0,24,1,0,638,4320.000000,58,0,12142.000320,1972.660624,hint,nbiot,180 +on6,0,0,25,1,0,513,4500.000000,59,1,10419.000960,2123.309168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,59,0,-1.000000,2040.005616,hint,nbiot,180 +on3,0,0,26,1,0,486,4680.000000,59,2,13009.000320,2177.890000,hint,nbiot,180 +on1,0,0,25,1,0,333,4500.000000,59,1,6847.000960,1890.999792,hint,nbiot,180 +on12,0,0,24,1,0,81,4320.000000,59,0,2203.000320,1867.230208,hint,nbiot,180 +on4,0,0,26,1,0,298,4680.000000,59,2,6887.001600,2340.519792,hint,nbiot,180 +on11,0,0,24,1,0,300,4320.000000,59,0,6807.000320,1813.799792,hint,nbiot,180 +on10,0,0,25,1,0,1374,4500.000000,59,1,26065.000320,2033.350000,hint,nbiot,180 +on7,0,0,26,1,0,1102,4680.000000,59,2,19930.000960,2075.449792,hint,nbiot,180 +on8,0,0,27,1,0,568,4860.000000,59,3,13049.000960,2449.699168,hint,nbiot,180 +on5,0,0,24,1,0,917,4320.000000,59,0,19890.000320,1993.460000,hint,nbiot,180 +on9,0,0,27,1,0,572,4880.000000,59,5,17288.000320,2472.128960,hint,nbiot,180 +on2,0,0,25,1,0,491,4500.000000,59,1,10379.000320,1916.350208,hint,nbiot,180 +on11,0,0,25,1,0,990,4500.000000,60,1,21164.000320,2163.090416,hint,nbiot,180 +on8,0,0,24,1,0,392,4320.000000,60,0,9297.000320,1871.650208,hint,nbiot,180 +on10,0,0,26,1,0,423,4680.000000,60,3,9377.601600,2443.351040,hint,nbiot,180 +on12,0,0,25,1,0,179,4500.000000,60,2,4375.000320,2135.270208,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,60,0,-1.000000,2030.258944,hint,nbiot,180 +on3,0,0,25,1,0,733,4500.000000,60,1,17414.000320,2097.505208,hint,nbiot,180 +on9,0,0,26,1,0,895,4680.000000,60,2,17494.001600,2079.545624,hint,nbiot,180 +on2,0,0,27,1,0,1046,4860.000000,60,3,21204.000960,2494.549168,hint,nbiot,180 +on1,0,0,24,0,0,4299,4320.000000,60,0,-1.000000,1845.000000,hint,nbiot,180 +on4,0,0,24,1,0,690,4378.000000,60,1,17454.000960,1940.545624,hint,nbiot,180 +on6,0,0,29,1,0,750,5220.000000,60,6,24272.000320,3006.448752,hint,nbiot,180 +on7,0,0,24,1,0,111,4320.000000,60,0,867.000320,1870.350832,hint,nbiot,180 +on5,0,0,25,1,0,399,4500.000000,60,1,9337.000960,2040.500000,hint,nbiot,180 +on9,0,0,24,1,0,288,4320.000000,61,0,4112.000320,1754.000416,hint,nbiot,180 +on2,0,0,26,1,0,964,4680.000000,61,2,18331.001600,2056.600624,hint,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,61,0,7894.000320,1830.700208,hint,nbiot,180 +on1,0,0,26,1,0,745,4680.000000,61,2,18291.000960,2251.144584,hint,nbiot,180 +on10,0,0,26,1,0,748,4692.000000,61,3,18251.000320,2436.904168,hint,nbiot,180 +on3,0,0,27,1,0,839,4860.000000,61,4,24935.000320,2723.089168,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,61,0,-1.000000,2033.507072,hint,nbiot,180 +on12,0,0,25,1,0,1683,4500.000000,61,2,33755.000320,1912.060416,hint,nbiot,180 +on7,0,0,25,1,0,658,4500.000000,61,1,15346.000640,2373.300624,hint,nbiot,180 +on6,0,0,26,0,0,3966,4808.000000,61,3,-1.000000,2458.734792,hint,nbiot,180 +on11,0,0,24,1,0,492,4320.000000,61,0,7820.000320,1817.700416,hint,nbiot,180 +on5,0,0,26,1,0,409,4680.000000,61,4,13331.000960,2273.049792,hint,nbiot,180 +on8,0,0,25,1,0,654,4500.000000,61,1,13291.000320,1959.250208,hint,nbiot,180 +on6,0,0,24,1,0,200,4320.000000,62,0,5607.000320,1831.350000,hint,nbiot,180 +on7,0,0,26,1,0,668,4680.000000,62,2,14826.000320,2256.149792,hint,nbiot,180 +on3,0,0,26,1,0,377,4680.000000,62,2,5647.000960,2052.309376,hint,nbiot,180 +on8,0,0,25,1,0,867,4500.000000,62,1,20320.000320,2039.850000,hint,nbiot,180 +on10,0,0,27,1,0,507,4860.000000,62,3,13193.000960,2431.564168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,62,0,-1.000000,2050.014784,hint,nbiot,180 +on4,0,0,26,1,0,408,4680.000000,62,2,10540.001280,2304.510000,hint,nbiot,180 +on1,0,0,25,1,0,405,4500.000000,62,1,10499.000320,2112.585000,hint,nbiot,180 +on2,0,0,26,1,0,627,4680.000000,62,2,13153.000320,2078.049376,hint,nbiot,180 +on12,0,0,25,1,0,25,4500.000000,62,2,3057.600960,1917.195208,hint,nbiot,180 +on11,0,0,25,1,0,195,4500.000000,62,1,5687.001600,2015.150416,hint,nbiot,180 +on5,0,0,24,1,0,9,4320.000000,62,0,2942.000320,1816.400208,hint,nbiot,180 +on9,0,0,25,1,0,15,4500.000000,62,2,3017.000320,2087.559168,hint,nbiot,180 +on6,0,0,28,1,0,920,5040.000000,63,4,23432.000960,2582.083960,hint,nbiot,180 +on5,0,0,27,1,0,849,4860.000000,63,4,19592.001280,2243.389376,hint,nbiot,180 +on4,0,0,25,1,0,2030,4500.000000,63,1,43377.000320,2215.090000,hint,nbiot,180 +on1,0,0,25,1,0,762,4500.000000,63,1,17692.000960,2073.519792,hint,nbiot,180 +on3,0,0,26,1,0,1280,4680.000000,63,2,28388.000960,2282.149792,hint,nbiot,180 +on2,0,0,25,1,0,766,4500.000000,63,1,17652.000320,2031.660000,hint,nbiot,180 +on12,0,0,25,1,0,720,4500.000000,63,1,17772.002240,1916.349792,hint,nbiot,180 +on10,0,0,27,1,0,999,4860.000000,63,4,23392.000320,2506.444376,hint,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,63,0,12962.000320,1917.020416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,63,0,-1.000000,2040.005824,hint,nbiot,180 +on9,0,0,26,1,0,886,4680.000000,63,2,19551.000320,2182.309792,hint,nbiot,180 +on7,0,0,25,1,0,733,4500.000000,63,1,17732.001600,1967.698336,hint,nbiot,180 +on8,0,0,26,1,0,1235,4680.000000,63,2,28348.000320,2232.750000,hint,nbiot,180 +on12,0,0,25,1,0,1013,4500.000000,64,1,19303.000320,1953.920416,hint,nbiot,180 +on8,0,0,24,1,0,3921,4320.000000,64,0,80036.000320,1987.350000,hint,nbiot,180 +on1,0,0,25,1,0,1374,4500.000000,64,1,28311.000320,2074.300416,hint,nbiot,180 +on10,0,0,24,1,0,1111,4320.000000,64,0,24646.000320,1977.210416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,64,0,-1.000000,2100.458528,hint,nbiot,180 +on11,0,0,25,1,0,1413,4500.000000,64,1,28351.000960,1890.999584,hint,nbiot,180 +on6,0,0,25,1,0,543,4500.000000,64,1,12480.600640,1938.256040,hint,nbiot,180 +on7,0,0,26,1,0,1531,4680.000000,64,2,31818.000320,2190.110000,hint,nbiot,180 +on5,0,0,27,1,0,1506,4860.000000,64,4,31898.601600,2461.530000,hint,nbiot,180 +on3,0,0,25,1,0,834,4500.000000,64,1,15077.000320,2006.310832,hint,nbiot,180 +on2,0,0,26,1,0,1623,4680.000000,64,2,31858.000960,2297.100000,hint,nbiot,180 +on4,0,0,27,1,0,1799,4860.000000,64,3,39641.000320,2288.370208,hint,nbiot,180 +on9,0,0,30,1,0,1774,5400.000000,64,7,44894.000320,3099.443960,hint,nbiot,180 +on8,0,0,25,1,0,20,4500.000000,65,1,658.600640,1993.115208,hint,nbiot,180 +on6,0,0,24,1,0,2047,4320.000000,65,0,42936.000320,1802.100000,hint,nbiot,180 +on1,0,0,25,1,0,653,4500.000000,65,1,13003.000320,2044.660416,hint,nbiot,180 +on10,0,0,26,1,0,560,4680.000000,65,2,9900.600960,2117.310416,hint,nbiot,180 +on5,0,0,25,1,0,287,4500.000000,65,1,9859.000320,2247.784376,hint,nbiot,180 +on9,0,0,25,1,0,175,4500.000000,65,1,6847.600640,2080.215000,hint,nbiot,180 +on4,0,0,26,1,0,595,4825.000000,65,3,18878.000320,2559.850000,hint,nbiot,180 +on7,0,0,24,1,0,3607,4320.000000,65,0,73073.000320,1876.850000,hint,nbiot,180 +on3,0,0,25,1,0,564,4500.000000,65,2,13083.601600,2058.895832,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,65,0,-1.000000,2068.866240,hint,nbiot,180 +on2,0,0,25,1,0,322,4500.000000,65,1,6789.000320,2033.350208,hint,nbiot,180 +on11,0,0,25,1,0,608,4500.000000,65,1,13043.000960,2026.719792,hint,nbiot,180 +on12,0,0,25,1,0,1800,4500.000000,65,2,36757.600640,2028.995624,hint,nbiot,180 +on4,0,0,25,1,0,665,4500.000000,66,1,13190.000320,2205.599792,hint,nbiot,180 +on1,0,0,25,1,0,513,4544.000000,66,2,9519.000960,2117.703752,hint,nbiot,180 +on8,0,0,26,1,0,537,4680.000000,66,3,9559.601600,2053.609792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,66,0,-1.000000,2043.515824,hint,nbiot,180 +on2,0,0,27,1,0,753,5036.000000,66,4,19448.600960,2549.025208,hint,nbiot,180 +on6,0,0,27,1,0,916,4860.000000,66,3,24992.000320,2475.699584,hint,nbiot,180 +on3,0,0,27,1,0,618,4860.000000,66,4,19407.000320,2438.777504,hint,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,66,0,4404.000320,1880.620416,hint,nbiot,180 +on5,0,0,26,1,0,688,4680.000000,66,2,13230.000960,2148.509168,hint,nbiot,180 +on10,0,0,26,1,0,726,4680.000000,66,2,17533.000320,2383.029168,hint,nbiot,180 +on9,0,0,25,1,0,403,4500.000000,66,1,9479.000320,2134.360000,hint,nbiot,180 +on12,0,0,26,1,0,1292,4680.000000,66,2,26809.000320,2195.699584,hint,nbiot,180 +on7,0,0,25,1,0,376,4500.000000,66,1,9599.602240,1958.728128,hint,nbiot,180 +on5,0,0,24,1,0,1141,4320.000000,67,0,23381.000320,1796.900208,hint,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,67,0,5432.000320,1791.310000,hint,nbiot,180 +on7,0,0,26,1,0,470,4680.000000,67,3,9843.601600,1900.535832,hint,nbiot,180 +on11,0,0,27,1,0,710,4860.000000,67,3,14853.000960,2447.099584,hint,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,67,0,1593.000320,1754.000208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,67,0,-1.000000,2043.904784,hint,nbiot,180 +on8,0,0,26,1,0,333,4680.000000,67,2,9803.000960,2285.204168,hint,nbiot,180 +on6,0,0,24,1,0,291,4422.000000,67,1,9763.000320,1956.845208,hint,nbiot,180 +on4,0,0,26,1,0,738,4680.000000,67,2,14813.000320,2079.349792,hint,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,67,0,26379.000320,1845.000000,hint,nbiot,180 +on9,0,0,27,1,0,667,4860.000000,67,3,11643.001280,2125.544376,hint,nbiot,180 +on12,0,0,26,1,0,695,4680.000000,67,2,18080.000320,2414.750000,hint,nbiot,180 +on2,0,0,24,1,0,574,4320.000000,67,0,11602.000320,1938.600208,hint,nbiot,180 +on11,0,0,24,1,0,0,4405.000000,68,1,2239.600640,1788.195832,hint,nbiot,180 +on5,0,0,25,1,0,1975,4500.000000,68,1,38391.000320,1866.300208,hint,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,68,0,26330.000320,1906.100208,hint,nbiot,180 +on3,0,0,24,1,0,919,4320.000000,68,1,21043.600320,1881.660000,hint,nbiot,180 +on8,0,0,24,1,0,1573,4320.000000,68,0,31168.000320,1939.900416,hint,nbiot,180 +on12,0,0,24,1,0,820,4320.000000,68,1,17197.000320,1840.450000,hint,nbiot,180 +on10,0,0,25,1,0,1699,4500.000000,68,1,35533.000320,2065.850208,hint,nbiot,180 +on9,0,0,24,1,0,2609,4320.000000,68,1,54759.000320,1878.020000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,68,0,-1.000000,2058.207072,hint,nbiot,180 +on2,0,0,25,1,0,924,4500.000000,68,1,17237.000960,1890.999584,hint,nbiot,180 +on1,0,0,25,1,0,900,4500.000000,68,1,21177.601280,1855.250416,hint,nbiot,180 +on6,0,0,26,1,0,974,4819.000000,68,6,21684.000320,2411.654792,hint,nbiot,180 +on7,0,0,24,1,0,593,4320.000000,68,0,11560.000320,1782.210832,hint,nbiot,180 +on11,0,0,27,1,0,1083,4860.000000,69,3,24758.000320,2430.069584,hint,nbiot,180 +on6,0,0,27,1,0,718,4860.000000,69,4,16035.000320,2360.193960,hint,nbiot,180 +on3,0,0,25,1,0,745,4500.000000,69,2,16075.600960,1942.545624,hint,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,69,0,13945.000320,2123.069792,hint,nbiot,180 +on8,0,0,25,1,0,855,4500.000000,69,1,15994.000960,1955.999584,hint,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,69,0,9819.000320,1867.620208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,69,0,-1.000000,2052.354576,hint,nbiot,180 +on4,0,0,27,1,0,1052,4860.000000,69,3,24798.000960,2285.899376,hint,nbiot,180 +on2,0,0,26,1,0,648,4680.000000,69,2,13876.001280,2121.925624,hint,nbiot,180 +on5,0,0,24,1,0,841,4320.000000,69,0,15954.000320,1765.700000,hint,nbiot,180 +on12,0,0,26,1,0,874,4680.000000,69,2,21251.001280,2195.049376,hint,nbiot,180 +on1,0,0,27,1,0,909,4860.000000,69,3,21210.000320,2289.084792,hint,nbiot,180 +on7,0,0,25,1,0,642,4500.000000,69,1,13836.000640,1950.799792,hint,nbiot,180 +on2,0,0,27,1,0,1071,4860.000000,70,3,28274.000320,2501.050000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,70,0,-1.000000,2058.465200,hint,nbiot,180 +on9,0,0,25,1,0,685,4500.000000,70,1,13403.000320,1916.804792,hint,nbiot,180 +on8,0,0,26,1,0,723,4680.000000,70,3,14797.000320,2096.769584,hint,nbiot,180 +on3,0,0,25,1,0,2495,4500.000000,70,1,49607.000320,2033.350000,hint,nbiot,180 +on5,0,0,24,1,0,387,4320.000000,70,0,10499.000320,1982.410208,hint,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,70,0,2240.000320,1798.200624,hint,nbiot,180 +on7,0,0,25,1,0,785,4500.000000,70,1,20420.000320,2206.250208,hint,nbiot,180 +on12,0,0,27,1,0,923,4860.000000,70,4,23239.600960,2409.140000,hint,nbiot,180 +on6,0,0,26,1,0,724,4680.000000,70,2,13444.600960,2152.019584,hint,nbiot,180 +on4,0,0,26,1,0,680,4680.000000,70,2,14838.600960,2201.874584,hint,nbiot,180 +on1,0,0,26,1,0,989,4680.000000,70,2,23198.000320,2192.969584,hint,nbiot,180 +on10,0,0,25,1,0,1371,4500.000000,70,1,30648.000320,1937.345000,hint,nbiot,180 +on5,0,0,26,1,0,300,4680.000000,71,2,5717.000320,2141.100000,hint,nbiot,180 +on8,0,0,25,1,0,470,4500.000000,71,1,13189.000320,1918.950208,hint,nbiot,180 +on7,0,0,26,1,0,600,4680.000000,71,2,13229.000960,2053.349584,hint,nbiot,180 +on10,0,0,25,1,0,898,4500.000000,71,1,22822.000320,2281.000208,hint,nbiot,180 +on11,0,0,26,1,0,673,4833.000000,71,3,14482.600960,2389.760208,hint,nbiot,180 +on2,0,0,24,1,0,1943,4320.000000,71,0,41219.000320,1869.700000,hint,nbiot,180 +on3,0,0,25,1,0,224,4500.000000,71,1,8720.000320,2111.153752,hint,nbiot,180 +on4,0,0,25,1,0,138,4500.000000,71,1,3130.600640,2037.315416,hint,nbiot,180 +on1,0,0,26,1,0,582,4680.000000,71,3,14441.000320,2330.249168,hint,nbiot,180 +on6,0,0,25,1,0,205,4500.000000,71,2,5757.600960,2084.764376,hint,nbiot,180 +on12,0,0,25,1,0,180,4500.000000,71,2,5816.201600,1936.174792,hint,nbiot,180 +on9,0,0,26,1,0,497,4680.000000,71,2,13269.001600,2264.470000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,71,0,-1.000000,2079.524992,hint,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,72,0,41125.000320,1961.350000,hint,nbiot,180 +on11,0,0,24,1,0,1822,4320.000000,72,0,36361.000320,1820.950208,hint,nbiot,180 +on9,0,0,25,1,0,1440,4500.000000,72,1,29335.600640,1958.145624,hint,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,72,0,7507.000320,1949.520416,hint,nbiot,180 +on6,0,0,26,1,0,1108,4775.000000,72,3,23064.000960,2250.209584,hint,nbiot,180 +on10,0,0,26,1,0,768,4680.000000,72,2,16150.000960,2185.560000,hint,nbiot,180 +on1,0,0,27,1,0,1220,4860.000000,72,3,26944.000320,2347.194792,hint,nbiot,180 +on3,0,0,26,1,0,1166,4680.000000,72,3,23024.000320,2169.700000,hint,nbiot,180 +on8,0,0,26,1,0,693,4680.000000,72,2,16110.000320,2194.270208,hint,nbiot,180 +on7,0,0,24,1,0,668,4320.000000,72,0,11942.000320,1845.780000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,72,0,-1.000000,2062.106864,hint,nbiot,180 +on4,0,0,26,1,0,599,4680.000000,72,2,11983.600960,2110.680624,hint,nbiot,180 +on5,0,0,26,1,0,873,4680.000000,72,2,18841.000320,2147.599792,hint,nbiot,180 +on8,0,0,27,1,0,1208,4860.000000,73,3,25467.600960,2350.899584,hint,nbiot,180 +on6,0,0,25,1,0,171,4539.000000,73,3,6514.601600,2056.555416,hint,nbiot,180 +on9,0,0,25,1,0,1969,4500.000000,73,1,38969.000320,1917.000000,hint,nbiot,180 +on10,0,0,25,1,0,270,4500.000000,73,1,6474.000960,1875.399792,hint,nbiot,180 +on1,0,0,25,1,0,335,4500.000000,73,1,7937.000320,1978.100000,hint,nbiot,180 +on2,0,0,25,1,0,1504,4500.000000,73,1,30987.000320,2034.000000,hint,nbiot,180 +on7,0,0,24,1,0,314,4320.000000,73,0,6434.000320,1850.720000,hint,nbiot,180 +on11,0,0,25,1,0,1076,4500.000000,73,1,24826.600640,2102.704376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,73,0,-1.000000,2055.865824,hint,nbiot,180 +on3,0,0,27,1,0,487,4860.000000,73,3,7977.000960,2240.659792,hint,nbiot,180 +on5,0,0,25,1,0,1092,4500.000000,73,2,25426.000320,2252.139792,hint,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,73,0,216.000320,1907.920416,hint,nbiot,180 +on4,0,0,24,1,0,1103,4320.000000,73,1,24762.000320,1820.300000,hint,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,74,0,3358.000320,1981.759792,hint,nbiot,180 +on11,0,0,24,1,0,468,4320.000000,74,0,9173.000320,1890.110000,hint,nbiot,180 +on2,0,0,28,1,0,914,5040.000000,74,4,20268.000960,2377.659168,hint,nbiot,180 +on1,0,0,25,1,0,927,4500.000000,74,1,20308.001600,1826.000208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,74,0,-1.000000,2040.005200,hint,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,74,0,17105.000320,1807.300208,hint,nbiot,180 +on4,0,0,28,1,0,821,5040.000000,74,4,20228.000320,2636.293960,hint,nbiot,180 +on7,0,0,26,1,0,585,4680.000000,74,2,11692.001280,2274.349584,hint,nbiot,180 +on3,0,0,24,1,0,652,4320.000000,74,0,11651.000320,1862.549376,hint,nbiot,180 +on12,0,0,25,1,0,881,4500.000000,74,1,17036.000320,1916.350000,hint,nbiot,180 +on5,0,0,25,1,0,1003,4500.000000,74,1,22982.000320,2098.350000,hint,nbiot,180 +on9,0,0,25,1,0,318,4500.000000,74,1,6442.000320,1973.550000,hint,nbiot,180 +on6,0,0,26,1,0,334,4680.000000,74,3,9214.600960,2188.614376,hint,nbiot,180 +on1,0,0,29,1,0,310,5220.000000,75,5,16774.000960,2771.733960,hint,nbiot,180 +on2,0,0,26,1,0,292,4680.000000,75,2,6660.400640,2072.785000,hint,nbiot,180 +on3,0,0,26,1,0,383,4680.000000,75,3,8079.000320,2028.584584,hint,nbiot,180 +on9,0,0,26,1,0,747,4680.000000,75,2,16734.000320,2078.049792,hint,nbiot,180 +on5,0,0,27,1,0,619,4860.000000,75,3,19560.000320,2545.249376,hint,nbiot,180 +on7,0,0,26,1,0,894,4680.000000,75,3,16814.601600,1899.690624,hint,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,75,0,343.000320,1848.380208,hint,nbiot,180 +on11,0,0,25,1,0,317,4500.000000,75,1,6620.000960,1906.990000,hint,nbiot,180 +on10,0,0,26,1,0,384,4680.000000,75,2,6700.401280,2104.699792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,75,0,-1.000000,2040.004576,hint,nbiot,180 +on4,0,0,27,1,0,577,4860.000000,75,3,12302.000960,2357.464168,hint,nbiot,180 +on6,0,0,24,1,0,554,4450.000000,75,1,12262.000320,2012.700000,hint,nbiot,180 +on12,0,0,24,1,0,306,4320.000000,75,0,6580.000320,1925.860208,hint,nbiot,180 +on2,0,0,24,1,0,3804,4320.000000,76,0,76917.000320,1829.400000,hint,nbiot,180 +on1,0,0,25,1,0,760,4500.000000,76,1,17526.600960,2126.820624,hint,nbiot,180 +on9,0,0,25,1,0,361,4500.000000,76,1,8421.600320,2042.320624,hint,nbiot,180 +on10,0,0,25,1,0,1983,4500.000000,76,1,40957.000320,2058.310208,hint,nbiot,180 +on12,0,0,24,1,0,435,4320.000000,76,0,8343.000320,1961.610624,hint,nbiot,180 +on3,0,0,24,1,0,3847,4444.000000,76,1,84021.000000,2117.355000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,76,0,-1.000000,2057.166656,hint,nbiot,180 +on8,0,0,26,1,0,658,4680.000000,76,2,12059.600960,2032.160208,hint,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,76,0,28326.000320,1754.000624,hint,nbiot,180 +on5,0,0,24,1,0,621,4320.000000,76,1,12018.000320,1807.819792,hint,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,76,0,6330.000320,1754.000416,hint,nbiot,180 +on4,0,0,25,1,0,833,4500.000000,76,1,17485.000320,1986.810208,hint,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,76,0,35539.000320,2112.800624,hint,nbiot,180 +on11,0,0,25,1,0,473,4500.000000,77,1,11005.000320,2030.620000,hint,nbiot,180 +on7,0,0,26,1,0,490,4680.000000,77,2,11045.000960,2173.143960,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,77,0,-1.000000,2060.154992,hint,nbiot,180 +on10,0,0,25,1,0,514,4509.000000,77,2,11125.401600,2010.299792,hint,nbiot,180 +on12,0,0,25,1,0,183,4500.000000,77,2,7385.000320,2057.269792,hint,nbiot,180 +on9,0,0,27,1,0,805,4860.000000,77,4,21524.601600,2261.914792,hint,nbiot,180 +on4,0,0,25,1,0,233,4500.000000,77,1,4997.600640,1940.465624,hint,nbiot,180 +on5,0,0,26,1,0,602,4680.000000,77,2,21444.000320,2420.339168,hint,nbiot,180 +on8,0,0,25,1,0,552,4500.000000,77,1,11085.400960,1969.388960,hint,nbiot,180 +on6,0,0,24,1,0,736,4320.000000,77,0,16276.000320,1949.650000,hint,nbiot,180 +on2,0,0,27,1,0,910,4860.000000,77,3,24928.000320,2587.109376,hint,nbiot,180 +on1,0,0,25,1,0,873,4500.000000,77,1,16316.000960,2007.349584,hint,nbiot,180 +on3,0,0,28,1,0,720,5040.000000,77,4,21484.000960,2625.504168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,78,0,-1.000000,2083.557072,hint,nbiot,180 +on7,0,0,25,1,0,326,4500.000000,78,1,5141.000320,1942.155624,hint,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,78,0,9246.000320,1934.311248,hint,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,78,0,10926.000320,1772.850416,hint,nbiot,180 +on8,0,0,24,1,0,23,4320.000000,78,0,2505.000320,1893.100416,hint,nbiot,180 +on10,0,0,24,1,0,749,4320.000000,78,0,15614.000320,2138.410624,hint,nbiot,180 +on1,0,0,25,1,0,2950,4500.000000,78,1,64197.000320,2210.215208,hint,nbiot,180 +on2,0,0,25,1,0,1493,4500.000000,78,2,32055.000320,1903.350416,hint,nbiot,180 +on3,0,0,26,1,0,1054,4680.000000,78,2,19074.600640,2013.895832,hint,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,78,0,27081.000320,1834.600416,hint,nbiot,180 +on5,0,0,25,1,0,3854,4533.000000,78,3,82108.000320,2114.149792,hint,nbiot,180 +on9,0,0,26,1,0,1613,4680.000000,78,3,33841.000320,2091.049792,hint,nbiot,180 +on4,0,0,25,1,0,1100,4500.000000,78,1,23953.000320,2356.660208,hint,nbiot,180 +on6,0,0,25,1,0,2143,4500.000000,79,1,45597.000320,1928.700000,hint,nbiot,180 +on10,0,0,25,1,0,451,4500.000000,79,1,11639.000320,1940.400000,hint,nbiot,180 +on1,0,0,25,1,0,1439,4500.000000,79,1,28515.000320,1880.144792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,79,0,-1.000000,2051.705200,hint,nbiot,180 +on3,0,0,24,1,0,70,4320.000000,79,0,1250.000320,1754.000416,hint,nbiot,180 +on9,0,0,24,1,0,2049,4320.000000,79,0,42628.000320,1780.000208,hint,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,79,0,1337.000320,1862.160416,hint,nbiot,180 +on5,0,0,25,1,0,851,4513.000000,79,2,16960.600640,1956.195416,hint,nbiot,180 +on8,0,0,24,1,0,1260,4356.000000,79,1,28613.001280,1768.400416,hint,nbiot,180 +on7,0,0,26,1,0,1424,4680.000000,79,4,29843.000320,2191.149792,hint,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,79,0,20365.000320,1797.550208,hint,nbiot,180 +on4,0,0,24,1,0,1109,4320.000000,79,1,23148.400320,1869.700208,hint,nbiot,180 +on11,0,0,25,1,0,180,4500.000000,79,1,4836.600640,1980.766040,hint,nbiot,180 +on11,0,0,24,1,0,1112,4320.000000,80,0,22071.000320,1790.400208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,80,0,-1.000000,2040.005200,hint,nbiot,180 +on12,0,0,24,1,0,233,4320.000000,80,1,7046.000320,1828.750208,hint,nbiot,180 +on4,0,0,26,1,0,440,4680.000000,80,3,15009.000320,2286.374584,hint,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,80,0,3067.000320,1781.560208,hint,nbiot,180 +on8,0,0,26,1,0,358,4680.000000,80,3,7126.601600,2106.650416,hint,nbiot,180 +on7,0,0,25,1,0,1111,4500.000000,80,2,27933.000320,2013.849792,hint,nbiot,180 +on3,0,0,25,1,0,360,4500.000000,80,1,7829.600640,1916.545000,hint,nbiot,180 +on5,0,0,25,1,0,219,4500.000000,80,1,7692.000320,2124.999792,hint,nbiot,180 +on6,0,0,24,1,0,611,4439.000000,80,1,11668.000320,1891.950000,hint,nbiot,180 +on10,0,0,27,1,0,666,4860.000000,80,3,15050.600960,2270.300208,hint,nbiot,180 +on9,0,0,26,1,0,960,4680.000000,80,2,21458.000320,2079.999792,hint,nbiot,180 +on2,0,0,26,1,0,334,4680.000000,80,2,7086.000960,2079.414376,hint,nbiot,180 +on3,0,0,27,1,0,489,4860.000000,81,3,14161.600960,2410.244584,hint,nbiot,180 +on9,0,0,26,1,0,583,4680.000000,81,3,14120.000320,2203.823752,hint,nbiot,180 +on5,0,0,26,1,0,488,4680.000000,81,2,9385.000960,2234.049376,hint,nbiot,180 +on8,0,0,26,1,0,269,4680.000000,81,2,9345.000320,2194.594584,hint,nbiot,180 +on12,0,0,24,1,0,2182,4320.000000,81,0,45898.000320,1830.700000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,81,0,-1.000000,2040.006032,hint,nbiot,180 +on2,0,0,27,1,0,332,4860.000000,81,3,9425.001600,2423.698752,hint,nbiot,180 +on6,0,0,25,1,0,358,4500.000000,81,1,6286.000960,1890.999792,hint,nbiot,180 +on7,0,0,26,1,0,1050,4680.000000,81,2,26519.000320,2195.050208,hint,nbiot,180 +on4,0,0,24,1,0,1670,4320.000000,81,0,33615.000320,1754.000208,hint,nbiot,180 +on10,0,0,24,1,0,0,4459.000000,81,1,2528.600640,2109.705000,hint,nbiot,180 +on11,0,0,25,1,0,0,4500.000000,81,1,2585.600640,2011.705832,hint,nbiot,180 +on1,0,0,25,1,0,113,4500.000000,81,1,6246.000320,2032.505000,hint,nbiot,180 +on9,0,0,24,1,0,99,4320.000000,82,0,521.000320,1859.820000,hint,nbiot,180 +on4,0,0,26,1,0,539,4680.000000,82,2,9546.400640,2259.139168,hint,nbiot,180 +on11,0,0,25,1,0,294,4500.000000,82,1,6707.000320,1915.700000,hint,nbiot,180 +on8,0,0,27,1,0,402,4860.000000,82,4,12013.000320,2391.849376,hint,nbiot,180 +on2,0,0,25,1,0,35,4500.000000,82,1,561.000960,1973.158960,hint,nbiot,180 +on12,0,0,26,1,0,444,4680.000000,82,2,9506.000960,2216.434792,hint,nbiot,180 +on6,0,0,27,1,0,431,5037.000000,82,4,17265.000320,2631.389792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,82,0,-1.000000,2040.004992,hint,nbiot,180 +on1,0,0,29,1,0,782,5220.000000,82,6,20597.000320,2815.608960,hint,nbiot,180 +on5,0,0,25,1,0,292,4500.000000,82,1,6747.000960,2051.939792,hint,nbiot,180 +on7,0,0,24,1,0,106,4384.000000,82,2,601.601600,1896.600832,hint,nbiot,180 +on10,0,0,26,1,0,570,4680.000000,82,2,9586.401280,1989.000000,hint,nbiot,180 +on3,0,0,26,1,0,159,4680.000000,82,2,9466.000320,2258.359376,hint,nbiot,180 +on6,0,0,24,1,0,436,4320.000000,83,0,7461.000320,1943.150208,hint,nbiot,180 +on3,0,0,29,1,0,841,5220.000000,83,6,21208.000320,2767.898336,hint,nbiot,180 +on1,0,0,25,1,0,873,4500.000000,83,1,16120.000960,2006.700000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,83,0,-1.000000,2040.007280,hint,nbiot,180 +on9,0,0,25,1,0,710,4500.000000,83,1,16080.000320,2175.700416,hint,nbiot,180 +on12,0,0,28,1,0,816,5040.000000,83,4,22003.000320,2709.093960,hint,nbiot,180 +on11,0,0,25,1,0,2296,4500.000000,83,1,45001.000320,2038.940000,hint,nbiot,180 +on2,0,0,24,1,0,207,4320.000000,83,0,4927.000320,1826.800000,hint,nbiot,180 +on10,0,0,26,1,0,396,4694.000000,83,5,7541.601600,2260.320624,hint,nbiot,180 +on7,0,0,26,1,0,881,4680.000000,83,2,16160.001600,1914.510416,hint,nbiot,180 +on8,0,0,25,1,0,0,4500.000000,83,1,3214.600640,2114.276040,hint,nbiot,180 +on5,0,0,27,1,0,315,4860.000000,83,3,7501.000960,2613.628752,hint,nbiot,180 +on4,0,0,24,1,0,596,4320.000000,83,1,13172.000320,1805.350000,hint,nbiot,180 +on3,0,0,27,1,0,1589,4860.000000,84,3,33515.000320,2348.300208,hint,nbiot,180 +on2,0,0,26,1,0,819,4680.000000,84,2,20477.000320,2252.575000,hint,nbiot,180 +on6,0,0,27,1,0,1502,4994.000000,84,6,41407.000320,2772.464376,hint,nbiot,180 +on5,0,0,24,1,0,119,4320.000000,84,0,2095.000320,1754.000208,hint,nbiot,180 +on12,0,0,26,1,0,965,4788.000000,84,3,24351.000320,2514.369792,hint,nbiot,180 +on11,0,0,26,1,0,796,4680.000000,84,2,17303.400640,2222.480832,hint,nbiot,180 +on10,0,0,27,1,0,1261,4860.000000,84,4,24392.600960,2060.350000,hint,nbiot,180 +on1,0,0,24,1,0,397,4320.000000,84,0,7737.000320,1856.570208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,84,0,-1.000000,2063.406032,hint,nbiot,180 +on8,0,0,24,1,0,89,4416.000000,84,2,6950.000320,1890.550000,hint,nbiot,180 +on7,0,0,25,1,0,779,4500.000000,84,1,17263.000960,2334.170208,hint,nbiot,180 +on4,0,0,25,1,0,610,4500.000000,84,1,13935.000320,1986.290208,hint,nbiot,180 +on9,0,0,25,1,0,889,4500.000000,84,1,17223.000320,2202.869792,hint,nbiot,180 +on5,0,0,26,1,0,1117,4680.000000,85,2,22542.000320,2247.180208,hint,nbiot,180 +on11,0,0,25,1,0,0,4500.000000,85,1,2905.600640,1976.345832,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,85,0,-1.000000,2032.208736,hint,nbiot,180 +on4,0,0,25,1,0,1048,4500.000000,85,1,20943.000320,1915.960000,hint,nbiot,180 +on6,0,0,27,1,0,982,4860.000000,85,4,20984.600960,2183.849584,hint,nbiot,180 +on7,0,0,25,1,0,0,4500.000000,85,1,2977.600640,2056.815624,hint,nbiot,180 +on10,0,0,24,1,0,370,4320.000000,85,0,7640.000320,1921.310416,hint,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,hint,nbiot,180 +on12,0,0,26,1,0,532,4680.000000,85,2,12842.000320,2214.550208,hint,nbiot,180 +on8,0,0,26,1,0,266,4680.000000,85,2,7681.600960,2094.171248,hint,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,85,0,12961.000320,2039.219792,hint,nbiot,180 +on9,0,0,25,1,0,766,4500.000000,85,1,17456.000320,2134.750624,hint,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,85,0,62750.000320,1945.750208,hint,nbiot,180 +on3,0,0,26,1,0,3009,4680.000000,86,3,61513.000320,2313.349792,hint,nbiot,180 +on5,0,0,24,1,0,1720,4320.000000,86,0,35421.000320,1757.250208,hint,nbiot,180 +on11,0,0,24,1,0,3005,4320.000000,86,0,60393.000320,1754.000208,hint,nbiot,180 +on8,0,0,25,1,0,3151,4500.000000,86,1,65332.000320,2057.140000,hint,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,86,0,23262.000320,1754.000416,hint,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,86,0,19251.000320,1869.310208,hint,nbiot,180 +on2,0,0,24,1,0,1188,4320.000000,86,0,23146.000320,1761.800208,hint,nbiot,180 +on4,0,0,25,1,0,2849,4500.000000,86,1,57146.000320,2020.610000,hint,nbiot,180 +on7,0,0,24,1,0,1343,4320.000000,86,1,26003.000320,1754.000208,hint,nbiot,180 +on6,0,0,26,1,0,1828,4680.000000,86,3,35496.000320,2436.460000,hint,nbiot,180 +on1,0,0,27,1,0,1448,4860.000000,86,5,30906.000320,2375.405000,hint,nbiot,180 +on9,0,0,25,1,0,1645,4500.000000,86,2,35536.600960,1942.545832,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,86,0,-1.000000,2104.355408,hint,nbiot,180 +on12,0,0,26,1,0,1041,4680.000000,87,3,18495.601600,2233.399792,hint,nbiot,180 +on3,0,0,25,1,0,1179,4500.000000,87,1,23613.000960,1969.649584,hint,nbiot,180 +on1,0,0,27,1,0,1376,4860.000000,87,4,26563.601920,2238.970624,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,87,0,-1.000000,2040.004784,hint,nbiot,180 +on7,0,0,24,1,0,966,4320.000000,87,1,18415.000320,1774.800000,hint,nbiot,180 +on2,0,0,25,1,0,473,4500.000000,87,1,12043.000320,1863.310208,hint,nbiot,180 +on4,0,0,24,1,0,839,4320.000000,87,0,16564.000320,1860.470208,hint,nbiot,180 +on8,0,0,27,1,0,913,4860.000000,87,4,18455.000960,2356.359584,hint,nbiot,180 +on9,0,0,26,1,0,1196,4680.000000,87,2,26482.000320,2084.549792,hint,nbiot,180 +on10,0,0,26,1,0,1055,4680.000000,87,2,23573.000320,2078.894584,hint,nbiot,180 +on11,0,0,27,1,0,1312,4860.000000,87,3,30078.000320,2403.354376,hint,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,87,1,5348.600640,1855.705624,hint,nbiot,180 +on5,0,0,27,1,0,1208,4860.000000,87,3,26523.001280,2125.349168,hint,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,hint,nbiot,180 +on10,0,0,25,1,0,113,4500.000000,88,3,5611.000320,2289.645208,hint,nbiot,180 +on1,0,0,25,1,0,2700,4500.000000,88,1,57369.600640,2122.595624,hint,nbiot,180 +on7,0,0,25,1,0,180,4500.000000,88,1,7605.000320,2149.309584,hint,nbiot,180 +on5,0,0,24,1,0,77,4320.000000,88,0,2041.000320,1859.560000,hint,nbiot,180 +on6,0,0,25,1,0,1553,4500.000000,88,1,31848.000320,1985.900416,hint,nbiot,180 +on2,0,0,25,1,0,628,4500.000000,88,1,12959.000320,2147.750416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,88,0,-1.000000,2014.008528,hint,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,88,0,18114.000320,1870.350624,hint,nbiot,180 +on4,0,0,25,1,0,386,4500.000000,88,1,7646.600960,2013.200000,hint,nbiot,180 +on12,0,0,25,1,0,360,4500.000000,88,1,7705.000320,2099.650624,hint,nbiot,180 +on3,0,0,25,1,0,0,4500.000000,88,1,2139.001280,2262.151040,hint,nbiot,180 +on11,0,0,25,1,0,333,4651.000000,88,2,5651.000960,2106.099376,hint,nbiot,180 +on4,0,0,25,1,0,1231,4500.000000,89,1,26210.000320,2165.559792,hint,nbiot,180 +on2,0,0,24,1,0,812,4356.000000,89,1,16482.600640,1951.765832,hint,nbiot,180 +on10,0,0,25,1,0,902,4500.000000,89,1,22603.000320,2147.620000,hint,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,89,0,10585.000320,1869.310208,hint,nbiot,180 +on6,0,0,24,1,0,3085,4320.000000,89,0,61454.000320,1828.750000,hint,nbiot,180 +on12,0,0,26,1,0,1412,4680.000000,89,2,26251.600960,2109.445416,hint,nbiot,180 +on3,0,0,25,1,0,180,4500.000000,89,1,6218.600640,1864.545624,hint,nbiot,180 +on11,0,0,24,1,0,0,4330.000000,89,1,3007.600640,2071.365832,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,89,0,-1.000000,2060.417072,hint,nbiot,180 +on9,0,0,25,1,0,718,4500.000000,89,1,14192.000320,1942.350208,hint,nbiot,180 +on7,0,0,25,1,0,900,4500.000000,89,1,20432.600640,1954.245416,hint,nbiot,180 +on1,0,0,26,1,0,1235,4680.000000,89,2,22644.600960,2139.800000,hint,nbiot,180 +on8,0,0,25,1,0,531,4500.000000,89,1,10509.000320,2208.200624,hint,nbiot,180 +on2,0,0,24,1,0,291,4320.000000,90,0,6756.000320,1868.270208,hint,nbiot,180 +on3,0,0,25,1,0,386,4500.000000,90,1,10635.002240,1877.350208,hint,nbiot,180 +on7,0,0,24,1,0,364,4320.000000,90,0,10515.000320,1841.750000,hint,nbiot,180 +on1,0,0,26,1,0,1058,4680.000000,90,2,24310.600960,2119.909584,hint,nbiot,180 +on5,0,0,24,1,0,655,4320.000000,90,0,11307.000320,1769.600000,hint,nbiot,180 +on11,0,0,25,1,0,439,4500.000000,90,2,10555.000960,1989.799168,hint,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,90,0,11363.000320,1754.000208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,90,0,-1.000000,2040.004576,hint,nbiot,180 +on6,0,0,26,1,0,454,4680.000000,90,2,10595.001600,2207.918752,hint,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,90,0,15267.000320,1845.000000,hint,nbiot,180 +on9,0,0,27,1,0,669,4965.000000,90,5,19292.000320,2583.284584,hint,nbiot,180 +on8,0,0,27,1,0,621,4860.000000,90,4,15143.000320,2345.374584,hint,nbiot,180 +on4,0,0,25,1,0,981,4500.000000,90,1,24269.000320,2084.829792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,91,0,-1.000000,2046.114368,hint,nbiot,180 +on7,0,0,25,1,0,937,4601.000000,91,2,20634.000320,2069.199376,hint,nbiot,180 +on11,0,0,27,1,0,1054,4860.000000,91,4,24421.600960,2202.635000,hint,nbiot,180 +on12,0,0,27,1,0,1196,4860.000000,91,3,26258.000320,2335.234584,hint,nbiot,180 +on2,0,0,25,1,0,555,4500.000000,91,1,13746.002240,2023.859792,hint,nbiot,180 +on4,0,0,25,1,0,514,4502.000000,91,2,13626.000320,2008.149792,hint,nbiot,180 +on6,0,0,28,1,0,1023,5040.000000,91,6,24380.000320,2497.193544,hint,nbiot,180 +on3,0,0,24,1,0,259,4320.000000,91,0,4847.000320,1845.910208,hint,nbiot,180 +on8,0,0,26,1,0,873,4680.000000,91,2,17105.001280,2195.700000,hint,nbiot,180 +on9,0,0,25,1,0,755,4545.000000,91,3,17064.000320,2024.699584,hint,nbiot,180 +on5,0,0,24,1,0,603,4435.000000,91,1,13666.000960,1918.494584,hint,nbiot,180 +on10,0,0,24,1,0,463,4320.000000,91,0,10381.000320,1833.819792,hint,nbiot,180 +on1,0,0,26,1,0,752,4680.000000,91,2,13706.001600,2030.404584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,92,0,-1.000000,2075.103952,hint,nbiot,180 +on12,0,0,26,1,0,1235,4680.000000,92,2,26930.000320,2195.894792,hint,nbiot,180 +on6,0,0,26,1,0,1579,4680.000000,92,2,32640.000320,2144.869792,hint,nbiot,180 +on11,0,0,24,1,0,872,4320.000000,92,0,21254.000320,2142.309584,hint,nbiot,180 +on8,0,0,24,1,0,933,4320.000000,92,0,21139.000320,1764.399792,hint,nbiot,180 +on7,0,0,25,1,0,1177,4606.000000,92,2,24353.400640,1949.843960,hint,nbiot,180 +on10,0,0,24,1,0,1160,4320.000000,92,0,24273.000320,1791.310000,hint,nbiot,180 +on5,0,0,27,1,0,1368,4860.000000,92,3,26970.000960,2331.528960,hint,nbiot,180 +on1,0,0,24,1,0,560,4320.000000,92,0,13023.000320,1869.310208,hint,nbiot,180 +on9,0,0,25,1,0,1293,4500.000000,92,1,24313.000960,1956.389792,hint,nbiot,180 +on2,0,0,25,1,0,1260,4500.000000,92,1,27033.600640,1942.545624,hint,nbiot,180 +on3,0,0,25,1,0,863,4500.000000,92,1,17826.000320,1941.310208,hint,nbiot,180 +on4,0,0,28,1,0,1361,5040.000000,92,6,29763.000320,2437.589376,hint,nbiot,180 +on10,0,0,26,1,0,510,4680.000000,93,2,11625.000960,2030.664168,hint,nbiot,180 +on3,0,0,25,1,0,391,4500.000000,93,1,7720.000960,2068.189376,hint,nbiot,180 +on1,0,0,24,1,0,600,4320.000000,93,1,11585.000320,1781.300000,hint,nbiot,180 +on4,0,0,24,1,0,942,4320.000000,93,1,18941.000960,1817.700000,hint,nbiot,180 +on6,0,0,27,1,0,665,4860.000000,93,3,14836.000960,2192.754376,hint,nbiot,180 +on7,0,0,28,1,0,705,5040.000000,93,4,18901.000320,2640.714376,hint,nbiot,180 +on8,0,0,27,1,0,653,5001.000000,93,4,18981.001600,2693.623752,hint,nbiot,180 +on11,0,0,27,1,0,593,4908.000000,93,6,19021.602240,2603.643752,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,93,0,-1.000000,2040.914160,hint,nbiot,180 +on9,0,0,24,1,0,764,4320.000000,93,1,14796.000320,1797.160000,hint,nbiot,180 +on12,0,0,26,1,0,779,4680.000000,93,2,14876.400640,2142.529584,hint,nbiot,180 +on2,0,0,25,1,0,397,4500.000000,93,1,7760.001600,1965.685416,hint,nbiot,180 +on5,0,0,24,1,0,447,4320.000000,93,1,7680.000320,1754.000416,hint,nbiot,180 +on5,0,0,25,1,0,500,4500.000000,94,1,9606.000320,1999.550624,hint,nbiot,180 +on1,0,0,26,1,0,1472,4680.000000,94,3,29199.601600,2164.500832,hint,nbiot,180 +on6,0,0,25,1,0,1579,4500.000000,94,1,35783.000320,2246.940416,hint,nbiot,180 +on11,0,0,26,1,0,1203,4680.000000,94,2,27914.000320,2255.110416,hint,nbiot,180 +on8,0,0,28,1,0,1744,5040.000000,94,4,35823.000960,2535.544584,hint,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,94,0,4118.000320,1869.310208,hint,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,94,0,20144.000320,1815.620416,hint,nbiot,180 +on3,0,0,25,1,0,1964,4500.000000,94,1,38722.000320,2043.360000,hint,nbiot,180 +on7,0,0,24,1,0,4159,4320.000000,94,0,84775.000000,1754.000000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,94,0,-1.000000,2067.306656,hint,nbiot,180 +on4,0,0,27,1,0,1206,4860.000000,94,3,29119.000320,2653.344584,hint,nbiot,180 +on2,0,0,24,1,0,2092,4320.000000,94,1,40280.000320,1759.850416,hint,nbiot,180 +on10,0,0,26,1,0,1384,4764.000000,94,4,29159.000960,2201.219376,hint,nbiot,180 +on7,0,0,24,1,0,418,4389.000000,95,2,12597.000320,1995.709584,hint,nbiot,180 +on9,0,0,25,1,0,789,4500.000000,95,2,19552.000320,2093.409584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,95,0,-1.000000,2072.374784,hint,nbiot,180 +on2,0,0,26,1,0,503,4680.000000,95,2,12638.600960,2042.560416,hint,nbiot,180 +on1,0,0,25,1,0,1252,4659.000000,95,2,26947.000320,2180.410000,hint,nbiot,180 +on4,0,0,25,1,0,1073,4500.000000,95,2,24112.000320,1962.499792,hint,nbiot,180 +on5,0,0,27,1,0,966,4860.000000,95,3,19593.600960,2298.249584,hint,nbiot,180 +on11,0,0,24,1,0,774,4320.000000,95,1,15928.000320,1870.155208,hint,nbiot,180 +on12,0,0,25,1,0,1975,4500.000000,95,1,38655.000320,1917.000000,hint,nbiot,180 +on10,0,0,24,1,0,480,4320.000000,95,0,7697.000320,1814.710208,hint,nbiot,180 +on3,0,0,25,1,0,1555,4500.000000,95,1,30640.000320,1942.350208,hint,nbiot,180 +on8,0,0,28,1,0,929,5040.000000,95,5,19685.000320,2478.019376,hint,nbiot,180 +on6,0,0,28,1,0,1424,5040.000000,95,6,35386.000320,2757.909376,hint,nbiot,180 +on9,0,0,26,1,0,725,4680.000000,96,2,13434.400640,2014.350416,hint,nbiot,180 +on6,0,0,30,1,0,883,5400.000000,96,7,23450.600960,3139.614376,hint,nbiot,180 +on4,0,0,25,1,0,693,4500.000000,96,1,13394.000960,1891.390208,hint,nbiot,180 +on7,0,0,24,1,0,415,4440.000000,96,1,7361.000320,1930.310208,hint,nbiot,180 +on10,0,0,27,1,0,734,4860.000000,96,3,14481.000960,2410.699584,hint,nbiot,180 +on12,0,0,25,1,0,600,4500.000000,96,1,13354.000320,2123.179584,hint,nbiot,180 +on1,0,0,25,1,0,980,4500.000000,96,1,20884.000320,2119.150000,hint,nbiot,180 +on3,0,0,24,1,0,293,4320.000000,96,0,4083.000320,1770.509792,hint,nbiot,180 +on5,0,0,26,1,0,666,4680.000000,96,2,14441.000320,2358.395208,hint,nbiot,180 +on8,0,0,26,1,0,1453,4680.000000,96,2,31650.000320,2287.350000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,96,0,-1.000000,2072.116448,hint,nbiot,180 +on2,0,0,26,1,0,1025,4680.000000,96,2,23409.000320,2293.330000,hint,nbiot,180 +on11,0,0,24,1,0,2604,4320.000000,96,0,50805.000320,1907.400000,hint,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,97,0,5974.000320,1851.760416,hint,nbiot,180 +on3,0,0,28,1,0,908,5040.000000,97,6,23607.000320,2497.258752,hint,nbiot,180 +on5,0,0,25,1,0,360,4500.000000,97,1,8655.600640,2303.165416,hint,nbiot,180 +on4,0,0,26,1,0,869,4680.000000,97,2,18937.000320,2523.300416,hint,nbiot,180 +on10,0,0,26,1,0,932,4755.000000,97,3,23648.600960,2484.659376,hint,nbiot,180 +on7,0,0,24,1,0,120,4320.000000,97,0,3278.000320,1754.000832,hint,nbiot,180 +on1,0,0,26,1,0,645,4680.000000,97,2,15960.000640,2383.615000,hint,nbiot,180 +on11,0,0,25,1,0,1373,4500.000000,97,1,28100.000320,1952.750624,hint,nbiot,180 +on8,0,0,27,1,0,786,4860.000000,97,3,16000.001280,2488.440416,hint,nbiot,180 +on6,0,0,25,1,0,4253,4500.000000,97,1,85628.000000,1826.000000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,97,0,-1.000000,2081.868944,hint,nbiot,180 +on9,0,0,24,1,0,1905,4320.000000,97,0,36556.000320,1866.450416,hint,nbiot,180 +on12,0,0,25,1,0,697,4500.000000,97,1,13978.000320,2032.700416,hint,nbiot,180 +on12,0,0,26,1,0,951,4680.000000,98,2,20439.600960,2000.309584,hint,nbiot,180 +on9,0,0,27,1,0,840,4860.000000,98,3,16750.600960,2414.599168,hint,nbiot,180 +on10,0,0,24,1,0,920,4320.000000,98,0,20398.000320,1830.959792,hint,nbiot,180 +on5,0,0,26,1,0,224,4680.000000,98,2,9627.000320,2515.370000,hint,nbiot,180 +on6,0,0,27,1,0,322,4860.000000,98,4,9707.601600,2327.500416,hint,nbiot,180 +on7,0,0,25,1,0,125,4500.000000,98,1,3480.600960,1826.000416,hint,nbiot,180 +on3,0,0,24,1,0,136,4320.000000,98,0,3439.000320,1826.409792,hint,nbiot,180 +on1,0,0,25,1,0,602,4566.000000,98,2,14181.000320,2160.889584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,98,0,-1.000000,2040.004992,hint,nbiot,180 +on11,0,0,24,1,0,216,4320.000000,98,0,7007.000320,1936.260000,hint,nbiot,180 +on8,0,0,26,1,0,367,4680.000000,98,3,9667.000960,2280.848752,hint,nbiot,180 +on2,0,0,26,1,0,694,4680.000000,98,2,16709.000320,2239.119168,hint,nbiot,180 +on4,0,0,26,1,0,626,4680.000000,98,2,14222.001280,2165.344584,hint,nbiot,180 +on5,0,0,24,1,0,2161,4320.000000,99,1,45305.000320,1858.000000,hint,nbiot,180 +on4,0,0,26,1,0,1053,4680.000000,99,3,22509.000320,2194.660000,hint,nbiot,180 +on6,0,0,27,1,0,1309,4860.000000,99,3,30818.000320,2327.304584,hint,nbiot,180 +on8,0,0,24,1,0,911,4320.000000,99,0,20223.000320,1773.760208,hint,nbiot,180 +on2,0,0,25,1,0,1200,4500.000000,99,1,22549.000960,1926.035000,hint,nbiot,180 +on9,0,0,25,1,0,1580,4500.000000,99,1,33661.000320,2058.700416,hint,nbiot,180 +on3,0,0,25,1,0,1275,4619.000000,99,2,28237.000960,2090.244792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,99,0,-1.000000,2040.004576,hint,nbiot,180 +on7,0,0,26,1,0,1354,4680.000000,99,2,28277.001600,2206.880208,hint,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,99,0,170.000320,1813.800416,hint,nbiot,180 +on11,0,0,24,1,0,571,4320.000000,99,0,13295.000320,1824.460416,hint,nbiot,180 +on1,0,0,26,1,0,1269,4680.000000,99,2,28197.000320,2134.794584,hint,nbiot,180 +on12,0,0,26,1,0,1161,4680.000000,99,2,22589.400640,2180.749584,hint,nbiot,180 +on2,0,0,25,1,0,1415,4557.000000,100,2,27124.000960,1937.200000,hint,nbiot,180 +on1,0,0,25,1,0,360,4500.000000,100,1,7514.000320,1941.700416,hint,nbiot,180 +on10,0,0,24,1,0,2680,4320.000000,100,0,55137.000320,1858.650000,hint,nbiot,180 +on7,0,0,25,1,0,1069,4500.000000,100,1,22544.000320,2147.620416,hint,nbiot,180 +on4,0,0,25,1,0,901,4500.000000,100,1,18462.600320,1900.620208,hint,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,100,1,4227.600640,1856.095832,hint,nbiot,180 +on3,0,0,25,1,0,1300,4500.000000,100,1,32113.000320,2124.999792,hint,nbiot,180 +on11,0,0,26,1,0,905,4680.000000,100,3,18332.000320,2408.965208,hint,nbiot,180 +on9,0,0,25,1,0,872,4500.000000,100,1,17238.000320,1857.850624,hint,nbiot,180 +on5,0,0,26,1,0,1437,4680.000000,100,3,27164.601600,2166.840416,hint,nbiot,180 +on12,0,0,25,1,0,1193,4500.000000,100,1,27084.000320,2149.050000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,100,0,-1.000000,2053.656240,hint,nbiot,180 +on8,0,0,24,1,0,480,4320.000000,100,0,7405.000320,1767.000000,hint,nbiot,180 +on4,0,0,25,1,0,160,4500.000000,101,1,4242.000320,1954.765416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,101,0,-1.000000,2027.917696,hint,nbiot,180 +on8,0,0,25,1,0,1528,4500.000000,101,1,30724.000320,2002.150208,hint,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,hint,nbiot,180 +on6,0,0,26,1,0,553,4680.000000,101,2,8069.000960,2145.650000,hint,nbiot,180 +on12,0,0,25,1,0,370,4500.000000,101,1,8109.400960,2063.901040,hint,nbiot,180 +on7,0,0,27,1,0,920,4860.000000,101,3,21302.600960,2448.205624,hint,nbiot,180 +on11,0,0,25,1,0,796,4500.000000,101,1,17725.000320,2252.140416,hint,nbiot,180 +on9,0,0,27,1,0,436,4860.000000,101,3,10882.000960,2430.459792,hint,nbiot,180 +on1,0,0,26,1,0,902,4680.000000,101,2,17765.000960,2053.999376,hint,nbiot,180 +on2,0,0,24,1,0,962,4320.000000,101,0,21261.000320,1834.860000,hint,nbiot,180 +on10,0,0,25,1,0,180,4500.000000,101,2,8029.000320,2032.310000,hint,nbiot,180 +on5,0,0,26,1,0,531,4680.000000,101,2,10842.000320,2297.880000,hint,nbiot,180 +on3,0,0,24,1,0,448,4320.000000,102,0,9216.000320,1876.720000,hint,nbiot,180 +on1,0,0,26,1,0,693,4680.000000,102,3,17255.000320,2195.049584,hint,nbiot,180 +on2,0,0,27,1,0,961,4860.000000,102,3,20405.000320,2242.154376,hint,nbiot,180 +on6,0,0,25,1,0,2700,4500.000000,102,1,55015.600640,2033.155000,hint,nbiot,180 +on9,0,0,24,1,0,1910,4320.000000,102,0,36750.000320,1754.000208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,102,0,-1.000000,2040.005616,hint,nbiot,180 +on10,0,0,26,1,0,925,4680.000000,102,2,17335.001600,2059.200416,hint,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,102,0,12895.000320,1839.150416,hint,nbiot,180 +on11,0,0,26,1,0,446,4680.000000,102,2,9257.600960,2065.960208,hint,nbiot,180 +on7,0,0,25,1,0,999,4745.000000,102,4,20446.600960,1990.495000,hint,nbiot,180 +on12,0,0,25,1,0,180,4500.000000,102,1,6462.600640,2113.624792,hint,nbiot,180 +on4,0,0,25,1,0,691,4500.000000,102,1,12841.000320,1916.350000,hint,nbiot,180 +on5,0,0,25,1,0,703,4500.000000,102,1,17295.000960,2002.344376,hint,nbiot,180 +on1,0,0,25,1,0,1,4500.000000,103,1,1095.600320,2028.279376,hint,nbiot,180 +on7,0,0,26,1,0,362,4792.000000,103,3,9984.400640,2160.094792,hint,nbiot,180 +on5,0,0,25,1,0,621,4500.000000,103,1,13012.000960,1968.349584,hint,nbiot,180 +on3,0,0,26,1,0,292,4680.000000,103,2,9904.000320,2380.819792,hint,nbiot,180 +on12,0,0,25,1,0,250,4500.000000,103,1,4566.000960,1977.579584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,103,0,-1.000000,2040.004576,hint,nbiot,180 +on4,0,0,29,1,0,597,5220.000000,103,5,15452.000960,2559.443960,hint,nbiot,180 +on6,0,0,25,1,0,113,4500.000000,103,1,4526.000320,1916.545208,hint,nbiot,180 +on9,0,0,25,1,0,0,4500.000000,103,1,981.600640,1980.115832,hint,nbiot,180 +on11,0,0,27,1,0,715,4860.000000,103,3,15412.000320,2241.049584,hint,nbiot,180 +on2,0,0,29,1,0,842,5220.000000,103,5,19338.000320,2619.374168,hint,nbiot,180 +on10,0,0,25,1,0,557,4500.000000,103,1,9944.000960,2007.935000,hint,nbiot,180 +on8,0,0,26,1,0,563,4680.000000,103,2,12972.000320,2028.519792,hint,nbiot,180 +on12,0,0,25,1,0,367,4500.000000,104,1,12482.000320,2029.450000,hint,nbiot,180 +on3,0,0,25,1,0,1834,4500.000000,104,1,36951.600960,2123.960000,hint,nbiot,180 +on2,0,0,24,1,0,67,4320.000000,104,0,3104.000320,1843.050832,hint,nbiot,180 +on9,0,0,25,1,0,1913,4500.000000,104,1,40667.000320,2033.350000,hint,nbiot,180 +on6,0,0,24,1,0,197,4320.000000,104,0,3761.000320,1818.610208,hint,nbiot,180 +on5,0,0,25,1,0,181,4500.000000,104,1,3824.600320,2170.500832,hint,nbiot,180 +on7,0,0,24,1,0,791,4320.000000,104,0,15782.000320,1793.260208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,104,0,-1.000000,2040.005408,hint,nbiot,180 +on4,0,0,24,1,0,3003,4320.000000,104,0,59778.000320,1765.050000,hint,nbiot,180 +on10,0,0,24,1,0,1158,4320.000000,104,0,22291.000320,1788.709584,hint,nbiot,180 +on11,0,0,25,1,0,1620,4500.000000,104,1,33327.600640,1917.195208,hint,nbiot,180 +on8,0,0,25,1,0,1013,4500.000000,104,1,19089.000320,1826.000624,hint,nbiot,180 +on1,0,0,24,1,0,1857,4320.000000,104,0,36910.000320,1806.909792,hint,nbiot,180 +on7,0,0,25,1,0,3174,4500.000000,105,1,66724.000320,1942.350208,hint,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,105,0,5033.000320,1938.210208,hint,nbiot,180 +on2,0,0,24,1,0,1597,4320.000000,105,0,35582.000320,1802.100416,hint,nbiot,180 +on9,0,0,24,1,0,1329,4320.000000,105,0,26129.000320,1754.000416,hint,nbiot,180 +on1,0,0,25,1,0,900,4500.000000,105,1,20040.600640,2009.755832,hint,nbiot,180 +on3,0,0,25,1,0,1797,4500.000000,105,1,35456.000320,1827.950416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,105,0,-1.000000,2045.205200,hint,nbiot,180 +on5,0,0,24,0,0,4297,4320.000000,105,0,-1.000000,1845.000000,hint,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,105,0,3035.000320,1869.310416,hint,nbiot,180 +on8,0,0,25,1,0,1014,4500.000000,105,1,25039.000320,2211.450624,hint,nbiot,180 +on10,0,0,25,1,0,1913,4500.000000,105,1,41163.000320,1949.500000,hint,nbiot,180 +on4,0,0,25,1,0,315,4500.000000,105,1,4973.000320,1924.150208,hint,nbiot,180 +on12,0,0,25,1,0,1800,4500.000000,105,1,37857.600640,1973.615208,hint,nbiot,180 +on4,0,0,25,1,0,0,4500.000000,106,1,2010.600640,1883.656040,hint,nbiot,180 +on7,0,0,25,1,0,180,4500.000000,106,1,3983.000320,2036.600624,hint,nbiot,180 +on12,0,0,25,1,0,473,4500.000000,106,1,10276.000320,2052.070208,hint,nbiot,180 +on8,0,0,25,1,0,645,4653.000000,106,2,13791.600960,2028.510832,hint,nbiot,180 +on6,0,0,24,1,0,3142,4320.000000,106,0,64068.000320,1791.700208,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,106,0,-1.000000,2038.707072,hint,nbiot,180 +on3,0,0,25,1,0,2444,4500.000000,106,2,52428.000320,1983.950208,hint,nbiot,180 +on11,0,0,25,1,0,1250,4500.000000,106,1,22551.000320,1982.650416,hint,nbiot,180 +on1,0,0,24,1,0,559,4320.000000,106,0,13750.000320,1876.460000,hint,nbiot,180 +on2,0,0,25,1,0,2103,4500.000000,106,1,43036.000320,1944.950208,hint,nbiot,180 +on9,0,0,24,1,0,2429,4320.000000,106,0,47676.000320,1782.600624,hint,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,hint,nbiot,180 +on5,0,0,24,1,0,921,4320.000000,106,1,19337.400320,1999.960624,hint,nbiot,180 +on10,0,0,25,1,0,654,4500.000000,107,1,11850.000320,2058.570416,hint,nbiot,180 +on4,0,0,26,1,0,1137,4680.000000,107,2,24865.000320,2356.119792,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,107,0,-1.000000,2014.008736,hint,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,hint,nbiot,180 +on7,0,0,28,1,0,669,5040.000000,107,5,14612.600960,2645.785000,hint,nbiot,180 +on6,0,0,24,1,0,219,4320.000000,107,0,6943.000320,2030.900624,hint,nbiot,180 +on11,0,0,26,1,0,1114,4680.000000,107,3,24905.000960,2184.909792,hint,nbiot,180 +on5,0,0,24,1,0,363,4320.000000,107,0,8646.000320,1870.610000,hint,nbiot,180 +on3,0,0,26,1,0,905,4680.000000,107,3,18780.601600,2064.466248,hint,nbiot,180 +on2,0,0,26,1,0,659,4680.000000,107,2,14571.000320,2144.025000,hint,nbiot,180 +on8,0,0,27,1,0,1022,4860.000000,107,3,27271.000320,2608.949584,hint,nbiot,180 +on1,0,0,27,1,0,859,4860.000000,107,3,18738.000320,2474.724376,hint,nbiot,180 +on12,0,0,26,1,0,558,4680.000000,107,2,8687.600960,2110.745624,hint,nbiot,180 +on1,0,0,26,1,0,229,4680.000000,108,2,9250.000320,2236.259792,hint,nbiot,180 +on11,0,0,25,1,0,374,4648.000000,108,2,11117.000960,2361.584376,hint,nbiot,180 +on2,0,0,28,1,0,480,5040.000000,108,6,17765.000320,2620.303544,hint,nbiot,180 +on9,0,0,25,1,0,852,4522.000000,108,2,20378.000960,2169.679792,hint,nbiot,180 +on12,0,0,26,1,0,85,4680.000000,108,2,3742.001600,2140.839792,hint,nbiot,180 +on6,0,0,29,1,0,839,5220.000000,108,5,20418.001600,2539.748544,hint,nbiot,180 +on8,0,0,25,1,0,89,4500.000000,108,1,3662.000320,1981.350000,hint,nbiot,180 +on10,0,0,24,1,0,586,4320.000000,108,0,11077.000320,1896.610000,hint,nbiot,180 +on5,0,0,26,1,0,398,4749.000000,108,3,11157.001600,2291.810208,hint,nbiot,180 +on7,0,0,25,1,0,513,4500.000000,108,1,9290.000960,1928.049376,hint,nbiot,180 +on4,0,0,25,1,0,153,4500.000000,108,1,3702.000960,1890.999584,hint,nbiot,180 +on3,0,0,26,1,0,814,4680.000000,108,3,20338.000320,2224.689168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,108,0,-1.000000,2054.564784,hint,nbiot,180 +on10,0,0,26,1,0,168,4680.000000,109,2,5648.002240,2314.845624,hint,nbiot,180 +on5,0,0,25,1,0,333,4500.000000,109,1,5568.000960,2047.910000,hint,nbiot,180 +on7,0,0,27,1,0,541,4860.000000,109,6,14859.000320,2465.038336,hint,nbiot,180 +on6,0,0,26,1,0,89,4680.000000,109,3,5608.001600,2201.354792,hint,nbiot,180 +on2,0,0,25,1,0,293,4500.000000,109,1,9678.000320,2155.160832,hint,nbiot,180 +on8,0,0,24,1,0,268,4320.000000,109,1,5528.000320,1998.205416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,109,0,-1.000000,2035.719984,hint,nbiot,180 +on11,0,0,26,1,0,283,4769.000000,109,3,9719.001280,2296.494584,hint,nbiot,180 +on3,0,0,24,1,0,46,4320.000000,109,0,380.000320,1851.110208,hint,nbiot,180 +on4,0,0,26,1,0,461,4680.000000,109,3,13238.000320,2268.498960,hint,nbiot,180 +on9,0,0,26,1,0,619,4680.000000,109,2,14900.600960,2439.451040,hint,nbiot,180 +on1,0,0,27,1,0,566,4860.000000,109,3,20416.000320,2725.300000,hint,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,hint,nbiot,180 +on10,0,0,29,1,0,707,5220.000000,110,7,19953.000320,2857.599168,hint,nbiot,180 +on1,0,0,24,1,0,605,4320.000000,110,1,13291.000320,1848.900000,hint,nbiot,180 +on12,0,0,25,1,0,305,4500.000000,110,1,9132.000640,2213.855000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,110,0,-1.000000,2065.355824,hint,nbiot,180 +on5,0,0,26,1,0,592,4850.000000,110,4,17590.001600,2365.034792,hint,nbiot,180 +on8,0,0,24,1,0,273,4320.000000,110,0,6350.000320,1754.000208,hint,nbiot,180 +on7,0,0,28,1,0,782,5212.000000,110,6,19993.000960,2744.353752,hint,nbiot,180 +on3,0,0,24,1,0,747,4470.000000,110,1,17510.000320,2021.545000,hint,nbiot,180 +on6,0,0,25,1,0,898,4500.000000,110,1,17550.000960,2007.349584,hint,nbiot,180 +on4,0,0,25,1,0,360,4500.000000,110,1,9224.600640,1869.745832,hint,nbiot,180 +on2,0,0,24,1,0,36,4320.000000,110,0,933.000320,1787.410416,hint,nbiot,180 +on11,0,0,25,1,0,1543,4500.000000,110,1,31807.000320,1924.150000,hint,nbiot,180 +on9,0,0,25,1,0,180,4500.000000,110,1,6457.600640,1916.025208,hint,nbiot,180 +on2,0,0,24,1,0,1195,4320.000000,111,0,23045.000320,1853.450000,hint,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,111,0,11593.000320,1754.000208,hint,nbiot,180 +on7,0,0,26,1,0,1414,4680.000000,111,2,30523.000320,2222.609584,hint,nbiot,180 +on4,0,0,25,1,0,1410,4500.000000,111,1,27706.000960,1890.999584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,111,0,-1.000000,2040.005200,hint,nbiot,180 +on6,0,0,25,1,0,995,4500.000000,111,1,18694.000960,2061.559376,hint,nbiot,180 +on10,0,0,25,1,0,990,4500.000000,111,2,18734.601600,1827.691040,hint,nbiot,180 +on9,0,0,24,1,0,1307,4320.000000,111,0,27666.000320,1813.800208,hint,nbiot,180 +on5,0,0,26,1,0,1084,4680.000000,111,2,23085.000960,2201.549584,hint,nbiot,180 +on11,0,0,24,1,0,905,4320.000000,111,0,18654.000320,1879.449792,hint,nbiot,180 +on3,0,0,25,1,0,1601,4525.000000,111,2,36662.000320,2146.049584,hint,nbiot,180 +on1,0,0,27,1,0,1537,4860.000000,111,3,30564.600960,2325.810000,hint,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,111,0,4151.000320,1811.849584,hint,nbiot,180 +on4,0,0,25,1,0,747,4500.000000,112,1,17393.000960,1952.099584,hint,nbiot,180 +on5,0,0,25,1,0,360,4500.000000,112,2,12582.000320,2214.179584,hint,nbiot,180 +on1,0,0,26,1,0,897,4680.000000,112,3,18892.601600,2105.350416,hint,nbiot,180 +on11,0,0,27,1,0,961,4860.000000,112,3,21758.000320,2386.844376,hint,nbiot,180 +on10,0,0,26,1,0,1117,4680.000000,112,2,21798.000960,1962.999584,hint,nbiot,180 +on6,0,0,25,1,0,360,4500.000000,112,1,7503.600640,1974.005416,hint,nbiot,180 +on2,0,0,25,1,0,330,4500.000000,112,1,6327.000320,1826.000208,hint,nbiot,180 +on7,0,0,24,1,0,761,4320.000000,112,0,17353.000320,1817.700000,hint,nbiot,180 +on12,0,0,24,1,0,1229,4404.000000,112,1,28469.000320,1896.345000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,112,0,-1.000000,2057.554576,hint,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,112,0,1750.000320,1983.580416,hint,nbiot,180 +on9,0,0,26,1,0,850,4680.000000,112,2,18812.000320,2104.764792,hint,nbiot,180 +on3,0,0,27,1,0,883,4860.000000,112,3,18852.000960,2493.899584,hint,nbiot,180 +on8,0,0,24,1,0,35,4320.000000,113,0,1785.000320,1927.419376,hint,nbiot,180 +on12,0,0,25,1,0,984,4500.000000,113,1,21117.000320,1935.850000,hint,nbiot,180 +on11,0,0,26,1,0,347,4680.000000,113,3,5416.601280,1995.695624,hint,nbiot,180 +on10,0,0,24,1,0,405,4320.000000,113,0,8296.000320,1815.100000,hint,nbiot,180 +on3,0,0,27,1,0,688,4860.000000,113,3,15657.000960,2312.288960,hint,nbiot,180 +on7,0,0,25,1,0,694,4500.000000,113,1,12859.000960,1891.844584,hint,nbiot,180 +on5,0,0,25,1,0,473,4500.000000,113,1,12819.000320,2025.550000,hint,nbiot,180 +on6,0,0,27,1,0,761,4860.000000,113,4,15697.601600,2205.690624,hint,nbiot,180 +on1,0,0,28,1,0,993,5040.000000,113,4,21811.000320,2530.084168,hint,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,113,0,8433.000320,1764.010000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,113,0,-1.000000,2066.654784,hint,nbiot,180 +on4,0,0,26,1,0,680,4680.000000,113,2,15617.000320,2325.504376,hint,nbiot,180 +on2,0,0,26,1,0,176,4680.000000,113,3,5376.000640,2168.854584,hint,nbiot,180 +on5,0,0,26,1,0,178,4680.000000,114,4,9997.000320,2288.194168,hint,nbiot,180 +on11,0,0,24,1,0,198,4320.000000,114,0,5019.000960,1833.299584,hint,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,114,0,5110.000320,1961.350416,hint,nbiot,180 +on7,0,0,27,1,0,704,4860.000000,114,3,20480.000320,2591.399376,hint,nbiot,180 +on3,0,0,26,1,0,357,4680.000000,114,2,5059.001600,2104.050000,hint,nbiot,180 +on10,0,0,26,1,0,897,4680.000000,114,3,17330.601600,2054.649584,hint,nbiot,180 +on9,0,0,26,1,0,514,4680.000000,114,2,13473.000320,2094.949376,hint,nbiot,180 +on12,0,0,27,1,0,755,4860.000000,114,3,17290.000960,2173.709376,hint,nbiot,180 +on6,0,0,26,1,0,527,4680.000000,114,3,17250.000320,2302.949376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,114,0,-1.000000,2040.005200,hint,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,114,0,787.000320,1842.010208,hint,nbiot,180 +on1,0,0,24,1,0,272,4320.000000,114,0,4979.000320,1784.550000,hint,nbiot,180 +on2,0,0,25,1,0,406,4610.000000,114,2,10038.001280,2120.444792,hint,nbiot,180 +on2,0,0,25,1,0,1080,4500.000000,115,1,23543.000320,2019.050416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,115,0,-1.000000,2071.466240,hint,nbiot,180 +on12,0,0,25,1,0,305,4610.000000,115,2,4825.000640,2049.400208,hint,nbiot,180 +on4,0,0,24,1,0,434,4320.000000,115,1,9953.000320,1770.250416,hint,nbiot,180 +on9,0,0,26,1,0,720,4680.000000,115,2,15818.600960,2236.715416,hint,nbiot,180 +on8,0,0,25,1,0,629,4604.000000,115,2,13185.000320,2351.004792,hint,nbiot,180 +on1,0,0,25,1,0,1800,4500.000000,115,1,36120.600640,1949.305000,hint,nbiot,180 +on10,0,0,26,1,0,203,4680.000000,115,3,4865.601280,2114.254584,hint,nbiot,180 +on7,0,0,27,1,0,609,4860.000000,115,3,13226.600960,2452.104584,hint,nbiot,180 +on11,0,0,26,1,0,524,4680.000000,115,2,9994.001280,2040.999584,hint,nbiot,180 +on6,0,0,25,1,0,833,4500.000000,115,1,15777.000320,1968.220208,hint,nbiot,180 +on3,0,0,24,1,0,105,4320.000000,115,0,2429.000320,1831.610208,hint,nbiot,180 +on5,0,0,25,1,0,2019,4500.000000,115,1,42314.000320,1994.220000,hint,nbiot,180 +on4,0,0,26,1,0,1234,4734.000000,116,4,29178.000320,2417.500000,hint,nbiot,180 +on9,0,0,24,1,0,1896,4327.000000,116,1,40811.000320,1854.950208,hint,nbiot,180 +on6,0,0,24,1,0,414,4320.000000,116,0,7397.000320,1809.900000,hint,nbiot,180 +on3,0,0,25,1,0,833,4500.000000,116,1,19856.000320,2057.660208,hint,nbiot,180 +on7,0,0,24,1,0,84,4320.000000,116,0,2137.000320,1925.210000,hint,nbiot,180 +on8,0,0,25,1,0,45,4500.000000,116,2,2273.001600,1928.245416,hint,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,116,0,45857.000320,1845.000000,hint,nbiot,180 +on12,0,0,25,1,0,71,4500.000000,116,2,2232.400960,1955.544792,hint,nbiot,180 +on10,0,0,25,1,0,1228,4500.000000,116,1,25028.000320,1826.000208,hint,nbiot,180 +on2,0,0,25,1,0,1440,4500.000000,116,2,29131.600640,2133.905624,hint,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,116,0,2192.000320,1844.740000,hint,nbiot,180 +on11,0,0,25,1,0,1762,4500.000000,116,1,37673.000320,1918.560208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,116,0,-1.000000,2054.955200,hint,nbiot,180 +on4,0,0,25,1,0,833,4500.000000,117,1,19315.000320,1979.855000,hint,nbiot,180 +on11,0,0,25,1,0,721,4500.000000,117,1,17070.600320,1944.430208,hint,nbiot,180 +on10,0,0,25,1,0,859,4551.000000,117,2,23405.000320,2222.098960,hint,nbiot,180 +on3,0,0,25,1,0,654,4500.000000,117,1,16995.000320,1893.860208,hint,nbiot,180 +on8,0,0,26,1,0,867,4680.000000,117,2,19355.000960,2086.044584,hint,nbiot,180 +on12,0,0,24,1,0,1269,4488.000000,117,1,26762.001600,1906.349168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,117,0,-1.000000,2058.204576,hint,nbiot,180 +on5,0,0,26,1,0,1208,4727.000000,117,3,26722.000960,2189.149376,hint,nbiot,180 +on1,0,0,25,1,0,462,4500.000000,117,2,11004.000320,1975.759792,hint,nbiot,180 +on2,0,0,27,1,0,1213,4860.000000,117,5,26802.602240,2333.349168,hint,nbiot,180 +on6,0,0,26,1,0,1137,4680.000000,117,2,26682.000320,2295.799792,hint,nbiot,180 +on9,0,0,24,1,0,205,4320.000000,117,0,3956.000320,1754.000208,hint,nbiot,180 +on7,0,0,24,1,0,401,4320.000000,117,0,8318.000320,1754.000416,hint,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,118,0,1719.000320,1754.000416,hint,nbiot,180 +on6,0,0,25,1,0,833,4500.000000,118,1,17621.000320,1916.350000,hint,nbiot,180 +on4,0,0,27,1,0,810,4860.000000,118,3,20051.000320,2514.049584,hint,nbiot,180 +on9,0,0,26,1,0,873,4680.000000,118,2,17661.000960,2079.349792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,118,0,-1.000000,2062.755200,hint,nbiot,180 +on5,0,0,25,1,0,566,4500.000000,118,1,12145.000320,2006.310000,hint,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,118,0,6567.000320,1773.760000,hint,nbiot,180 +on7,0,0,24,1,0,459,4458.000000,118,1,12185.000960,2099.620208,hint,nbiot,180 +on10,0,0,25,1,0,1525,4500.000000,118,1,31152.000320,1939.750000,hint,nbiot,180 +on3,0,0,25,1,0,579,4629.000000,118,3,12265.602240,2172.701664,hint,nbiot,180 +on11,0,0,25,1,0,360,4500.000000,118,1,8937.001280,2118.369584,hint,nbiot,180 +on12,0,0,24,1,0,403,4320.000000,118,0,8809.000320,1837.199792,hint,nbiot,180 +on2,0,0,26,1,0,640,4680.000000,118,4,12225.001600,2210.584168,hint,nbiot,180 +on7,0,0,25,1,0,361,4500.000000,119,1,13430.000320,2258.315000,hint,nbiot,180 +on1,0,0,24,1,0,425,4320.000000,119,1,9989.000320,2046.110000,hint,nbiot,180 +on5,0,0,25,1,0,849,4500.000000,119,1,20235.000320,1949.109792,hint,nbiot,180 +on2,0,0,24,1,0,806,4320.000000,119,0,15032.000320,2123.850208,hint,nbiot,180 +on9,0,0,26,1,0,568,4680.000000,119,2,13471.600960,2517.710832,hint,nbiot,180 +on6,0,0,25,1,0,366,4570.000000,119,2,6075.000960,2393.955208,hint,nbiot,180 +on8,0,0,25,1,0,329,4500.000000,119,1,6035.000320,2080.150416,hint,nbiot,180 +on12,0,0,25,1,0,40,4500.000000,119,1,2455.600640,2147.555832,hint,nbiot,180 +on4,0,0,26,1,0,374,4807.000000,119,3,10030.600960,2509.620416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,119,0,-1.000000,2091.487904,hint,nbiot,180 +on3,0,0,25,1,0,3858,4500.000000,119,2,81406.600640,2060.975000,hint,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,119,0,32005.000320,1869.700000,hint,nbiot,180 +on10,0,0,26,1,0,1080,4680.000000,119,2,20276.600960,1898.000416,hint,nbiot,180 +on2,0,0,25,1,0,719,4500.000000,120,1,17791.000320,2062.535000,hint,nbiot,180 +on5,0,0,25,1,0,397,4500.000000,120,1,9782.000320,2043.165208,hint,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,120,0,2112.000320,1754.000208,hint,nbiot,180 +on7,0,0,25,1,0,833,4524.000000,120,2,20281.000320,2033.199792,hint,nbiot,180 +on8,0,0,26,1,0,779,4680.000000,120,2,17831.000960,2311.399376,hint,nbiot,180 +on1,0,0,26,1,0,512,4680.000000,120,2,9822.000960,2292.809376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,120,0,-1.000000,2040.006032,hint,nbiot,180 +on4,0,0,24,1,0,128,4320.000000,120,0,1984.000320,2161.419584,hint,nbiot,180 +on11,0,0,27,1,0,522,4860.000000,120,3,13142.000960,2370.659376,hint,nbiot,180 +on9,0,0,25,1,0,11,4500.000000,120,2,5900.000320,2117.070000,hint,nbiot,180 +on12,0,0,26,1,0,358,4680.000000,120,3,9862.601600,2247.506040,hint,nbiot,180 +on6,0,0,25,1,0,654,4500.000000,120,1,13102.000320,1985.250208,hint,nbiot,180 +on3,0,0,25,1,0,2484,4500.000000,120,1,47955.000320,1976.800000,hint,nbiot,180 +on10,0,0,27,1,0,1793,4860.000000,121,3,42968.000320,2635.599376,hint,nbiot,180 +on2,0,0,26,1,0,1885,4680.000000,121,3,39063.601600,2003.040832,hint,nbiot,180 +on7,0,0,25,1,0,2273,4500.000000,121,1,45619.000320,1917.000000,hint,nbiot,180 +on9,0,0,25,1,0,435,4500.000000,121,2,12723.000320,2060.000000,hint,nbiot,180 +on3,0,0,24,1,0,1628,4441.000000,121,2,38983.000320,2198.899584,hint,nbiot,180 +on4,0,0,25,1,0,1666,4500.000000,121,1,34721.000320,1917.195000,hint,nbiot,180 +on8,0,0,26,1,0,1414,4680.000000,121,2,29591.600960,2171.260416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,121,0,-1.000000,2102.404784,hint,nbiot,180 +on12,0,0,24,1,0,1453,4320.000000,121,0,29550.000320,1836.159792,hint,nbiot,180 +on6,0,0,24,1,0,273,4320.000000,121,0,6005.000320,1754.000416,hint,nbiot,180 +on1,0,0,24,1,0,407,4320.000000,121,0,7555.000320,1788.710208,hint,nbiot,180 +on5,0,0,28,1,0,1900,5040.000000,121,4,39023.000960,2419.258960,hint,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,121,0,23989.000320,1754.000208,hint,nbiot,180 +on1,0,0,25,1,0,1441,4500.000000,122,1,29183.600320,2032.310000,hint,nbiot,180 +on6,0,0,25,1,0,362,4500.000000,122,1,11246.000320,2031.659584,hint,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,122,0,15224.000320,1870.350208,hint,nbiot,180 +on9,0,0,24,1,0,478,4320.000000,122,0,7450.000320,1767.259792,hint,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,122,0,29090.000320,2031.160208,hint,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,122,0,22598.000320,1780.650208,hint,nbiot,180 +on12,0,0,26,1,0,334,4680.000000,122,2,7491.600960,2016.560000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,122,0,-1.000000,2040.005200,hint,nbiot,180 +on3,0,0,25,1,0,0,4500.000000,122,2,4158.000320,1976.800416,hint,nbiot,180 +on4,0,0,24,1,0,947,4320.000000,122,0,20688.000320,1868.660208,hint,nbiot,180 +on8,0,0,25,1,0,1800,4500.000000,122,1,37467.600640,1916.805000,hint,nbiot,180 +on7,0,0,24,1,0,69,4320.000000,122,0,2818.000320,1835.900416,hint,nbiot,180 +on2,0,0,26,1,0,694,4680.000000,122,2,11287.600960,2014.350416,hint,nbiot,180 +on11,0,0,25,1,0,499,4671.000000,123,2,8020.000960,2002.559792,hint,nbiot,180 +on12,0,0,25,1,0,1620,4500.000000,123,1,32999.600640,2033.155000,hint,nbiot,180 +on8,0,0,28,1,0,810,5040.000000,123,5,23467.000320,2709.159376,hint,nbiot,180 +on4,0,0,25,1,0,180,4500.000000,123,1,5771.600640,2007.025832,hint,nbiot,180 +on9,0,0,25,1,0,956,4500.000000,123,1,19714.000320,2044.789792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,123,0,-1.000000,2057.555616,hint,nbiot,180 +on5,0,0,26,1,0,632,4680.000000,123,2,14824.000320,2168.009792,hint,nbiot,180 +on3,0,0,24,1,0,370,4320.000000,123,0,7980.000320,1837.850208,hint,nbiot,180 +on1,0,0,26,1,0,885,4680.000000,123,2,19755.600960,2235.284792,hint,nbiot,180 +on10,0,0,25,1,0,654,4500.000000,123,1,12605.000960,1931.429584,hint,nbiot,180 +on2,0,0,25,1,0,1319,4500.000000,123,1,26777.000320,2110.700000,hint,nbiot,180 +on7,0,0,26,1,0,513,4680.000000,123,2,12565.000320,2282.800000,hint,nbiot,180 +on6,0,0,24,1,0,306,4320.000000,123,0,5698.000320,1868.270624,hint,nbiot,180 +on2,0,0,25,1,0,1194,4500.000000,124,1,25948.000320,2167.119792,hint,nbiot,180 +on12,0,0,24,1,0,841,4320.000000,124,0,16490.000320,1870.350416,hint,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,124,0,44302.000320,1947.700000,hint,nbiot,180 +on1,0,0,26,1,0,1053,4680.000000,124,2,23015.000320,2195.309584,hint,nbiot,180 +on10,0,0,25,1,0,1077,4652.000000,124,2,23056.600960,2094.150000,hint,nbiot,180 +on11,0,0,25,1,0,1555,4500.000000,124,1,30719.000320,1917.000000,hint,nbiot,180 +on3,0,0,25,1,0,1147,4565.000000,124,3,26028.601600,2202.871040,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,124,0,-1.000000,2057.814368,hint,nbiot,180 +on4,0,0,25,1,0,1180,4500.000000,124,1,25988.000960,2027.499584,hint,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,124,0,16625.000320,1775.710208,hint,nbiot,180 +on5,0,0,25,1,0,850,4500.000000,124,2,19416.000320,2063.769792,hint,nbiot,180 +on6,0,0,26,1,0,1054,4680.000000,124,2,19457.600960,2104.115000,hint,nbiot,180 +on9,0,0,25,1,0,1669,4500.000000,124,1,34023.000320,1973.030000,hint,nbiot,180 +on1,0,0,25,1,0,1,4500.000000,125,1,3315.600320,2121.100000,hint,nbiot,180 +on2,0,0,25,1,0,227,4500.000000,125,1,8579.000320,2177.909168,hint,nbiot,180 +on4,0,0,25,1,0,809,4619.000000,125,2,22433.000320,2322.750000,hint,nbiot,180 +on7,0,0,24,1,0,360,4492.000000,125,2,8694.201600,1953.645208,hint,nbiot,180 +on8,0,0,24,1,0,192,4320.000000,125,0,6476.000320,1836.159792,hint,nbiot,180 +on3,0,0,25,1,0,768,4500.000000,125,1,21354.000320,2112.909792,hint,nbiot,180 +on9,0,0,28,1,0,776,5040.000000,125,4,21395.600960,2389.684792,hint,nbiot,180 +on5,0,0,25,1,0,474,4500.000000,125,1,11297.000320,1917.000000,hint,nbiot,180 +on10,0,0,26,1,0,43,4680.000000,125,2,6517.600960,2312.699792,hint,nbiot,180 +on11,0,0,26,1,0,333,4680.000000,125,2,8620.600960,2187.768960,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,125,0,-1.000000,2051.315200,hint,nbiot,180 +on12,0,0,24,1,0,95,4320.000000,125,0,3243.000320,1802.360416,hint,nbiot,180 +on6,0,0,26,1,0,553,4680.000000,125,2,15718.000320,2311.399584,hint,nbiot,180 +on5,0,0,27,1,0,964,4860.000000,126,3,21079.000320,2242.349792,hint,nbiot,180 +on4,0,0,24,1,0,447,4320.000000,126,0,8381.000320,1869.310416,hint,nbiot,180 +on6,0,0,26,1,0,915,4775.000000,126,3,20996.600960,2439.749792,hint,nbiot,180 +on9,0,0,26,1,0,661,4680.000000,126,2,13617.000960,2402.204584,hint,nbiot,180 +on7,0,0,24,1,0,267,4320.000000,126,0,4089.000320,1870.350832,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,126,0,-1.000000,2025.967696,hint,nbiot,180 +on2,0,0,24,1,0,911,4320.000000,126,0,20955.000320,2077.310208,hint,nbiot,180 +on1,0,0,25,1,0,1117,4500.000000,126,2,24193.000320,2056.099792,hint,nbiot,180 +on11,0,0,26,1,0,804,4680.000000,126,2,17545.000320,2173.145000,hint,nbiot,180 +on8,0,0,25,1,0,655,4500.000000,126,1,13577.000320,1936.760208,hint,nbiot,180 +on10,0,0,24,0,0,4318,4320.000000,126,0,-1.000000,1729.950000,hint,nbiot,180 +on12,0,0,24,1,0,2351,4320.000000,126,0,47634.000320,1837.850208,hint,nbiot,180 +on3,0,0,27,1,0,400,4860.000000,126,6,13657.601600,2547.070832,hint,nbiot,180 +on6,0,0,25,1,0,362,4500.000000,127,1,7732.600960,2237.710624,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,127,0,-1.000000,2072.115616,hint,nbiot,180 +on4,0,0,27,1,0,916,4860.000000,127,3,19905.600960,2184.370000,hint,nbiot,180 +on3,0,0,25,1,0,225,4500.000000,127,1,4416.000320,1907.900416,hint,nbiot,180 +on7,0,0,26,1,0,788,4680.000000,127,2,19864.000320,2221.309168,hint,nbiot,180 +on10,0,0,24,1,0,1883,4320.000000,127,0,37679.000320,1791.700000,hint,nbiot,180 +on2,0,0,24,1,0,468,4320.000000,127,0,7691.000320,1773.760000,hint,nbiot,180 +on5,0,0,26,1,0,514,4680.000000,127,2,11285.600960,2153.449792,hint,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,127,0,1216.000320,1868.270208,hint,nbiot,180 +on8,0,0,26,1,0,671,4680.000000,127,2,15226.001280,2196.610000,hint,nbiot,180 +on9,0,0,27,1,0,486,4860.000000,127,4,11244.000320,2357.854584,hint,nbiot,180 +on12,0,0,25,1,0,589,4500.000000,127,1,15186.000640,2061.430624,hint,nbiot,180 +on11,0,0,24,1,0,87,4320.000000,127,0,1102.000320,1754.000208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,128,0,-1.000000,2058.204992,hint,nbiot,180 +on4,0,0,25,1,0,721,4500.000000,128,1,15607.600320,2037.119168,hint,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,128,0,9896.000320,1801.970208,hint,nbiot,180 +on2,0,0,28,1,0,1287,5040.000000,128,4,28207.600960,2404.309168,hint,nbiot,180 +on8,0,0,25,1,0,381,4500.000000,128,1,12088.000320,2103.420416,hint,nbiot,180 +on7,0,0,26,1,0,1107,4680.000000,128,3,24677.600960,2138.500000,hint,nbiot,180 +on6,0,0,25,1,0,922,4500.000000,128,1,24636.000320,2126.169792,hint,nbiot,180 +on11,0,0,25,1,0,874,4500.000000,128,1,18971.001280,2123.049376,hint,nbiot,180 +on5,0,0,26,1,0,693,4680.000000,128,2,15513.000960,2026.958544,hint,nbiot,180 +on10,0,0,26,1,0,739,4680.000000,128,2,18930.000320,2237.364792,hint,nbiot,180 +on3,0,0,26,1,0,935,4680.000000,128,3,15553.601600,2135.900208,hint,nbiot,180 +on9,0,0,26,1,0,626,4680.000000,128,3,15473.000320,2288.519792,hint,nbiot,180 +on12,0,0,25,1,0,1369,4500.000000,128,1,28166.000320,1962.109792,hint,nbiot,180 +on11,0,0,26,1,0,388,4680.000000,129,2,7034.000960,2240.420000,hint,nbiot,180 +on9,0,0,26,1,0,396,4680.000000,129,2,7074.001600,2105.350000,hint,nbiot,180 +on1,0,0,26,1,0,410,4680.000000,129,3,7941.000320,2223.389584,hint,nbiot,180 +on7,0,0,25,1,0,473,4500.000000,129,1,11486.000320,1950.409792,hint,nbiot,180 +on10,0,0,24,1,0,580,4336.000000,129,1,17497.000320,2053.160000,hint,nbiot,180 +on6,0,0,27,1,0,673,4860.000000,129,3,19882.000320,2470.824584,hint,nbiot,180 +on8,0,0,24,1,0,319,4320.000000,129,0,6994.000320,1788.450208,hint,nbiot,180 +on2,0,0,25,1,0,1165,4500.000000,129,1,22244.000320,2081.450000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,129,0,-1.000000,2040.004992,hint,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,129,0,8039.000320,1785.850208,hint,nbiot,180 +on12,0,0,26,1,0,895,4680.000000,129,2,17537.000960,2123.549792,hint,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,129,0,2590.000320,1868.660416,hint,nbiot,180 +on3,0,0,25,1,0,426,4516.000000,129,2,11527.600960,2054.830416,hint,nbiot,180 +on2,0,0,25,1,0,180,4500.000000,130,1,5201.001280,2084.959168,hint,nbiot,180 +on8,0,0,24,1,0,575,4389.000000,130,1,11910.000320,1872.795000,hint,nbiot,180 +on12,0,0,24,1,0,244,4320.000000,130,0,5142.000320,1894.399792,hint,nbiot,180 +on10,0,0,26,1,0,714,4680.000000,130,2,19641.000320,2312.699792,hint,nbiot,180 +on4,0,0,24,1,0,1457,4320.000000,130,0,32233.000320,1833.950000,hint,nbiot,180 +on3,0,0,25,1,0,301,4500.000000,130,4,8485.000320,2110.959792,hint,nbiot,180 +on7,0,0,24,1,0,853,4320.000000,130,0,16465.000320,1757.900000,hint,nbiot,180 +on1,0,0,25,1,0,361,4500.000000,130,1,8570.600320,2148.660624,hint,nbiot,180 +on5,0,0,25,1,0,584,4500.000000,130,2,11950.000960,1885.799792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,130,0,-1.000000,2054.304784,hint,nbiot,180 +on11,0,0,27,1,0,840,4860.000000,130,3,16505.000960,2225.644584,hint,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,130,1,5265.001920,2004.100416,hint,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,130,0,16603.000320,1754.000208,hint,nbiot,180 +on1,0,0,25,1,0,332,4500.000000,131,1,8592.000960,1890.999584,hint,nbiot,180 +on6,0,0,27,1,0,921,4860.000000,131,3,24424.000320,2400.169584,hint,nbiot,180 +on9,0,0,25,1,0,513,4500.000000,131,1,12943.000960,1949.500000,hint,nbiot,180 +on3,0,0,27,1,0,499,4860.000000,131,3,14734.001280,2500.139376,hint,nbiot,180 +on5,0,0,28,1,0,690,5040.000000,131,4,20357.000320,2621.539376,hint,nbiot,180 +on4,0,0,27,1,0,521,4860.000000,131,3,12983.400640,2320.089584,hint,nbiot,180 +on10,0,0,25,1,0,180,4500.000000,131,2,4625.600640,1958.015208,hint,nbiot,180 +on8,0,0,25,1,0,30,4500.000000,131,1,1823.600640,1997.275624,hint,nbiot,180 +on12,0,0,24,1,0,392,4479.000000,131,1,8552.000320,1907.300000,hint,nbiot,180 +on11,0,0,26,1,0,1053,4680.000000,131,2,20397.000960,2079.349584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,131,0,-1.000000,2054.304992,hint,nbiot,180 +on7,0,0,26,1,0,440,4777.000000,131,3,14693.000320,2435.024584,hint,nbiot,180 +on2,0,0,26,1,0,387,4680.000000,131,2,12903.000320,2385.108544,hint,nbiot,180 +on10,0,0,25,1,0,209,4500.000000,132,1,10067.000320,2013.849792,hint,nbiot,180 +on9,0,0,24,1,0,69,4320.000000,132,0,899.000320,1806.780208,hint,nbiot,180 +on5,0,0,27,1,0,469,4860.000000,132,3,10147.001600,2223.760208,hint,nbiot,180 +on11,0,0,26,1,0,539,4680.000000,132,3,11880.000320,2169.699376,hint,nbiot,180 +on6,0,0,25,1,0,224,4500.000000,132,1,4423.000960,2004.489584,hint,nbiot,180 +on7,0,0,28,1,0,618,5184.000000,132,5,20827.000320,2763.444168,hint,nbiot,180 +on12,0,0,28,1,0,596,5040.000000,132,4,16067.000320,2685.304168,hint,nbiot,180 +on8,0,0,25,1,0,1,4500.000000,132,1,996.600320,2085.090208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,132,0,-1.000000,2040.004160,hint,nbiot,180 +on2,0,0,28,1,0,768,5040.000000,132,4,16108.600960,2381.819792,hint,nbiot,180 +on3,0,0,25,1,0,413,4500.000000,132,1,10107.000960,1994.869584,hint,nbiot,180 +on4,0,0,25,1,0,142,4500.000000,132,2,4383.000320,2056.749792,hint,nbiot,180 +on1,0,0,27,1,0,463,4860.000000,132,3,11920.000960,2331.399168,hint,nbiot,180 +on1,0,0,24,1,0,130,4320.000000,133,0,2771.000320,1769.600416,hint,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,133,0,45571.000320,1754.000208,hint,nbiot,180 +on2,0,0,24,1,0,223,4320.000000,133,0,4682.000320,1990.859792,hint,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,133,0,54253.000320,1961.350000,hint,nbiot,180 +on10,0,0,25,1,0,333,4500.000000,133,1,4722.000960,2011.250208,hint,nbiot,180 +on7,0,0,26,1,0,539,4680.000000,133,2,9823.001600,2211.560624,hint,nbiot,180 +on11,0,0,24,1,0,311,4401.000000,133,2,9783.000960,2061.544584,hint,nbiot,180 +on4,0,0,24,1,0,2064,4320.000000,133,0,41620.000320,1774.800000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,133,0,-1.000000,2040.006240,hint,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,133,0,14850.000320,1780.650208,hint,nbiot,180 +on3,0,0,25,1,0,355,4500.000000,133,1,9743.000320,2007.999584,hint,nbiot,180 +on6,0,0,25,1,0,427,4500.000000,133,1,10999.000320,2106.800000,hint,nbiot,180 +on12,0,0,26,1,0,197,4680.000000,133,3,4762.001600,2067.844584,hint,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,134,0,27300.000320,1961.350208,hint,nbiot,180 +on2,0,0,26,1,0,1083,4680.000000,134,2,27203.000960,2321.149168,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,134,0,-1.000000,2014.656864,hint,nbiot,180 +on11,0,0,24,1,0,613,4320.000000,134,0,11640.000320,1791.960832,hint,nbiot,180 +on1,0,0,24,1,0,1284,4320.000000,134,1,27163.000320,1976.950416,hint,nbiot,180 +on12,0,0,25,1,0,766,4500.000000,134,1,17095.000320,1917.000000,hint,nbiot,180 +on9,0,0,24,1,0,361,4320.000000,134,0,9301.000320,1919.750208,hint,nbiot,180 +on6,0,0,25,1,0,1054,4510.000000,134,2,23920.000960,2062.049792,hint,nbiot,180 +on7,0,0,26,1,0,986,4680.000000,134,4,23880.000320,2388.750000,hint,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,hint,nbiot,180 +on10,0,0,25,1,0,1190,4588.000000,134,3,23960.601600,2008.490624,hint,nbiot,180 +on4,0,0,25,1,0,745,4500.000000,134,1,18465.000320,2061.300000,hint,nbiot,180 +on3,0,0,25,1,0,541,4500.000000,134,1,11688.600320,1936.500832,hint,nbiot,180 +on9,0,0,25,1,0,873,4500.000000,135,1,17190.000960,1890.999584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,135,0,-1.000000,2049.363952,hint,nbiot,180 +on4,0,0,26,1,0,936,4878.000000,135,4,23539.600960,2299.729168,hint,nbiot,180 +on6,0,0,27,1,0,736,4860.000000,135,3,18184.000320,2415.119168,hint,nbiot,180 +on12,0,0,26,1,0,514,4680.000000,135,2,12958.000960,2143.113960,hint,nbiot,180 +on8,0,0,27,1,0,719,4860.000000,135,3,18225.600960,2532.574792,hint,nbiot,180 +on7,0,0,25,1,0,879,4500.000000,135,1,17150.000320,1916.350000,hint,nbiot,180 +on3,0,0,24,1,0,412,4320.000000,135,0,7799.000320,1754.000208,hint,nbiot,180 +on5,0,0,25,1,0,465,4500.000000,135,1,12918.000320,2058.765000,hint,nbiot,180 +on1,0,0,26,1,0,650,4680.000000,135,3,12998.601600,2016.885832,hint,nbiot,180 +on2,0,0,24,1,0,276,4320.000000,135,0,4562.000320,1754.000208,hint,nbiot,180 +on10,0,0,25,1,0,1013,4500.000000,135,1,23498.000320,2148.659792,hint,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,135,0,2635.000320,1754.000208,hint,nbiot,180 +on8,0,0,24,1,0,366,4320.000000,136,0,8267.000320,1754.000208,hint,nbiot,180 +on3,0,0,26,1,0,654,4680.000000,136,2,15203.000960,2187.510624,hint,nbiot,180 +on11,0,0,27,1,0,1448,4860.000000,136,3,29186.000320,2240.008960,hint,nbiot,180 +on2,0,0,28,1,0,1319,5040.000000,136,4,29227.600960,2401.709168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,136,0,-1.000000,2040.004992,hint,nbiot,180 +on10,0,0,27,1,0,1045,4980.000000,136,4,26636.000320,2532.604376,hint,nbiot,180 +on6,0,0,24,1,0,915,4320.000000,136,0,20857.000320,1949.910000,hint,nbiot,180 +on12,0,0,25,1,0,1193,4500.000000,136,1,24255.000320,2013.849584,hint,nbiot,180 +on1,0,0,25,1,0,392,4500.000000,136,2,12593.000320,2028.670000,hint,nbiot,180 +on5,0,0,26,1,0,1174,4680.000000,136,2,24295.000960,2264.079376,hint,nbiot,180 +on9,0,0,28,1,0,1249,5040.000000,136,5,26677.001280,2516.433960,hint,nbiot,180 +on7,0,0,25,1,0,900,4500.000000,136,1,20908.000640,1942.350416,hint,nbiot,180 +on4,0,0,24,1,0,809,4320.000000,136,0,15163.000320,1811.590000,hint,nbiot,180 +on12,0,0,25,1,0,276,4500.000000,137,1,7257.000320,2017.945624,hint,nbiot,180 +on1,0,0,25,1,0,747,4500.000000,137,1,13212.000960,1890.999584,hint,nbiot,180 +on6,0,0,24,1,0,222,4320.000000,137,0,6156.000320,1764.010000,hint,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,137,0,6267.000320,1844.740208,hint,nbiot,180 +on5,0,0,26,1,0,892,4680.000000,137,2,16544.000960,2169.309376,hint,nbiot,180 +on11,0,0,24,1,0,741,4320.000000,137,1,16504.000320,1822.900000,hint,nbiot,180 +on10,0,0,26,1,0,1087,4680.000000,137,2,22312.600960,2078.309584,hint,nbiot,180 +on2,0,0,25,1,0,529,4500.000000,137,1,13172.000320,2033.350000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,137,0,-1.000000,2077.443744,hint,nbiot,180 +on9,0,0,28,1,0,941,5040.000000,137,4,18286.600960,2613.153960,hint,nbiot,180 +on8,0,0,24,1,0,512,4320.000000,137,0,13311.000320,1871.000208,hint,nbiot,180 +on4,0,0,24,1,0,994,4320.000000,137,0,18245.000320,1782.859792,hint,nbiot,180 +on3,0,0,25,1,0,1048,4500.000000,137,1,22271.000320,1915.959792,hint,nbiot,180 +on9,0,0,25,1,0,2998,4500.000000,138,1,59809.000320,1917.000000,hint,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,138,0,24335.000320,1765.050000,hint,nbiot,180 +on6,0,0,24,1,0,104,4320.000000,138,0,1639.000320,1888.810000,hint,nbiot,180 +on3,0,0,24,1,0,802,4320.000000,138,0,15378.000320,1944.710624,hint,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,138,0,20502.000320,1843.960000,hint,nbiot,180 +on4,0,0,24,1,0,1154,4320.000000,138,1,24230.000320,1984.360416,hint,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,138,0,39105.000320,1830.700000,hint,nbiot,180 +on12,0,0,25,1,0,1013,4500.000000,138,1,20385.000320,1983.300000,hint,nbiot,180 +on2,0,0,26,1,0,1576,4680.000000,138,2,32143.600960,2084.550416,hint,nbiot,180 +on5,0,0,26,1,0,1381,4680.000000,138,3,32102.000320,2162.029584,hint,nbiot,180 +on1,0,0,26,1,0,1166,4680.000000,138,3,26457.000320,2388.295416,hint,nbiot,180 +on7,0,0,26,1,0,1364,4680.000000,138,2,34848.000320,2375.750000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,138,0,-1.000000,2057.555200,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,139,0,-1.000000,2071.724992,hint,nbiot,180 +on5,0,0,24,1,0,490,4320.000000,139,1,10087.000320,1756.795208,hint,nbiot,180 +on10,0,0,27,1,0,560,4878.000000,139,4,16453.000960,2630.059168,hint,nbiot,180 +on8,0,0,26,1,0,934,4680.000000,139,2,20353.000960,2018.314584,hint,nbiot,180 +on9,0,0,25,1,0,514,4622.000000,139,2,14060.000320,2231.454584,hint,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,139,2,3942.600640,2052.915000,hint,nbiot,180 +on11,0,0,28,1,0,769,5040.000000,139,5,16493.601600,2437.720208,hint,nbiot,180 +on12,0,0,25,1,0,688,4500.000000,139,2,14100.000960,1891.844584,hint,nbiot,180 +on1,0,0,26,1,0,701,4680.000000,139,2,16413.000320,2145.909792,hint,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,139,0,10190.000320,1870.350208,hint,nbiot,180 +on4,0,0,25,1,0,201,4500.000000,139,2,3983.201280,2137.154792,hint,nbiot,180 +on2,0,0,24,1,0,4,4320.000000,139,0,3386.000320,1848.770000,hint,nbiot,180 +on7,0,0,27,1,0,932,4860.000000,139,3,20313.000320,2286.159376,hint,nbiot,180 +on10,0,0,25,1,0,2753,4500.000000,140,1,56478.000320,1893.860416,hint,nbiot,180 +on8,0,0,25,1,0,1733,4500.000000,140,1,36871.000320,1943.000208,hint,nbiot,180 +on3,0,0,25,1,0,745,4500.000000,140,2,20361.000320,2083.660000,hint,nbiot,180 +on11,0,0,26,1,0,692,4680.000000,140,3,15526.600640,2265.705416,hint,nbiot,180 +on7,0,0,25,1,0,1332,4511.000000,140,2,27800.000960,2046.849792,hint,nbiot,180 +on2,0,0,24,0,0,4256,4320.000000,140,0,-1.000000,1862.550000,hint,nbiot,180 +on12,0,0,25,1,0,1000,4509.000000,140,2,24916.000960,2140.300000,hint,nbiot,180 +on5,0,0,26,1,0,1298,4680.000000,140,3,27760.000320,2260.894584,hint,nbiot,180 +on6,0,0,25,1,0,1158,4500.000000,140,1,24876.000320,2193.380000,hint,nbiot,180 +on1,0,0,27,1,0,1077,4860.000000,140,4,24956.001600,2295.390416,hint,nbiot,180 +on9,0,0,28,1,0,1150,5040.000000,140,4,30238.000320,2870.749584,hint,nbiot,180 +on4,0,0,24,1,0,615,4320.000000,140,0,11196.000320,1754.000624,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,140,0,-1.000000,2075.107280,hint,nbiot,180 +on5,0,0,26,1,0,514,4680.000000,141,2,12134.000320,2193.359376,hint,nbiot,180 +on11,0,0,26,1,0,596,4680.000000,141,2,15591.600960,2333.760416,hint,nbiot,180 +on10,0,0,24,0,0,4215,4320.000000,141,1,-1.000000,1876.850000,hint,nbiot,180 +on2,0,0,27,1,0,547,4930.000000,141,4,12175.600960,2417.509584,hint,nbiot,180 +on6,0,0,25,1,0,882,4500.000000,141,1,18977.000320,2215.350624,hint,nbiot,180 +on4,0,0,25,1,0,653,4500.000000,141,1,15550.000320,2068.060208,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,141,0,-1.000000,2023.757696,hint,nbiot,180 +on1,0,0,24,1,0,41,4320.000000,141,0,661.000320,1995.670624,hint,nbiot,180 +on9,0,0,26,1,0,193,4680.000000,141,4,5531.601600,2165.800832,hint,nbiot,180 +on7,0,0,25,1,0,504,4500.000000,141,1,9126.000320,1916.350208,hint,nbiot,180 +on12,0,0,26,1,0,448,4680.000000,141,2,9167.001280,2137.199584,hint,nbiot,180 +on8,0,0,25,1,0,348,4500.000000,141,1,5451.000320,1916.350416,hint,nbiot,180 +on3,0,0,26,1,0,389,4680.000000,141,2,5491.000960,2060.694376,hint,nbiot,180 +on8,0,0,28,1,0,889,5040.000000,142,4,21460.000960,2403.398960,hint,nbiot,180 +on2,0,0,27,1,0,878,4860.000000,142,4,21420.000320,2327.629168,hint,nbiot,180 +on9,0,0,26,1,0,524,4680.000000,142,2,8281.000320,2101.710208,hint,nbiot,180 +on3,0,0,25,1,0,180,4500.000000,142,1,6331.600640,2160.165624,hint,nbiot,180 +on5,0,0,26,1,0,870,4680.000000,142,2,15718.001600,2091.244168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,142,0,-1.000000,2042.605200,hint,nbiot,180 +on4,0,0,25,1,0,700,4500.000000,142,1,14003.000960,2007.349584,hint,nbiot,180 +on7,0,0,26,1,0,641,4680.000000,142,2,15638.000320,2096.899792,hint,nbiot,180 +on10,0,0,25,1,0,0,4500.000000,142,1,2046.600640,2026.265416,hint,nbiot,180 +on1,0,0,25,1,0,385,4500.000000,142,2,8321.600960,2123.244792,hint,nbiot,180 +on11,0,0,26,1,0,820,4838.000000,142,4,15758.602240,2077.940624,hint,nbiot,180 +on6,0,0,26,1,0,870,4680.000000,142,2,15678.000960,2169.309376,hint,nbiot,180 +on12,0,0,24,1,0,536,4462.000000,142,1,13963.000320,1992.800000,hint,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,143,0,11558.000320,1754.000208,hint,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,143,0,51012.000320,1845.000000,hint,nbiot,180 +on6,0,0,24,1,0,1694,4320.000000,143,0,32600.000320,1932.100416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,143,0,-1.000000,2045.853536,hint,nbiot,180 +on2,0,0,24,1,0,352,4320.000000,143,0,7701.000320,1871.000208,hint,nbiot,180 +on7,0,0,24,1,0,1198,4320.000000,143,0,24145.000320,1869.310208,hint,nbiot,180 +on1,0,0,24,1,0,1852,4320.000000,143,0,37271.000320,1754.000208,hint,nbiot,180 +on5,0,0,25,1,0,1883,4500.000000,143,1,41368.000320,1973.810208,hint,nbiot,180 +on4,0,0,24,1,0,1035,4320.000000,143,0,20082.000320,1754.000208,hint,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,143,0,6074.000320,1754.000624,hint,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,143,0,30720.000320,1754.000208,hint,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,143,0,37401.000320,1801.710208,hint,nbiot,180 +on8,0,0,25,1,0,1390,4500.000000,143,1,26402.000320,1826.000208,hint,nbiot,180 +on4,0,0,25,1,0,616,4500.000000,144,1,12709.000320,2102.769584,hint,nbiot,180 +on11,0,0,26,1,0,1219,4680.000000,144,2,28057.000320,2284.489376,hint,nbiot,180 +on6,0,0,25,1,0,1081,4500.000000,144,1,24701.600320,2181.809792,hint,nbiot,180 +on5,0,0,28,1,0,1089,5040.000000,144,4,24653.001280,2521.699376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,144,0,-1.000000,2040.655200,hint,nbiot,180 +on2,0,0,27,1,0,1025,4863.000000,144,6,24612.000320,2309.848752,hint,nbiot,180 +on3,0,0,26,1,0,709,4711.000000,144,3,20027.000960,2294.289168,hint,nbiot,180 +on9,0,0,26,1,0,717,4680.000000,144,2,12789.001600,1967.355416,hint,nbiot,180 +on1,0,0,24,1,0,1001,4320.000000,144,0,19987.000320,1888.159792,hint,nbiot,180 +on8,0,0,25,1,0,693,4500.000000,144,1,12749.000960,2092.500208,hint,nbiot,180 +on7,0,0,24,1,0,810,4320.000000,144,0,16861.000320,1798.849584,hint,nbiot,180 +on10,0,0,28,1,0,1252,5040.000000,144,4,28097.000960,2402.098960,hint,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,144,0,9439.000320,1764.010000,hint,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,145,0,2338.000320,1956.020208,hint,nbiot,180 +on2,0,0,25,1,0,192,4500.000000,145,1,6390.600960,2109.919376,hint,nbiot,180 +on7,0,0,26,1,0,713,4680.000000,145,2,16885.000320,2079.349792,hint,nbiot,180 +on11,0,0,25,1,0,976,4623.000000,145,2,22003.000320,2264.549792,hint,nbiot,180 +on8,0,0,25,1,0,724,4583.000000,145,2,13825.000960,1970.545000,hint,nbiot,180 +on9,0,0,26,1,0,433,4680.000000,145,2,9149.000960,2203.110000,hint,nbiot,180 +on4,0,0,24,1,0,2189,4320.000000,145,0,44780.000320,1825.500000,hint,nbiot,180 +on10,0,0,25,1,0,192,4500.000000,145,1,6349.000320,2160.360208,hint,nbiot,180 +on12,0,0,26,1,0,446,4680.000000,145,2,9109.000320,2195.050208,hint,nbiot,180 +on6,0,0,26,1,0,513,4680.000000,145,2,13785.000320,2130.309792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,145,0,-1.000000,2040.006240,hint,nbiot,180 +on5,0,0,25,1,0,2290,4500.000000,145,1,44820.000960,1832.499584,hint,nbiot,180 +on1,0,0,25,1,0,777,4558.000000,145,2,21322.000320,2099.059792,hint,nbiot,180 +on10,0,0,26,1,0,1688,4680.000000,146,2,33314.600640,2351.245832,hint,nbiot,180 +on1,0,0,26,1,0,752,4680.000000,146,2,11608.000960,2202.200000,hint,nbiot,180 +on6,0,0,25,1,0,21,4500.000000,146,1,1525.601600,2068.318960,hint,nbiot,180 +on11,0,0,24,1,0,165,4404.000000,146,1,4541.000320,1993.910000,hint,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,146,0,1403.000320,1842.010416,hint,nbiot,180 +on7,0,0,24,1,0,4006,4320.000000,146,0,80395.000320,1815.750000,hint,nbiot,180 +on12,0,0,26,1,0,477,4680.000000,146,3,8877.601600,2261.741664,hint,nbiot,180 +on2,0,0,25,1,0,24,4500.000000,146,2,1485.600960,2104.655624,hint,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,146,0,1445.000320,2063.010416,hint,nbiot,180 +on4,0,0,26,1,0,573,4680.000000,146,2,8837.000960,2308.800000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,146,0,-1.000000,2053.009360,hint,nbiot,180 +on3,0,0,25,1,0,218,4500.000000,146,1,8797.000320,2109.530624,hint,nbiot,180 +on8,0,0,25,1,0,404,4520.000000,146,2,11568.000320,2089.645000,hint,nbiot,180 +on8,0,0,27,1,0,1435,4860.000000,147,4,32146.600960,2569.171040,hint,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,147,0,7351.000320,1754.000208,hint,nbiot,180 +on6,0,0,24,1,0,995,4320.000000,147,0,21030.000320,1782.860000,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,147,0,-1.000000,2081.606864,hint,nbiot,180 +on12,0,0,25,1,0,1436,4500.000000,147,1,32105.000320,2141.509792,hint,nbiot,180 +on11,0,0,24,1,0,772,4320.000000,147,0,17239.000320,1754.000208,hint,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,147,0,17371.000320,1983.320416,hint,nbiot,180 +on9,0,0,25,1,0,1193,4500.000000,147,1,26679.000320,2014.500416,hint,nbiot,180 +on1,0,0,26,1,0,853,4680.000000,147,2,21071.600960,2145.650624,hint,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,hint,nbiot,180 +on10,0,0,24,1,0,3679,4320.000000,147,0,74943.000320,2003.600208,hint,nbiot,180 +on2,0,0,26,1,0,1062,4680.000000,147,2,22397.000320,2194.270208,hint,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,147,0,2997.000320,1874.250416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,148,0,-1.000000,2024.017696,hint,nbiot,180 +on7,0,0,25,1,0,1255,4605.000000,148,2,27231.000960,2245.130208,hint,nbiot,180 +on2,0,0,24,1,0,607,4320.000000,148,0,12702.000320,1754.000416,hint,nbiot,180 +on11,0,0,26,1,0,1314,4680.000000,148,3,27271.001600,2173.598960,hint,nbiot,180 +on1,0,0,27,1,0,1140,4860.000000,148,3,24481.000320,2319.050000,hint,nbiot,180 +on5,0,0,26,1,0,639,4680.000000,148,3,15853.600960,2290.599792,hint,nbiot,180 +on3,0,0,25,1,0,878,4500.000000,148,1,15812.000320,1959.314584,hint,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,hint,nbiot,180 +on12,0,0,24,1,0,1992,4320.000000,148,1,43042.000320,2142.310832,hint,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,148,0,9424.000320,1960.570832,hint,nbiot,180 +on9,0,0,24,1,0,985,4320.000000,148,0,20799.000320,1995.409792,hint,nbiot,180 +on6,0,0,26,1,0,1243,4680.000000,148,2,27191.000320,2306.720000,hint,nbiot,180 +on10,0,0,26,1,0,1051,4680.000000,148,2,20840.001280,1965.600000,hint,nbiot,180 +on7,0,0,25,1,0,1053,4654.000000,149,2,23444.000320,2169.699792,hint,nbiot,180 +on6,0,0,28,1,0,695,5040.000000,149,4,16198.600960,2511.495000,hint,nbiot,180 +on9,0,0,26,1,0,55,4680.000000,149,2,6266.600960,2221.830416,hint,nbiot,180 +on5,0,0,24,1,0,96,4458.000000,149,1,6225.000320,2008.814792,hint,nbiot,180 +on1,0,0,26,1,0,617,4680.000000,149,2,12603.000960,2133.949376,hint,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,149,0,3180.000320,1819.260208,hint,nbiot,180 +on4,0,0,26,1,0,1090,4680.000000,149,2,20722.000960,2036.449584,hint,nbiot,180 +on3,0,0,27,1,0,309,4860.000000,149,4,12563.000320,2358.049376,hint,nbiot,180 +on10,0,0,26,1,0,613,4680.000000,149,3,16157.000320,2304.444168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,149,0,-1.000000,2058.464368,hint,nbiot,180 +on12,0,0,25,1,0,852,4500.000000,149,1,20682.000320,2032.700000,hint,nbiot,180 +on2,0,0,26,1,0,717,4680.000000,149,2,12643.001600,2104.310000,hint,nbiot,180 +on8,0,0,25,1,0,336,4500.000000,149,1,9480.000320,1989.800000,hint,nbiot,180 +on8,0,0,25,1,0,693,4500.000000,150,1,13729.000960,1890.740000,hint,nbiot,180 +on4,0,0,28,1,0,878,5040.000000,150,4,24798.000320,2762.199168,hint,nbiot,180 +on11,0,0,24,1,0,631,4320.000000,150,0,13689.000320,1825.110000,hint,nbiot,180 +on2,0,0,26,1,0,627,4680.000000,150,2,14823.000320,2174.444792,hint,nbiot,180 +on9,0,0,24,1,0,407,4320.000000,150,0,8913.000320,1813.409792,hint,nbiot,180 +on1,0,0,24,1,0,1380,4320.000000,150,0,28535.000320,1999.700208,hint,nbiot,180 +on3,0,0,25,1,0,1054,4566.000000,150,2,20915.600960,1908.300416,hint,nbiot,180 +on12,0,0,27,1,0,720,4860.000000,150,4,20874.000320,2539.204376,hint,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,150,0,38936.000320,1953.550000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,150,0,-1.000000,2056.774992,hint,nbiot,180 +on10,0,0,25,1,0,704,4516.000000,150,2,13769.400640,2017.260000,hint,nbiot,180 +on6,0,0,25,1,0,572,4500.000000,150,1,13809.401280,2031.009584,hint,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,150,0,28615.000320,1841.750208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,151,0,-1.000000,2073.806448,hint,nbiot,180 +on8,0,0,25,1,0,181,4500.000000,151,1,5562.600320,2018.920208,hint,nbiot,180 +on7,0,0,25,1,0,601,4675.000000,151,3,15242.000640,2269.099584,hint,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,151,0,342.000320,1869.310416,hint,nbiot,180 +on12,0,0,26,1,0,358,4680.000000,151,2,5505.600640,2347.215416,hint,nbiot,180 +on4,0,0,25,1,0,634,4500.000000,151,1,13613.000320,2077.680624,hint,nbiot,180 +on2,0,0,25,1,0,473,4500.000000,151,1,8603.000320,2026.460000,hint,nbiot,180 +on9,0,0,25,1,0,1076,4500.000000,151,1,20123.000320,1917.000416,hint,nbiot,180 +on6,0,0,26,1,0,2790,4680.000000,151,2,59016.600960,2028.259584,hint,nbiot,180 +on1,0,0,25,1,0,1042,4500.000000,151,1,23035.000320,2071.570624,hint,nbiot,180 +on3,0,0,25,1,0,1893,4500.000000,151,2,42807.000320,2076.250000,hint,nbiot,180 +on11,0,0,25,1,0,822,4500.000000,151,2,15282.601280,1902.505624,hint,nbiot,180 +on5,0,0,25,1,0,2708,4500.000000,151,1,58975.000320,2042.775000,hint,nbiot,180 +on7,0,0,24,1,0,227,4320.000000,152,0,4463.000320,1815.749584,hint,nbiot,180 +on3,0,0,26,1,0,736,4680.000000,152,2,20674.000960,2345.849168,hint,nbiot,180 +on5,0,0,26,1,0,957,4680.000000,152,2,24689.000960,2183.218960,hint,nbiot,180 +on10,0,0,26,1,0,747,4680.000000,152,2,14127.000960,2265.573752,hint,nbiot,180 +on12,0,0,24,1,0,976,4320.000000,152,1,20634.000320,1765.050000,hint,nbiot,180 +on11,0,0,26,1,0,605,4680.000000,152,2,15079.000320,2171.649584,hint,nbiot,180 +on9,0,0,28,1,0,1263,5040.000000,152,5,24729.601600,2235.635208,hint,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,152,0,9994.000320,1868.660208,hint,nbiot,180 +on4,0,0,28,1,0,1183,5040.000000,152,4,26218.000320,2541.718960,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,152,0,-1.000000,2056.904992,hint,nbiot,180 +on2,0,0,24,1,0,635,4320.000000,152,0,14087.000320,1782.600208,hint,nbiot,180 +on1,0,0,26,1,0,901,4680.000000,152,3,24649.000320,2285.789792,hint,nbiot,180 +on6,0,0,26,1,0,623,4680.000000,152,3,14167.601600,2209.090832,hint,nbiot,180 +on12,0,0,27,1,0,2343,4860.000000,153,4,46319.600960,2332.050416,hint,nbiot,180 +on5,0,0,25,1,0,2160,4500.000000,153,1,42458.000320,2070.660208,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,153,0,-1.000000,2040.655824,hint,nbiot,180 +on6,0,0,25,1,0,4087,4500.000000,153,1,81336.000320,1843.550208,hint,nbiot,180 +on7,0,0,24,0,0,4281,4320.000000,153,0,-1.000000,1850.200000,hint,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,153,0,17008.000320,1868.660624,hint,nbiot,180 +on4,0,0,24,1,0,2289,4320.000000,153,0,46278.000320,1821.860000,hint,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,153,0,26091.000320,1754.000208,hint,nbiot,180 +on3,0,0,24,1,0,751,4320.000000,153,0,16954.000320,1754.000416,hint,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,153,0,18447.000320,1986.050416,hint,nbiot,180 +on8,0,0,24,1,0,400,4320.000000,153,0,9422.000320,1920.400624,hint,nbiot,180 +on2,0,0,24,1,0,241,4320.000000,153,0,5480.000320,1846.950624,hint,nbiot,180 +on10,0,0,26,1,0,2220,4680.000000,153,2,47962.000320,2416.700000,hint,nbiot,180 +on11,0,0,24,1,0,113,4329.000000,154,1,5614.000320,1852.760000,hint,nbiot,180 +on5,0,0,26,1,0,249,4680.000000,154,2,8774.000320,2168.139792,hint,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,154,0,8907.000320,1870.350208,hint,nbiot,180 +on12,0,0,25,1,0,640,4500.000000,154,1,13582.000320,2032.700000,hint,nbiot,180 +on6,0,0,25,1,0,333,4500.000000,154,1,5654.000960,2006.895000,hint,nbiot,180 +on9,0,0,25,1,0,571,4500.000000,154,1,13662.001600,1941.700208,hint,nbiot,180 +on7,0,0,25,1,0,377,4646.000000,154,3,8854.001600,2237.870416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,154,0,-1.000000,2076.015200,hint,nbiot,180 +on10,0,0,24,1,0,2676,4320.000000,154,0,54270.000320,1962.000000,hint,nbiot,180 +on1,0,0,25,1,0,556,4500.000000,154,1,8814.000960,2200.399168,hint,nbiot,180 +on8,0,0,27,1,0,339,4974.000000,154,4,13622.000960,2580.709168,hint,nbiot,180 +on3,0,0,26,1,0,359,4680.000000,154,2,5694.400640,2193.230000,hint,nbiot,180 +on4,0,0,24,1,0,35,4320.000000,154,0,3145.000320,1754.000624,hint,nbiot,180 +on1,0,0,25,1,0,984,4500.000000,155,1,20294.000960,1963.019584,hint,nbiot,180 +on3,0,0,26,1,0,1408,4680.000000,155,2,31033.000320,2132.259584,hint,nbiot,180 +on5,0,0,24,1,0,965,4320.000000,155,0,20254.000320,1801.450000,hint,nbiot,180 +on6,0,0,25,1,0,540,4500.000000,155,1,13955.600640,2140.015416,hint,nbiot,180 +on7,0,0,26,1,0,1041,4680.000000,155,2,21866.000320,2092.739792,hint,nbiot,180 +on8,0,0,27,1,0,1459,4860.000000,155,3,31074.600960,2236.758960,hint,nbiot,180 +on2,0,0,25,1,0,720,4500.000000,155,1,15762.600640,1897.435208,hint,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,155,0,2698.000320,1754.000208,hint,nbiot,180 +on11,0,0,26,1,0,1368,4680.000000,155,2,27128.001280,2081.364584,hint,nbiot,180 +on4,0,0,27,1,0,1238,4860.000000,155,3,27087.000320,2295.844376,hint,nbiot,180 +on10,0,0,27,1,0,1118,4860.000000,155,4,21946.601600,2153.040000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,155,0,-1.000000,2040.004784,hint,nbiot,180 +on12,0,0,27,1,0,1027,4860.000000,155,3,21906.000960,2238.969584,hint,nbiot,180 +on2,0,0,29,1,0,1268,5220.000000,156,5,28555.600960,2679.889792,hint,nbiot,180 +on11,0,0,25,1,0,1053,4500.000000,156,1,20900.000960,1947.549792,hint,nbiot,180 +on1,0,0,25,1,0,710,4500.000000,156,1,11755.000320,1870.070208,hint,nbiot,180 +on10,0,0,24,1,0,624,4433.000000,156,1,15037.000320,1992.380208,hint,nbiot,180 +on3,0,0,24,1,0,2959,4320.000000,156,1,62126.000320,2015.690000,hint,nbiot,180 +on7,0,0,26,1,0,1011,4680.000000,156,2,22099.000320,2310.814792,hint,nbiot,180 +on9,0,0,27,1,0,576,4860.000000,156,5,15077.000960,2462.503960,hint,nbiot,180 +on8,0,0,24,1,0,435,4320.000000,156,0,9816.000320,1754.000208,hint,nbiot,180 +on12,0,0,25,1,0,1327,4500.000000,156,1,28514.000320,1956.259792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,156,0,-1.000000,2057.555824,hint,nbiot,180 +on5,0,0,27,1,0,1126,4860.000000,156,3,22140.600960,2266.659792,hint,nbiot,180 +on4,0,0,26,1,0,717,4680.000000,156,3,15117.601600,1965.535000,hint,nbiot,180 +on6,0,0,24,1,0,919,4320.000000,156,0,20860.000320,1832.000208,hint,nbiot,180 +on5,0,0,25,1,0,660,4500.000000,157,1,12652.000320,2037.640000,hint,nbiot,180 +on6,0,0,28,1,0,761,5040.000000,157,4,21433.000960,2558.684168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,157,0,-1.000000,2069.254784,hint,nbiot,180 +on7,0,0,25,1,0,698,4500.000000,157,1,12692.000960,1948.459584,hint,nbiot,180 +on10,0,0,26,1,0,640,4680.000000,157,3,16267.000320,2251.014376,hint,nbiot,180 +on3,0,0,27,1,0,1069,4860.000000,157,3,23965.000320,2316.059584,hint,nbiot,180 +on2,0,0,24,1,0,113,4364.000000,157,1,6049.000320,1890.160208,hint,nbiot,180 +on1,0,0,25,1,0,60,4500.000000,157,1,1890.600640,2191.365208,hint,nbiot,180 +on9,0,0,26,1,0,987,4680.000000,157,2,21393.000320,2078.699792,hint,nbiot,180 +on8,0,0,26,1,0,641,4680.000000,157,2,12732.001600,1976.650416,hint,nbiot,180 +on4,0,0,25,1,0,1,4500.000000,157,1,1935.600320,1925.969792,hint,nbiot,180 +on12,0,0,25,1,0,277,4500.000000,157,1,8324.000320,2030.360000,hint,nbiot,180 +on11,0,0,25,1,0,873,4500.000000,157,1,16307.000960,1958.599584,hint,nbiot,180 +on12,0,0,26,1,0,483,4680.000000,158,2,11598.000320,2254.720000,hint,nbiot,180 +on8,0,0,26,1,0,957,4680.000000,158,3,15988.601600,2107.041248,hint,nbiot,180 +on7,0,0,24,1,0,3480,4320.000000,158,0,70093.000320,1918.450000,hint,nbiot,180 +on10,0,0,25,1,0,0,4500.000000,158,1,2238.600640,2239.205000,hint,nbiot,180 +on4,0,0,25,1,0,513,4500.000000,158,1,10368.000960,2028.149792,hint,nbiot,180 +on9,0,0,28,1,0,640,5040.000000,158,4,15948.000960,2332.549376,hint,nbiot,180 +on6,0,0,24,1,0,238,4320.000000,158,0,5230.000320,1920.529792,hint,nbiot,180 +on2,0,0,27,1,0,729,4868.000000,158,4,21310.000320,2565.349376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,158,0,-1.000000,2077.317696,hint,nbiot,180 +on1,0,0,25,1,0,43,4563.000000,158,2,5271.600960,2202.590000,hint,nbiot,180 +on3,0,0,26,1,0,583,4680.000000,158,2,15908.000320,2374.320000,hint,nbiot,180 +on11,0,0,25,1,0,375,4500.000000,158,1,10328.000320,1949.694376,hint,nbiot,180 +on5,0,0,25,1,0,513,4500.000000,158,1,11638.000960,2067.799792,hint,nbiot,180 +on10,0,0,25,1,0,766,4500.000000,159,1,15772.000320,2033.350000,hint,nbiot,180 +on8,0,0,24,1,0,691,4365.000000,159,1,15897.000640,2123.000208,hint,nbiot,180 +on12,0,0,25,1,0,827,4500.000000,159,1,20318.000320,2034.845208,hint,nbiot,180 +on2,0,0,27,1,0,691,4860.000000,159,4,11948.602240,2252.749584,hint,nbiot,180 +on11,0,0,25,1,0,0,4500.000000,159,1,746.600640,2013.264168,hint,nbiot,180 +on6,0,0,25,1,0,94,4500.000000,159,1,4428.000320,2133.320000,hint,nbiot,180 +on3,0,0,24,1,0,417,4320.000000,159,0,10159.000320,1806.909792,hint,nbiot,180 +on5,0,0,25,1,0,577,4500.000000,159,1,11908.001600,2248.109168,hint,nbiot,180 +on1,0,0,26,1,0,547,4680.000000,159,2,11868.000960,2053.349168,hint,nbiot,180 +on7,0,0,26,1,0,371,4680.000000,159,2,10200.600960,2130.309584,hint,nbiot,180 +on4,0,0,25,1,0,1580,4500.000000,159,1,31788.000320,2033.350000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,159,0,-1.000000,2087.065616,hint,nbiot,180 +on9,0,0,24,1,0,638,4320.000000,159,0,11828.000320,2010.100208,hint,nbiot,180 +on11,0,0,27,1,0,1038,4860.000000,160,3,23496.000320,2311.704584,hint,nbiot,180 +on6,0,0,26,1,0,874,4680.000000,160,2,18854.000320,2092.999584,hint,nbiot,180 +on7,0,0,27,1,0,658,4860.000000,160,5,11382.000320,2282.844168,hint,nbiot,180 +on9,0,0,26,1,0,1123,4680.000000,160,2,18934.001600,1983.150624,hint,nbiot,180 +on8,0,0,25,1,0,541,4500.000000,160,1,16926.000320,2032.700000,hint,nbiot,180 +on4,0,0,25,1,0,1119,4500.000000,160,1,25306.000320,2110.960000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,160,0,-1.000000,2040.004576,hint,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,160,0,2762.000320,1985.010416,hint,nbiot,180 +on1,0,0,25,1,0,742,4500.000000,160,1,11422.000960,1890.999584,hint,nbiot,180 +on5,0,0,25,1,0,356,4500.000000,160,1,7026.000320,1826.000208,hint,nbiot,180 +on12,0,0,25,1,0,737,4654.000000,160,3,18894.000960,2243.865208,hint,nbiot,180 +on10,0,0,24,1,0,369,4320.000000,160,0,7918.000320,1754.000208,hint,nbiot,180 +on2,0,0,25,1,0,610,4500.000000,160,1,16966.000960,2041.150000,hint,nbiot,180 +on2,0,0,24,1,0,1,4320.000000,161,0,1807.000320,1944.450416,hint,nbiot,180 +on10,0,0,24,1,0,3436,4320.000000,161,0,68949.000320,1754.000208,hint,nbiot,180 +on3,0,0,24,1,0,2394,4320.000000,161,0,48001.000320,1809.900208,hint,nbiot,180 +on1,0,0,24,0,0,4288,4320.000000,161,0,-1.000000,1845.000000,hint,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,161,0,34535.000320,1869.310624,hint,nbiot,180 +on7,0,0,24,1,0,943,4320.000000,161,0,19242.000320,1919.101040,hint,nbiot,180 +on4,0,0,24,1,0,1471,4320.000000,161,0,29000.000320,1754.000416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,161,0,-1.000000,2064.706864,hint,nbiot,180 +on11,0,0,26,1,0,2290,4680.000000,161,2,46649.600960,2157.480000,hint,nbiot,180 +on8,0,0,25,1,0,2274,4500.000000,161,1,46608.000320,1971.210000,hint,nbiot,180 +on9,0,0,24,1,0,828,4320.000000,161,0,17713.000320,1991.510416,hint,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,161,0,48123.000320,1780.650624,hint,nbiot,180 +on12,0,0,25,1,0,3751,4500.000000,161,1,77881.600640,2023.405000,hint,nbiot,180 +on11,0,0,24,1,0,616,4373.000000,162,1,14510.000320,1865.095208,hint,nbiot,180 +on12,0,0,26,1,0,1178,4680.000000,162,2,25019.600960,1968.200416,hint,nbiot,180 +on6,0,0,26,1,0,371,4680.000000,162,2,6513.600960,1989.000416,hint,nbiot,180 +on1,0,0,26,1,0,514,4680.000000,162,2,8097.600960,1931.150416,hint,nbiot,180 +on2,0,0,26,1,0,379,4680.000000,162,2,8056.000320,2080.649584,hint,nbiot,180 +on10,0,0,25,1,0,782,4500.000000,162,3,19022.000320,2125.260416,hint,nbiot,180 +on3,0,0,24,1,0,1704,4320.000000,162,0,35128.000320,1987.350832,hint,nbiot,180 +on7,0,0,24,1,0,209,4320.000000,162,0,6472.000320,1825.110000,hint,nbiot,180 +on5,0,0,24,0,0,4304,4320.000000,162,0,-1.000000,1739.050000,hint,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,162,0,393.000320,1952.510000,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,162,0,-1.000000,2025.705824,hint,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,162,0,37833.000320,1794.300208,hint,nbiot,180 +on8,0,0,24,1,0,1139,4320.000000,162,0,24978.000320,1805.610000,hint,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,163,0,23533.000320,1872.950624,hint,nbiot,180 +on8,0,0,25,1,0,1481,4500.000000,163,1,29754.600960,1999.160416,hint,nbiot,180 +on3,0,0,28,1,0,1629,5040.000000,163,4,38535.600960,2443.049792,hint,nbiot,180 +on1,0,0,25,1,0,1159,4500.000000,163,1,25584.000320,2096.660832,hint,nbiot,180 +on2,0,0,26,1,0,1727,4680.000000,163,2,38494.000320,2316.210000,hint,nbiot,180 +on10,0,0,25,1,0,1135,4522.000000,163,4,29713.000320,2264.255000,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,163,0,-1.000000,2058.208320,hint,nbiot,180 +on7,0,0,24,0,0,4189,4320.000000,163,1,-1.000000,1783.250000,hint,nbiot,180 +on9,0,0,24,1,0,182,4466.000000,163,1,4667.600640,1867.455624,hint,nbiot,180 +on6,0,0,25,1,0,423,4500.000000,163,1,13143.000320,2061.300208,hint,nbiot,180 +on12,0,0,26,1,0,1943,4680.000000,163,2,40793.000320,2554.500000,hint,nbiot,180 +on4,0,0,24,1,0,1713,4320.000000,163,0,35285.000640,1985.010000,hint,nbiot,180 +on11,0,0,25,1,0,181,4500.000000,163,1,4760.600320,2419.710000,hint,nbiot,180 +on8,0,0,25,1,0,180,4500.000000,164,1,6913.600640,2358.155000,hint,nbiot,180 +on12,0,0,26,1,0,784,4680.000000,164,2,13654.400640,2048.800416,hint,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,164,0,10145.000320,1869.310416,hint,nbiot,180 +on11,0,0,26,1,0,453,4680.000000,164,3,13574.000320,2190.369376,hint,nbiot,180 +on9,0,0,27,1,0,996,4860.000000,164,4,22775.000320,2295.259376,hint,nbiot,180 +on7,0,0,26,1,0,1137,4857.000000,164,3,27323.000320,2363.414168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,164,0,-1.000000,2059.765200,hint,nbiot,180 +on2,0,0,26,1,0,903,4680.000000,164,3,21234.000320,2195.049792,hint,nbiot,180 +on6,0,0,29,1,0,1113,5220.000000,164,5,27364.600960,2613.848752,hint,nbiot,180 +on10,0,0,26,1,0,769,4680.000000,164,2,16061.000960,2171.194376,hint,nbiot,180 +on3,0,0,25,1,0,721,4500.000000,164,1,16149.600320,1915.960208,hint,nbiot,180 +on1,0,0,26,1,0,703,4680.000000,164,2,16021.000320,2193.359792,hint,nbiot,180 +on5,0,0,26,1,0,656,4680.000000,164,2,13614.000960,2067.390000,hint,nbiot,180 +on5,0,0,25,1,0,1223,4500.000000,165,2,27701.000320,2066.109584,hint,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,165,0,29673.000320,1872.300208,hint,nbiot,180 +on10,0,0,24,1,0,1281,4320.000000,165,1,27741.000960,1823.550208,hint,nbiot,180 +on3,0,0,24,1,0,3317,4320.000000,165,0,65155.000320,1911.950000,hint,nbiot,180 +on8,0,0,24,1,0,479,4320.000000,165,0,9724.000320,1777.400624,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,165,0,-1.000000,2065.875408,hint,nbiot,180 +on4,0,0,25,1,0,1273,4566.000000,165,2,27781.001600,2169.600416,hint,nbiot,180 +on12,0,0,25,1,0,682,4500.000000,165,2,14855.000320,2076.510208,hint,nbiot,180 +on11,0,0,24,1,0,585,4320.000000,165,0,12406.000320,1763.100416,hint,nbiot,180 +on2,0,0,24,1,0,1080,4459.000000,165,2,23436.600640,2036.775208,hint,nbiot,180 +on9,0,0,24,1,0,2376,4320.000000,165,0,48396.000320,1754.000208,hint,nbiot,180 +on6,0,0,25,1,0,934,4500.000000,165,1,20551.000320,2168.680000,hint,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,165,0,9781.000320,1754.000208,hint,nbiot,180 +on5,0,0,26,1,0,268,4680.000000,166,2,6343.001600,1963.390000,hint,nbiot,180 +on3,0,0,24,1,0,290,4407.000000,166,2,12548.000320,2084.809168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,166,0,-1.000000,2065.354576,hint,nbiot,180 +on2,0,0,27,1,0,515,4860.000000,166,3,15769.000960,2404.199168,hint,nbiot,180 +on9,0,0,25,1,0,147,4500.000000,166,1,6263.000320,2068.710000,hint,nbiot,180 +on4,0,0,28,1,0,511,5040.000000,166,4,15729.000320,2524.949376,hint,nbiot,180 +on1,0,0,25,1,0,23,4500.000000,166,1,1149.600640,1832.565208,hint,nbiot,180 +on6,0,0,25,1,0,644,4500.000000,166,1,12588.000960,1890.740000,hint,nbiot,180 +on7,0,0,28,1,0,642,5040.000000,166,4,12628.400640,2429.009584,hint,nbiot,180 +on11,0,0,25,1,0,325,4500.000000,166,1,6303.000960,1900.294584,hint,nbiot,180 +on10,0,0,26,1,0,310,4680.000000,166,2,8408.000960,2214.549584,hint,nbiot,180 +on12,0,0,28,1,0,590,5040.000000,166,4,18741.000320,2674.318752,hint,nbiot,180 +on8,0,0,26,1,0,238,4680.000000,166,2,8368.000320,2110.224792,hint,nbiot,180 +on9,0,0,26,1,0,398,4680.000000,167,2,5933.000960,2027.998960,hint,nbiot,180 +on1,0,0,24,1,0,287,4320.000000,167,0,5893.000320,1774.800000,hint,nbiot,180 +on10,0,0,24,1,0,1114,4320.000000,167,0,24428.000320,1939.250208,hint,nbiot,180 +on11,0,0,25,1,0,675,4500.000000,167,1,15213.000320,2032.700208,hint,nbiot,180 +on4,0,0,24,1,0,51,4320.000000,167,0,2252.000320,1869.310416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,167,0,-1.000000,2040.006656,hint,nbiot,180 +on2,0,0,24,1,0,1635,4320.000000,167,0,32900.000320,1870.350208,hint,nbiot,180 +on5,0,0,25,1,0,223,4566.000000,167,4,5973.601600,2033.035416,hint,nbiot,180 +on12,0,0,25,1,0,383,4500.000000,167,1,8058.000960,2157.110000,hint,nbiot,180 +on8,0,0,25,1,0,2993,4500.000000,167,1,60266.000320,1917.000000,hint,nbiot,180 +on7,0,0,25,1,0,2012,4500.000000,167,1,42452.000320,2038.550208,hint,nbiot,180 +on3,0,0,25,1,0,393,4500.000000,167,1,8098.001600,2201.960624,hint,nbiot,180 +on6,0,0,26,1,0,334,4680.000000,167,2,8018.000320,2254.850416,hint,nbiot,180 +on11,0,0,25,1,0,2506,4500.000000,168,1,55352.000320,2160.749584,hint,nbiot,180 +on2,0,0,26,1,0,745,4680.000000,168,3,17819.000320,2141.360208,hint,nbiot,180 +on6,0,0,25,1,0,906,4500.000000,168,1,21168.000640,1913.100416,hint,nbiot,180 +on5,0,0,24,1,0,1545,4396.000000,168,1,33044.000320,2041.800000,hint,nbiot,180 +on12,0,0,25,1,0,1768,4500.000000,168,1,37061.000320,2347.560000,hint,nbiot,180 +on1,0,0,24,1,0,639,4320.000000,168,0,10978.000320,1869.700624,hint,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,168,0,5397.000320,1754.260208,hint,nbiot,180 +on10,0,0,26,1,0,979,4680.000000,168,3,21208.601280,2104.765624,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,168,0,-1.000000,2120.606448,hint,nbiot,180 +on7,0,0,26,1,0,2296,4680.000000,168,2,46207.600640,2162.095416,hint,nbiot,180 +on4,0,0,25,1,0,293,4500.000000,168,1,8610.000320,2003.060416,hint,nbiot,180 +on3,0,0,25,1,0,2643,4500.000000,168,1,52064.000320,1954.050000,hint,nbiot,180 +on8,0,0,25,1,0,2077,4500.000000,168,1,42892.000320,1937.800416,hint,nbiot,180 +on4,0,0,27,1,0,764,4860.000000,169,4,17671.000320,2252.099584,hint,nbiot,180 +on6,0,0,25,1,0,1531,4500.000000,169,1,30112.000320,2033.350208,hint,nbiot,180 +on11,0,0,25,1,0,2514,4500.000000,169,1,48230.000320,1917.000000,hint,nbiot,180 +on12,0,0,27,1,0,873,4860.000000,169,3,17711.000960,2485.254376,hint,nbiot,180 +on7,0,0,25,1,0,961,4500.000000,169,1,24127.000320,1970.364376,hint,nbiot,180 +on1,0,0,24,1,0,268,4320.000000,169,0,4486.000320,1850.720624,hint,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,169,0,20540.000320,1843.310000,hint,nbiot,180 +on9,0,0,26,1,0,986,4680.000000,169,2,20432.000320,2079.999792,hint,nbiot,180 +on2,0,0,24,1,0,366,4484.000000,169,1,9335.601600,2255.100832,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,169,0,-1.000000,2069.256448,hint,nbiot,180 +on3,0,0,26,1,0,1185,4680.000000,169,2,24168.600960,2112.110416,hint,nbiot,180 +on10,0,0,26,1,0,412,4680.000000,169,2,9295.600960,2274.220000,hint,nbiot,180 +on8,0,0,25,1,0,463,4500.000000,169,1,9254.000320,2044.464584,hint,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,170,0,32753.000320,1845.000000,hint,nbiot,180 +on10,0,0,26,1,0,347,4680.000000,170,2,4774.000960,2044.899376,hint,nbiot,180 +on5,0,0,26,1,0,447,4680.000000,170,2,9755.000320,2078.699584,hint,nbiot,180 +on1,0,0,25,1,0,557,4500.000000,170,1,17815.000320,2224.709792,hint,nbiot,180 +on8,0,0,25,1,0,94,4500.000000,170,1,4734.000320,2102.704376,hint,nbiot,180 +on12,0,0,27,1,0,578,4860.000000,170,3,11114.001600,2152.000000,hint,nbiot,180 +on7,0,0,24,1,0,558,4320.000000,170,0,11034.000320,1857.350000,hint,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,170,0,579.000320,1938.858960,hint,nbiot,180 +on4,0,0,26,1,0,556,4680.000000,170,2,11074.000960,2343.769376,hint,nbiot,180 +on3,0,0,25,1,0,513,4500.000000,170,1,9795.000960,1890.999584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,170,0,-1.000000,2060.805408,hint,nbiot,180 +on6,0,0,28,1,0,604,5040.000000,170,5,17856.600960,2717.089584,hint,nbiot,180 +on2,0,0,26,1,0,187,4680.000000,170,5,4814.601600,2126.800624,hint,nbiot,180 +on4,0,0,29,1,0,878,5220.000000,171,5,22501.600960,2600.718960,hint,nbiot,180 +on6,0,0,25,1,0,0,4500.000000,171,1,1700.600640,2035.755000,hint,nbiot,180 +on3,0,0,26,1,0,746,4680.000000,171,2,17101.000320,2195.699792,hint,nbiot,180 +on5,0,0,25,1,0,473,4500.000000,171,1,13186.000320,1915.310000,hint,nbiot,180 +on7,0,0,24,1,0,237,4320.000000,171,0,4708.000320,1807.950208,hint,nbiot,180 +on11,0,0,25,1,0,347,4500.000000,171,1,7659.000320,1940.660208,hint,nbiot,180 +on8,0,0,25,1,0,888,4671.000000,171,2,18736.600960,2251.639376,hint,nbiot,180 +on9,0,0,25,1,0,521,4500.000000,171,2,13226.000960,2235.499376,hint,nbiot,180 +on2,0,0,25,1,0,546,4500.000000,171,1,13306.401280,2079.499168,hint,nbiot,180 +on10,0,0,26,1,0,553,4680.000000,171,2,13266.400640,2154.360000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,171,0,-1.000000,2040.005408,hint,nbiot,180 +on1,0,0,24,1,0,1135,4423.000000,171,1,22460.000320,2001.509792,hint,nbiot,180 +on12,0,0,27,1,0,910,4860.000000,171,4,18695.000320,2357.854376,hint,nbiot,180 +on10,0,0,24,1,0,639,4320.000000,172,0,11819.000320,1946.010208,hint,nbiot,180 +on5,0,0,27,1,0,953,4860.000000,172,4,21373.600960,2313.199584,hint,nbiot,180 +on12,0,0,24,1,0,1462,4320.000000,172,1,30177.200320,1809.900416,hint,nbiot,180 +on2,0,0,26,1,0,1266,4680.000000,172,2,26084.000320,2291.510208,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,172,0,-1.000000,2030.256032,hint,nbiot,180 +on8,0,0,27,1,0,997,4860.000000,172,4,24614.601920,2646.001040,hint,nbiot,180 +on11,0,0,24,0,0,4305,4320.000000,172,0,-1.000000,1738.400000,hint,nbiot,180 +on7,0,0,25,1,0,1103,4500.000000,172,1,24574.001280,2256.949376,hint,nbiot,180 +on4,0,0,26,1,0,661,4680.000000,172,3,17473.000320,2254.200208,hint,nbiot,180 +on9,0,0,25,1,0,288,4500.000000,172,1,8092.000320,1857.460416,hint,nbiot,180 +on1,0,0,24,1,0,114,4320.000000,172,0,912.000320,1856.050416,hint,nbiot,180 +on3,0,0,24,1,0,852,4430.000000,172,1,21332.000320,1997.615000,hint,nbiot,180 +on6,0,0,25,1,0,1209,4500.000000,172,1,24534.000640,2022.950000,hint,nbiot,180 +on9,0,0,25,1,0,2094,4500.000000,173,1,46648.000320,2033.350000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,173,0,-1.000000,2040.006032,hint,nbiot,180 +on11,0,0,25,1,0,339,4500.000000,173,1,9169.000320,1916.545000,hint,nbiot,180 +on7,0,0,25,1,0,693,4500.000000,173,1,12682.000960,2007.090000,hint,nbiot,180 +on1,0,0,27,1,0,532,4860.000000,173,3,17022.000320,2326.720000,hint,nbiot,180 +on8,0,0,25,1,0,1071,4500.000000,173,1,21064.000320,1916.350000,hint,nbiot,180 +on3,0,0,25,1,0,379,4500.000000,173,1,9209.000960,1960.549792,hint,nbiot,180 +on10,0,0,25,1,0,0,4500.000000,173,1,1738.600640,2213.465624,hint,nbiot,180 +on6,0,0,26,1,0,625,4797.000000,173,3,12722.400640,2162.810208,hint,nbiot,180 +on12,0,0,25,1,0,541,4577.000000,173,2,12642.000320,2157.424792,hint,nbiot,180 +on5,0,0,25,1,0,33,4500.000000,173,2,3768.000320,2198.319584,hint,nbiot,180 +on2,0,0,28,1,0,823,5040.000000,173,4,17062.000960,2402.944584,hint,nbiot,180 +on4,0,0,29,1,0,796,5220.000000,173,5,21104.000960,2567.504168,hint,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,hint,nbiot,180 +on3,0,0,27,1,0,734,4860.000000,174,4,15334.600960,2341.409584,hint,nbiot,180 +on6,0,0,24,1,0,2891,4320.000000,174,0,60958.000320,1870.350208,hint,nbiot,180 +on1,0,0,24,1,0,444,4320.000000,174,0,7677.000320,1789.360000,hint,nbiot,180 +on12,0,0,25,1,0,299,4500.000000,174,1,6493.000320,2186.750624,hint,nbiot,180 +on5,0,0,25,1,0,1026,4626.000000,174,2,23980.000320,2168.250000,hint,nbiot,180 +on4,0,0,27,1,0,355,4860.000000,174,5,7718.600960,2575.670624,hint,nbiot,180 +on8,0,0,25,1,0,688,4500.000000,174,1,15293.000320,2053.110000,hint,nbiot,180 +on10,0,0,25,1,0,1014,4500.000000,174,1,19837.000320,2055.450624,hint,nbiot,180 +on11,0,0,24,1,0,627,4320.000000,174,0,12137.000320,1803.400208,hint,nbiot,180 +on9,0,0,25,1,0,165,4500.000000,174,1,6579.001280,2099.000416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,174,0,-1.000000,2037.018528,hint,nbiot,180 +on2,0,0,28,1,0,1062,5040.000000,174,4,19877.000960,2293.094584,hint,nbiot,180 +on10,0,0,26,1,0,194,4680.000000,175,4,10425.000320,2488.393336,hint,nbiot,180 +on8,0,0,26,1,0,252,4680.000000,175,2,6548.001600,2121.728960,hint,nbiot,180 +on6,0,0,25,1,0,368,4500.000000,175,1,10505.001600,1921.809376,hint,nbiot,180 +on5,0,0,24,1,0,207,4320.000000,175,0,6468.000320,2019.200208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,175,0,-1.000000,2040.006032,hint,nbiot,180 +on12,0,0,28,1,0,805,5040.000000,175,4,18858.600960,2568.109168,hint,nbiot,180 +on2,0,0,24,1,0,653,4476.000000,175,1,17350.000320,2150.499792,hint,nbiot,180 +on7,0,0,24,1,0,659,4320.000000,175,0,13546.000320,1767.000000,hint,nbiot,180 +on3,0,0,26,1,0,538,4680.000000,175,3,10545.602240,2068.690416,hint,nbiot,180 +on11,0,0,25,1,0,332,4500.000000,175,1,6508.000960,1890.999792,hint,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,175,0,3307.000320,1999.309792,hint,nbiot,180 +on4,0,0,27,1,0,511,4860.000000,175,3,10465.000960,2272.443960,hint,nbiot,180 +on9,0,0,27,1,0,880,4860.000000,175,3,18817.000320,2357.009376,hint,nbiot,180 +on5,0,0,26,1,0,229,4680.000000,176,2,5722.600960,2232.490416,hint,nbiot,180 +on3,0,0,27,1,0,382,4860.000000,176,3,8875.000960,2344.594584,hint,nbiot,180 +on12,0,0,24,1,0,132,4320.000000,176,0,524.000320,1867.230208,hint,nbiot,180 +on7,0,0,25,1,0,525,4500.000000,176,1,8835.000320,2031.465000,hint,nbiot,180 +on6,0,0,24,1,0,615,4320.000000,176,0,12841.000320,1872.300000,hint,nbiot,180 +on11,0,0,26,1,0,865,4680.000000,176,2,17834.000320,2079.349792,hint,nbiot,180 +on9,0,0,24,1,0,1501,4320.000000,176,0,29047.000320,1851.500000,hint,nbiot,180 +on10,0,0,26,1,0,886,4680.000000,176,3,17914.601600,2027.610832,hint,nbiot,180 +on8,0,0,25,1,0,718,4500.000000,176,1,12881.000960,2007.999584,hint,nbiot,180 +on2,0,0,28,1,0,820,5040.000000,176,4,17874.000960,2449.743960,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,176,0,-1.000000,2046.504368,hint,nbiot,180 +on1,0,0,25,1,0,349,4500.000000,176,1,5681.000320,2038.679792,hint,nbiot,180 +on4,0,0,26,1,0,795,4775.000000,176,3,20736.000320,2346.149376,hint,nbiot,180 +on10,0,0,24,1,0,95,4320.000000,177,0,309.000320,1869.310416,hint,nbiot,180 +on2,0,0,26,1,0,1167,4680.000000,177,3,26776.000640,2126.409584,hint,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,177,0,5806.000320,1754.000416,hint,nbiot,180 +on7,0,0,24,1,0,1173,4320.000000,177,0,23414.000320,1874.899792,hint,nbiot,180 +on8,0,0,26,1,0,1386,4857.000000,177,3,34286.000320,2594.229584,hint,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,177,0,7698.000320,1847.860208,hint,nbiot,180 +on4,0,0,24,1,0,273,4320.000000,177,1,5693.000320,1915.850624,hint,nbiot,180 +on9,0,0,26,1,0,1414,4680.000000,177,2,30508.000960,2278.899376,hint,nbiot,180 +on5,0,0,26,1,0,1836,4680.000000,177,2,34327.600960,1961.959584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,177,0,-1.000000,2040.004576,hint,nbiot,180 +on1,0,0,26,1,0,1382,4680.000000,177,2,30468.000320,2259.659792,hint,nbiot,180 +on11,0,0,25,1,0,653,4500.000000,177,1,14081.000320,1887.750416,hint,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,177,0,16517.000320,2000.869792,hint,nbiot,180 +on10,0,0,26,1,0,673,4680.000000,178,2,14783.000640,2135.249584,hint,nbiot,180 +on1,0,0,24,1,0,287,4320.000000,178,0,4637.000320,2038.568960,hint,nbiot,180 +on3,0,0,25,1,0,1727,4500.000000,178,1,33905.000320,1923.500000,hint,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,178,0,4723.000320,1761.150208,hint,nbiot,180 +on2,0,0,25,1,0,1231,4500.000000,178,1,25291.000320,1969.000000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,178,0,-1.000000,2040.005824,hint,nbiot,180 +on7,0,0,26,1,0,1056,4680.000000,178,2,20431.000960,2052.698960,hint,nbiot,180 +on5,0,0,28,1,0,949,5040.000000,178,4,22342.000320,2562.714376,hint,nbiot,180 +on6,0,0,26,1,0,626,4680.000000,178,3,13156.000320,2166.255208,hint,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,178,0,13236.000320,1838.500000,hint,nbiot,180 +on8,0,0,24,1,0,387,4320.000000,178,0,10205.000320,1791.049792,hint,nbiot,180 +on11,0,0,26,1,0,737,4695.000000,178,4,20391.000320,2285.094584,hint,nbiot,180 +on4,0,0,27,1,0,1008,4860.000000,178,4,20471.601600,2127.495624,hint,nbiot,180 +on3,0,0,25,1,0,873,4500.000000,179,1,17319.000960,1890.999792,hint,nbiot,180 +on12,0,0,27,1,0,709,4914.000000,179,4,18776.600960,2405.845208,hint,nbiot,180 +on4,0,0,25,1,0,360,4500.000000,179,1,8490.000320,1928.310208,hint,nbiot,180 +on5,0,0,26,1,0,221,4680.000000,179,3,8401.600960,2378.220208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,179,0,-1.000000,2040.007488,hint,nbiot,180 +on9,0,0,24,1,0,22,4320.000000,179,0,3290.000320,2049.360624,hint,nbiot,180 +on1,0,0,25,1,0,332,4500.000000,179,1,5856.000320,1917.650416,hint,nbiot,180 +on8,0,0,25,1,0,498,4500.000000,179,1,12317.000320,2149.050000,hint,nbiot,180 +on2,0,0,26,1,0,662,4680.000000,179,3,18735.000320,2350.204168,hint,nbiot,180 +on11,0,0,25,1,0,896,4500.000000,179,1,17279.000320,1916.350208,hint,nbiot,180 +on7,0,0,26,1,0,720,4680.000000,179,2,17359.001600,2312.830416,hint,nbiot,180 +on10,0,0,24,1,0,401,4320.000000,179,0,8360.000320,1927.810416,hint,nbiot,180 +on6,0,0,24,1,0,3649,4320.000000,179,0,74230.000320,1813.150000,hint,nbiot,180 +on1,0,0,24,1,0,539,4320.000000,180,0,13129.000320,1986.960208,hint,nbiot,180 +on4,0,0,24,1,0,630,4320.000000,180,1,13057.000320,1787.800000,hint,nbiot,180 +on2,0,0,26,1,0,916,4680.000000,180,3,19288.601600,2016.040624,hint,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,180,0,5595.000320,1781.560208,hint,nbiot,180 +on3,0,0,26,1,0,537,4680.000000,180,3,9879.601600,2320.890624,hint,nbiot,180 +on7,0,0,24,1,0,125,4320.000000,180,0,3263.000320,1866.449584,hint,nbiot,180 +on10,0,0,26,1,0,936,4680.000000,180,2,19248.000960,1963.844584,hint,nbiot,180 +on8,0,0,24,1,0,423,4320.000000,180,0,9799.000320,1803.400000,hint,nbiot,180 +on6,0,0,26,1,0,693,4680.000000,180,2,16912.000320,2195.699792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,180,0,-1.000000,2047.154784,hint,nbiot,180 +on9,0,0,26,1,0,806,4680.000000,180,2,19208.000320,2266.029584,hint,nbiot,180 +on12,0,0,26,1,0,513,4680.000000,180,2,9839.000960,2151.564584,hint,nbiot,180 +on11,0,0,27,1,0,733,4863.000000,180,4,21697.000320,2553.793752,hint,nbiot,180 +on12,0,0,24,1,0,115,4320.000000,181,0,2694.000320,1770.900000,hint,nbiot,180 +on5,0,0,25,1,0,900,4500.000000,181,1,16960.000320,1916.610000,hint,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,181,0,2774.000320,1754.000416,hint,nbiot,180 +on4,0,0,25,1,0,540,4500.000000,181,1,11400.600640,1918.755208,hint,nbiot,180 +on1,0,0,26,1,0,1170,4680.000000,181,2,24161.001600,2082.860000,hint,nbiot,180 +on10,0,0,25,1,0,1767,4500.000000,181,1,35259.000320,1938.450000,hint,nbiot,180 +on11,0,0,25,1,0,1179,4500.000000,181,1,24121.000960,1969.649584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,181,0,-1.000000,2086.804576,hint,nbiot,180 +on9,0,0,25,1,0,1249,4595.000000,181,3,27554.000320,2020.844376,hint,nbiot,180 +on3,0,0,25,1,0,1487,4500.000000,181,1,30905.000320,2032.700000,hint,nbiot,180 +on7,0,0,24,1,0,1151,4320.000000,181,0,24081.000320,1805.350000,hint,nbiot,180 +on8,0,0,26,1,0,1058,4706.000000,181,3,27594.000960,2547.544584,hint,nbiot,180 +on6,0,0,26,1,0,875,4680.000000,181,2,17001.600960,2182.960208,hint,nbiot,180 +on8,0,0,25,1,0,1441,4500.000000,182,1,31746.600320,1971.600416,hint,nbiot,180 +on5,0,0,24,1,0,635,4320.000000,182,0,13934.000320,1807.950000,hint,nbiot,180 +on6,0,0,24,1,0,1143,4320.000000,182,0,23420.000320,1804.050000,hint,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,182,0,14048.000320,1804.960000,hint,nbiot,180 +on7,0,0,25,1,0,1273,4500.000000,182,1,27607.000320,2019.829792,hint,nbiot,180 +on4,0,0,26,1,0,1414,4680.000000,182,2,27648.600960,2135.900416,hint,nbiot,180 +on1,0,0,26,1,0,1139,4680.000000,182,3,23460.000960,2053.999376,hint,nbiot,180 +on12,0,0,25,1,0,1486,4500.000000,182,1,31684.000320,1915.960000,hint,nbiot,180 +on9,0,0,24,1,0,62,4320.000000,182,0,3101.000320,1992.809792,hint,nbiot,180 +on11,0,0,25,1,0,653,4500.000000,182,1,14446.000320,1908.550208,hint,nbiot,180 +on2,0,0,25,1,0,709,4500.000000,182,2,19131.000320,2234.265832,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,182,0,-1.000000,2064.054784,hint,nbiot,180 +on10,0,0,25,1,0,1800,4500.000000,182,1,39419.000320,1969.000000,hint,nbiot,180 +on12,0,0,24,1,0,1037,4320.000000,183,0,21246.000320,1754.000208,hint,nbiot,180 +on9,0,0,24,1,0,559,4320.000000,183,1,11742.000320,1847.210416,hint,nbiot,180 +on7,0,0,26,1,0,1954,4680.000000,183,2,39057.600960,1948.700208,hint,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,183,0,42524.000320,1907.660000,hint,nbiot,180 +on5,0,0,25,1,0,2173,4500.000000,183,1,46323.000320,1976.279792,hint,nbiot,180 +on8,0,0,25,1,0,1617,4500.000000,183,1,33652.000320,2177.909792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,183,0,-1.000000,2042.603952,hint,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,183,0,22928.000320,1870.350208,hint,nbiot,180 +on10,0,0,24,1,0,2160,4320.000000,183,0,46447.000320,1845.000000,hint,nbiot,180 +on1,0,0,24,1,0,370,4320.000000,183,0,7601.000320,1820.950208,hint,nbiot,180 +on2,0,0,24,1,0,258,4320.000000,183,0,5280.000320,1808.860624,hint,nbiot,180 +on11,0,0,25,1,0,1834,4500.000000,183,1,39016.000320,2038.289792,hint,nbiot,180 +on4,0,0,24,1,0,2050,4320.000000,183,0,42408.000320,1799.500000,hint,nbiot,180 +on9,0,0,27,1,0,1094,4860.000000,184,4,22494.000960,2126.844584,hint,nbiot,180 +on2,0,0,24,1,0,1935,4320.000000,184,0,36542.000320,1757.250000,hint,nbiot,180 +on7,0,0,25,1,0,900,4500.000000,184,1,19629.601600,1914.010416,hint,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,184,0,17521.000320,1868.660208,hint,nbiot,180 +on3,0,0,24,1,0,1367,4320.000000,184,0,26447.000320,1774.800000,hint,nbiot,180 +on1,0,0,24,1,0,189,4320.000000,184,0,6234.000320,1754.000208,hint,nbiot,180 +on10,0,0,25,1,0,1044,4500.000000,184,1,19503.000320,1915.959792,hint,nbiot,180 +on6,0,0,26,1,0,1348,4680.000000,184,2,29423.000320,2196.154584,hint,nbiot,180 +on4,0,0,27,1,0,1617,4860.000000,184,3,34682.000320,2358.699584,hint,nbiot,180 +on12,0,0,27,1,0,1187,4860.000000,184,4,29464.600960,2501.570000,hint,nbiot,180 +on11,0,0,26,1,0,1057,4680.000000,184,2,19544.600960,2249.519376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,184,0,-1.000000,2040.004368,hint,nbiot,180 +on8,0,0,24,1,0,1085,4320.000000,184,0,22454.000320,1957.450000,hint,nbiot,180 +on10,0,0,24,1,0,2026,4320.000000,185,0,42643.000320,1931.450000,hint,nbiot,180 +on2,0,0,24,1,0,24,4320.000000,185,0,1938.000320,1985.919376,hint,nbiot,180 +on3,0,0,26,1,0,640,4680.000000,185,2,14101.000640,2187.444792,hint,nbiot,180 +on4,0,0,25,1,0,805,4500.000000,185,2,16220.000320,1941.700000,hint,nbiot,180 +on9,0,0,25,1,0,1904,4500.000000,185,1,38192.000320,1979.270208,hint,nbiot,180 +on11,0,0,26,1,0,152,4680.000000,185,3,5745.600640,2247.700624,hint,nbiot,180 +on8,0,0,26,1,0,922,4680.000000,185,2,19454.000320,2196.544792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,185,0,-1.000000,2075.105408,hint,nbiot,180 +on12,0,0,24,1,0,886,4320.000000,185,0,19524.000320,1763.750208,hint,nbiot,180 +on5,0,0,25,1,0,571,4500.000000,185,1,14181.601920,1978.750208,hint,nbiot,180 +on7,0,0,26,1,0,720,4680.000000,185,3,14141.601280,2075.904584,hint,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,185,0,16298.000320,1754.000208,hint,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,185,0,16358.000320,1754.000208,hint,nbiot,180 +on3,0,0,25,1,0,419,4637.000000,186,2,9918.000960,2135.600416,hint,nbiot,180 +on9,0,0,24,1,0,213,4320.000000,186,0,5565.000320,1929.370208,hint,nbiot,180 +on12,0,0,25,1,0,823,4500.000000,186,1,17834.000320,2116.550416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,186,0,-1.000000,2014.009360,hint,nbiot,180 +on6,0,0,26,1,0,806,4680.000000,186,3,18848.000320,2105.350208,hint,nbiot,180 +on2,0,0,25,1,0,259,4500.000000,186,1,5606.600960,1891.000000,hint,nbiot,180 +on5,0,0,24,1,0,94,4320.000000,186,0,2319.000320,1949.910416,hint,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,186,0,12208.000320,2305.461456,hint,nbiot,180 +on1,0,0,25,1,0,415,4500.000000,186,1,9958.001600,2050.251040,hint,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,hint,nbiot,180 +on11,0,0,25,1,0,473,4500.000000,186,1,9878.000320,1889.049792,hint,nbiot,180 +on4,0,0,26,1,0,514,4680.000000,186,2,12108.000320,2197.195416,hint,nbiot,180 +on10,0,0,24,1,0,2453,4393.000000,186,1,52193.000320,2009.400416,hint,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,hint,nbiot,180 +on8,0,0,26,1,0,366,4783.000000,187,3,10623.000960,2415.454584,hint,nbiot,180 +on10,0,0,24,1,0,309,4320.000000,187,0,6904.000320,1759.460208,hint,nbiot,180 +on12,0,0,25,1,0,1553,4500.000000,187,2,35596.000320,2208.850208,hint,nbiot,180 +on9,0,0,26,1,0,156,4680.000000,187,3,10583.000320,2392.650416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,187,0,-1.000000,2014.008112,hint,nbiot,180 +on3,0,0,24,1,0,4140,4320.000000,187,0,84969.000000,1754.000000,hint,nbiot,180 +on4,0,0,26,1,0,359,4680.000000,187,2,6984.400640,2037.750000,hint,nbiot,180 +on11,0,0,25,1,0,684,4500.000000,187,1,11812.000320,2254.610000,hint,nbiot,180 +on2,0,0,28,1,0,428,5040.000000,187,4,11853.600960,2643.185208,hint,nbiot,180 +on7,0,0,25,1,0,231,4500.000000,187,1,6944.000960,1996.950416,hint,nbiot,180 +on6,0,0,24,1,0,136,4320.000000,187,0,1995.000320,1795.210416,hint,nbiot,180 +on5,0,0,24,1,0,1446,4320.000000,187,0,30304.000320,1754.000416,hint,nbiot,180 +on5,0,0,27,1,0,632,4860.000000,188,3,16992.000320,2367.865000,hint,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,188,0,40103.000320,1809.900000,hint,nbiot,180 +on3,0,0,26,1,0,394,4680.000000,188,2,9900.400640,2504.255000,hint,nbiot,180 +on1,0,0,25,1,0,513,4500.000000,188,1,9860.000960,1955.090208,hint,nbiot,180 +on9,0,0,25,1,0,3364,4500.000000,188,1,67428.000320,2037.250000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,188,0,-1.000000,2048.067904,hint,nbiot,180 +on11,0,0,25,1,0,0,4500.000000,188,1,2427.600640,2007.025416,hint,nbiot,180 +on10,0,0,25,1,0,745,4500.000000,188,2,17116.600960,2132.345416,hint,nbiot,180 +on12,0,0,27,1,0,503,5022.000000,188,5,17076.000320,2830.790000,hint,nbiot,180 +on6,0,0,26,1,0,576,4680.000000,188,3,13959.000320,2181.724584,hint,nbiot,180 +on2,0,0,25,1,0,223,4500.000000,188,1,4666.000320,2133.514792,hint,nbiot,180 +on7,0,0,24,1,0,464,4320.000000,188,0,9820.000320,1820.560208,hint,nbiot,180 +on4,0,0,26,1,0,564,4680.000000,188,2,9940.401280,2014.350416,hint,nbiot,180 +on2,0,0,27,1,0,739,4860.000000,189,3,16495.000960,2452.299376,hint,nbiot,180 +on11,0,0,24,1,0,1462,4320.000000,189,0,31372.000320,1886.600000,hint,nbiot,180 +on7,0,0,25,1,0,579,4500.000000,189,1,12517.000960,1949.759792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,189,0,-1.000000,2063.405408,hint,nbiot,180 +on6,0,0,25,1,0,729,4500.000000,189,1,16455.000320,2108.490000,hint,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,189,0,2870.000320,1754.260416,hint,nbiot,180 +on5,0,0,27,1,0,213,4860.000000,189,4,7751.600960,2420.970208,hint,nbiot,180 +on10,0,0,26,1,0,358,4680.000000,189,3,7710.000320,2182.699376,hint,nbiot,180 +on3,0,0,26,1,0,358,4680.000000,189,2,6625.001600,2105.155208,hint,nbiot,180 +on4,0,0,24,1,0,198,4320.000000,189,0,6545.000320,1832.650000,hint,nbiot,180 +on9,0,0,26,1,0,815,4680.000000,189,2,19409.000320,2219.489792,hint,nbiot,180 +on12,0,0,25,1,0,333,4500.000000,189,1,6585.000960,1890.999584,hint,nbiot,180 +on8,0,0,25,1,0,508,4500.000000,189,1,12477.000320,2032.700000,hint,nbiot,180 +on11,0,0,25,1,0,485,4500.000000,190,1,11232.000320,2030.749792,hint,nbiot,180 +on8,0,0,25,1,0,1037,4563.000000,190,2,18801.000320,2089.749792,hint,nbiot,180 +on10,0,0,24,1,0,1540,4320.000000,190,0,32057.000320,1882.310000,hint,nbiot,180 +on7,0,0,25,1,0,180,4500.000000,190,1,5120.600640,2067.475416,hint,nbiot,180 +on3,0,0,25,1,0,202,4500.000000,190,1,7476.000320,2135.659792,hint,nbiot,180 +on12,0,0,25,1,0,1661,4500.000000,190,2,33319.000320,2110.050000,hint,nbiot,180 +on9,0,0,25,1,0,207,4500.000000,190,1,5162.201280,2073.260208,hint,nbiot,180 +on4,0,0,26,1,0,809,4680.000000,190,2,18702.000960,2207.853544,hint,nbiot,180 +on2,0,0,25,1,0,548,4500.000000,190,1,16134.000320,2226.334584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,190,0,-1.000000,2075.624576,hint,nbiot,180 +on1,0,0,27,1,0,803,4860.000000,190,6,18662.000320,2242.349584,hint,nbiot,180 +on6,0,0,26,1,0,679,4680.000000,190,2,16175.600960,1962.999792,hint,nbiot,180 +on5,0,0,25,1,0,1041,4500.000000,190,2,23194.000320,2062.470000,hint,nbiot,180 +on7,0,0,25,1,0,527,4500.000000,191,1,8629.000320,2007.610208,hint,nbiot,180 +on11,0,0,25,1,0,659,4500.000000,191,1,12813.000320,2097.049792,hint,nbiot,180 +on8,0,0,25,1,0,954,4628.000000,191,2,19066.000320,2278.509792,hint,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,hint,nbiot,180 +on4,0,0,25,1,0,2093,4500.000000,191,1,40793.000320,1917.000208,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,191,0,-1.000000,2014.008736,hint,nbiot,180 +on5,0,0,24,1,0,312,4320.000000,191,0,3786.000320,1869.310624,hint,nbiot,180 +on10,0,0,24,1,0,2550,4320.000000,191,0,52119.000320,1825.500000,hint,nbiot,180 +on2,0,0,26,1,0,528,4680.000000,191,3,12854.600960,2260.570832,hint,nbiot,180 +on9,0,0,24,1,0,832,4320.000000,191,0,17612.000320,1932.100416,hint,nbiot,180 +on12,0,0,27,1,0,953,5002.000000,191,4,23919.000320,2915.350000,hint,nbiot,180 +on3,0,0,24,1,0,728,4320.000000,191,0,17652.000960,1839.799792,hint,nbiot,180 +on1,0,0,27,1,0,855,4860.000000,191,3,19107.600960,2224.800416,hint,nbiot,180 +on7,0,0,26,1,0,1887,4680.000000,192,2,40709.000320,2126.800208,hint,nbiot,180 +on12,0,0,24,1,0,220,4320.000000,192,1,5732.200320,1811.330208,hint,nbiot,180 +on9,0,0,25,1,0,1849,4625.000000,192,3,44293.000320,2247.930208,hint,nbiot,180 +on8,0,0,24,1,0,4087,4320.000000,192,0,81525.000320,1839.800000,hint,nbiot,180 +on6,0,0,24,1,0,104,4320.000000,192,0,967.000320,1997.100624,hint,nbiot,180 +on4,0,0,26,1,0,1696,4680.000000,192,3,35709.000320,2373.149376,hint,nbiot,180 +on5,0,0,24,1,0,1664,4320.000000,192,0,35627.000320,1874.250624,hint,nbiot,180 +on2,0,0,25,1,0,1645,4500.000000,192,2,35749.600960,2004.554792,hint,nbiot,180 +on10,0,0,24,1,0,1491,4320.000000,192,0,31029.000320,2021.150208,hint,nbiot,180 +on3,0,0,24,1,0,1865,4320.000000,192,0,38847.000320,1802.100832,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,192,0,-1.000000,2059.636864,hint,nbiot,180 +on11,0,0,25,1,0,349,4500.000000,192,2,8260.000320,1875.074792,hint,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,192,0,38949.000320,1908.700416,hint,nbiot,180 +on9,0,0,26,1,0,1199,4680.000000,193,2,28551.000320,2203.825000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,193,0,-1.000000,2079.006448,hint,nbiot,180 +on8,0,0,25,1,0,1188,4500.000000,193,1,25057.000320,2095.945416,hint,nbiot,180 +on6,0,0,26,1,0,906,4680.000000,193,2,15238.600960,2355.469168,hint,nbiot,180 +on12,0,0,25,1,0,699,4500.000000,193,1,15291.000320,2155.550000,hint,nbiot,180 +on10,0,0,25,1,0,1407,4536.000000,193,2,28591.000960,1986.650416,hint,nbiot,180 +on3,0,0,25,1,0,697,4500.000000,193,1,15197.000320,2033.220000,hint,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,193,0,9679.000320,1985.660624,hint,nbiot,180 +on11,0,0,26,1,0,974,4680.000000,193,2,18753.000960,2198.495000,hint,nbiot,180 +on4,0,0,25,1,0,2843,4500.000000,193,1,56650.000320,1917.000000,hint,nbiot,180 +on1,0,0,25,1,0,833,4500.000000,193,1,18713.000320,2127.210416,hint,nbiot,180 +on5,0,0,27,1,0,1313,4860.000000,193,3,30034.000320,2402.899584,hint,nbiot,180 +on2,0,0,25,1,0,690,4597.000000,193,3,13381.600960,1987.455416,hint,nbiot,180 +on12,0,0,26,1,0,803,4680.000000,194,3,16981.601600,2087.345832,hint,nbiot,180 +on11,0,0,26,1,0,522,4680.000000,194,3,10282.601600,2273.310624,hint,nbiot,180 +on4,0,0,25,1,0,293,4500.000000,194,1,4608.000320,1939.230208,hint,nbiot,180 +on10,0,0,26,1,0,514,4680.000000,194,2,10926.000320,2079.349584,hint,nbiot,180 +on8,0,0,25,1,0,486,4500.000000,194,1,10202.000320,1927.270000,hint,nbiot,180 +on6,0,0,25,1,0,975,4500.000000,194,1,20792.000320,2186.750000,hint,nbiot,180 +on1,0,0,24,1,0,48,4320.000000,194,0,2243.000320,1834.210208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,194,0,-1.000000,2070.554784,hint,nbiot,180 +on2,0,0,27,1,0,953,4860.000000,194,3,20832.000960,2306.959376,hint,nbiot,180 +on3,0,0,25,1,0,804,4500.000000,194,1,16901.000320,1917.195000,hint,nbiot,180 +on7,0,0,24,1,0,1507,4320.000000,194,0,29057.000320,1898.300000,hint,nbiot,180 +on9,0,0,26,1,0,416,4680.000000,194,2,10242.000960,2181.074792,hint,nbiot,180 +on5,0,0,26,1,0,866,4680.000000,194,2,16941.000960,2287.349376,hint,nbiot,180 +on9,0,0,26,1,0,2097,4680.000000,195,3,45732.000320,2219.490416,hint,nbiot,180 +on10,0,0,24,1,0,436,4320.000000,195,0,8135.000320,1975.910624,hint,nbiot,180 +on5,0,0,26,1,0,868,4680.000000,195,4,20776.000320,2317.964376,hint,nbiot,180 +on1,0,0,25,1,0,873,4500.000000,195,1,17709.000960,2007.350000,hint,nbiot,180 +on7,0,0,24,1,0,370,4445.000000,195,2,11902.000320,2259.650000,hint,nbiot,180 +on12,0,0,24,0,0,4318,4320.000000,195,0,-1.000000,1729.950000,hint,nbiot,180 +on11,0,0,25,1,0,842,4500.000000,195,1,17669.000320,2091.850208,hint,nbiot,180 +on3,0,0,26,1,0,804,4680.000000,195,2,17749.001600,2136.160208,hint,nbiot,180 +on8,0,0,26,1,0,796,4680.000000,195,2,20817.600960,2397.200832,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,195,0,-1.000000,2032.858528,hint,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,195,1,20877.600640,1924.105416,hint,nbiot,180 +on6,0,0,25,1,0,1987,4500.000000,195,1,42997.000320,1963.800416,hint,nbiot,180 +on4,0,0,24,1,0,1914,4320.000000,195,0,39065.000320,1887.250208,hint,nbiot,180 +on3,0,0,24,1,0,209,4320.000000,196,0,4212.000320,2050.399792,hint,nbiot,180 +on10,0,0,26,1,0,372,4680.000000,196,3,7942.600960,2148.120000,hint,nbiot,180 +on9,0,0,25,1,0,356,4500.000000,196,1,7901.000320,2035.559376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,196,0,-1.000000,2074.066240,hint,nbiot,180 +on12,0,0,25,1,0,474,4500.000000,196,1,11421.000320,1956.390208,hint,nbiot,180 +on4,0,0,28,1,0,675,5040.000000,196,4,24205.000320,2858.983336,hint,nbiot,180 +on11,0,0,25,1,0,697,4500.000000,196,1,16989.000960,2163.740000,hint,nbiot,180 +on2,0,0,28,1,0,595,5040.000000,196,5,17029.400640,2519.098752,hint,nbiot,180 +on7,0,0,27,1,0,579,4860.000000,196,3,20281.000320,2568.193960,hint,nbiot,180 +on8,0,0,25,1,0,379,4500.000000,196,1,7982.601600,2078.718960,hint,nbiot,180 +on5,0,0,28,1,0,2357,5117.000000,196,6,55771.000320,2898.949376,hint,nbiot,180 +on6,0,0,25,1,0,694,4500.000000,196,1,11461.000960,2007.349584,hint,nbiot,180 +on1,0,0,24,1,0,630,4371.000000,196,1,16949.000320,1942.880416,hint,nbiot,180 +on6,0,0,25,1,0,2574,4500.000000,197,1,53419.000320,1915.700208,hint,nbiot,180 +on10,0,0,25,1,0,680,4500.000000,197,1,12325.000320,2033.350624,hint,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,hint,nbiot,180 +on11,0,0,24,1,0,938,4320.000000,197,0,18641.000320,1986.700208,hint,nbiot,180 +on7,0,0,25,1,0,1526,4500.000000,197,1,29898.000320,1943.845208,hint,nbiot,180 +on1,0,0,25,1,0,1292,4500.000000,197,1,28557.000320,1852.910416,hint,nbiot,180 +on4,0,0,24,1,0,1671,4320.000000,197,0,32913.000320,1767.650416,hint,nbiot,180 +on3,0,0,25,1,0,376,4500.000000,197,1,10290.600320,1826.000624,hint,nbiot,180 +on9,0,0,27,1,0,1611,4860.000000,197,5,36695.000320,3007.790000,hint,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,197,0,10250.000320,1906.360416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,197,0,-1.000000,2052.616448,hint,nbiot,180 +on5,0,0,25,1,0,180,4500.000000,197,1,6251.600640,2001.305832,hint,nbiot,180 +on12,0,0,24,1,0,36,4320.000000,197,0,1853.000320,1792.350416,hint,nbiot,180 +on2,0,0,27,1,0,602,4860.000000,198,3,14904.000320,2241.049376,hint,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,198,0,3039.000320,1788.059792,hint,nbiot,180 +on9,0,0,28,1,0,527,5040.000000,198,4,11980.000960,2497.193752,hint,nbiot,180 +on4,0,0,25,1,0,215,4500.000000,198,1,4549.401280,1890.999584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,198,0,-1.000000,2040.004784,hint,nbiot,180 +on3,0,0,25,1,0,114,4500.000000,198,1,4429.000320,2134.814792,hint,nbiot,180 +on11,0,0,24,1,0,842,4483.000000,198,1,19080.200320,2014.069792,hint,nbiot,180 +on7,0,0,25,1,0,154,4500.000000,198,1,4469.000960,2123.440000,hint,nbiot,180 +on6,0,0,27,1,0,639,4860.000000,198,4,12020.601600,2119.890624,hint,nbiot,180 +on12,0,0,26,1,0,425,4680.000000,198,2,4509.400640,1936.740000,hint,nbiot,180 +on10,0,0,25,1,0,402,4500.000000,198,1,9597.000960,2006.699584,hint,nbiot,180 +on8,0,0,27,1,0,423,4860.000000,198,3,11940.000320,2241.244584,hint,nbiot,180 +on1,0,0,24,1,0,98,4483.000000,198,4,9557.000320,2278.490000,hint,nbiot,180 +on9,0,0,25,1,0,634,4500.000000,199,1,11762.600640,2102.055832,hint,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,199,0,6466.000320,1979.160624,hint,nbiot,180 +on8,0,0,25,1,0,1106,4500.000000,199,2,22293.601920,1974.199376,hint,nbiot,180 +on12,0,0,25,1,0,1061,4690.000000,199,4,22253.001280,2082.244376,hint,nbiot,180 +on6,0,0,25,1,0,539,4500.000000,199,1,10590.000320,1942.350208,hint,nbiot,180 +on10,0,0,25,1,0,2520,4500.000000,199,1,49551.000320,1917.000000,hint,nbiot,180 +on11,0,0,25,1,0,802,4500.000000,199,1,15577.000960,2184.669168,hint,nbiot,180 +on1,0,0,25,1,0,1139,4500.000000,199,1,27988.000320,2091.589792,hint,nbiot,180 +on2,0,0,26,1,0,849,4680.000000,199,2,15640.000320,2261.350624,hint,nbiot,180 +on4,0,0,24,1,0,794,4323.000000,199,1,21264.000320,1873.500000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,199,0,-1.000000,2113.716864,hint,nbiot,180 +on7,0,0,24,1,0,793,4320.000000,199,0,15537.000320,1852.150416,hint,nbiot,180 +on3,0,0,26,1,0,1078,4680.000000,199,2,22212.000320,2286.049792,hint,nbiot,180 +on6,0,0,25,1,0,1074,4500.000000,200,1,20226.000320,1851.999792,hint,nbiot,180 +on4,0,0,26,1,0,375,4680.000000,200,2,11775.000320,2196.544792,hint,nbiot,180 +on9,0,0,25,1,0,2761,4500.000000,200,1,58628.000320,2041.799584,hint,nbiot,180 +on1,0,0,25,1,0,834,4500.000000,200,1,16001.000320,1941.310416,hint,nbiot,180 +on8,0,0,25,1,0,13,4500.000000,200,2,4576.000320,2050.250416,hint,nbiot,180 +on11,0,0,24,1,0,377,4320.000000,200,0,8518.000320,2000.610208,hint,nbiot,180 +on10,0,0,25,1,0,368,4615.000000,200,2,8559.600960,2234.700416,hint,nbiot,180 +on2,0,0,24,1,0,2700,4320.000000,200,0,55798.000320,2072.110416,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,200,0,-1.000000,2014.006448,hint,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,hint,nbiot,180 +on5,0,0,24,1,0,3310,4320.000000,200,0,66154.000320,1754.000208,hint,nbiot,180 +on12,0,0,25,1,0,900,4500.000000,200,2,22026.000320,2124.350208,hint,nbiot,180 +on3,0,0,24,1,0,111,4320.000000,200,0,3372.000320,2131.520208,hint,nbiot,180 +on6,0,0,24,1,0,474,4320.000000,1,0,8298.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,210,4320.000000,1,0,4438.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,1,0,18289.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,1,0,18340.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4386.000000,1,0,-1.000000,2040.400000,extended,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,1,0,22636.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3215,4335.000000,1,0,64154.000000,1760.000000,extended,nbiot,180 +on1,0,0,24,1,0,773,4320.000000,1,0,16300.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,367,4320.000000,1,0,8258.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,1,0,29232.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,314,4320.000000,1,0,4398.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2160,4320.000000,1,0,44153.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,859,4320.000000,2,0,16377.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,117,4320.000000,2,0,2963.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,995,4320.000000,2,0,20058.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2125,4325.000000,2,0,42747.000000,1756.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,2160,4320.000000,2,0,45809.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,2,0,20218.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,509,4329.000000,2,0,7488.000000,1757.600000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,2,0,3017.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2880,4320.000000,2,0,59869.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4340.000000,2,0,-1.000000,2022.000000,extended,nbiot,180 +on10,0,0,24,1,0,3060,4320.000000,2,0,62155.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2340,4320.000000,2,0,48781.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,3,0,22578.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4333.000000,3,0,-1.000000,2019.200000,extended,nbiot,180 +on4,0,0,24,1,0,421,4320.000000,3,0,9711.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,3,0,16412.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,63,4320.000000,3,0,1228.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,486,4320.000000,3,0,9751.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,478,4320.000000,3,0,9791.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,37,4320.000000,3,0,1268.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,3,0,18857.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,580,4320.000000,3,0,14105.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,3,0,18969.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3388,4328.000000,3,0,66019.000000,1757.200000,extended,nbiot,180 +on12,0,0,24,1,0,564,4320.000000,4,0,10864.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,4,0,56127.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,4,0,10356.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2880,4320.000000,4,0,59189.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2181,4320.000000,4,0,45809.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,4,0,10974.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,4,0,17721.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,4,0,1028.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1067,4347.000000,4,0,18371.000000,1764.800000,extended,nbiot,180 +on4,0,0,24,1,0,2964,4320.000000,4,0,59143.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4345.000000,4,0,-1.000000,2050.000000,extended,nbiot,180 +on8,0,0,24,1,0,12,4320.000000,4,0,988.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,4,0,1070.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,59,4320.000000,5,0,2108.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4334.000000,5,0,-1.000000,2045.600000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,5,0,14255.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,17,4320.000000,5,0,2148.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,171,4351.000000,5,0,2188.000000,1766.400000,extended,nbiot,180 +on3,0,0,24,1,0,1518,4320.000000,5,0,32046.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,5,0,2262.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,199,4320.000000,5,0,5256.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,768,4320.000000,5,0,16227.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,5,0,16320.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,5,0,35378.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2154,4354.000000,5,0,42141.000000,1767.600000,extended,nbiot,180 +on4,0,0,24,1,0,1553,4320.000000,5,0,32006.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,6,0,41254.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1177,4320.000000,6,0,24399.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,651,4320.000000,6,0,11662.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1620,4320.000000,6,0,33123.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1116,4320.000000,6,0,24439.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,930,4320.000000,6,0,20100.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4341.000000,6,0,-1.000000,2048.400000,extended,nbiot,180 +on2,0,0,24,1,0,3060,4320.000000,6,0,63178.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,6,0,17799.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,6,0,29016.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,28,4320.000000,6,0,2582.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,6,0,24484.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,193,4320.000000,6,0,3899.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,7,0,21453.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1554,4320.000000,7,0,32197.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3600,4320.000000,7,0,72378.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3240,4320.000000,7,0,67292.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2181,4320.000000,7,0,43827.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,299,4320.000000,7,0,4879.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,16,4320.000000,7,0,330.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,950,4320.000000,7,0,21334.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,282,4320.000000,7,0,4919.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1154,4320.000000,7,0,22394.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,7,0,5016.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1579,4320.000000,7,0,32157.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,7,0,-1.000000,2040.000000,extended,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,8,0,14839.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,547,4320.000000,8,0,13260.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,277,4320.000000,8,0,5471.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,626,4320.000000,8,0,13340.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4388.000000,8,0,-1.000000,2067.200000,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,8,0,20294.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1297,4320.000000,8,0,28655.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3847,4320.000000,8,0,78398.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2729,4320.000000,8,0,56251.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,156,4336.000000,8,0,1736.000000,1760.400000,extended,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,8,0,59194.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3,4320.000000,8,0,1696.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,716,4356.000000,8,0,13300.000000,1768.400000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,9,0,2188.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,815,4320.000000,9,0,17299.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,41,4320.000000,9,0,2056.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,9,0,2110.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2340,4320.000000,9,0,48527.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,9,0,9879.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,9,0,11448.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,8,24,0,0,0,4371.000000,9,0,-1.000000,1956.400000,extended,nbiot,180 +on9,0,0,24,1,0,3960,4320.000000,9,0,81706.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1025,4320.000000,10,0,20426.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1237,4337.000000,10,0,23368.000000,1760.800000,extended,nbiot,180 +on5,0,0,24,1,0,2724,4320.000000,10,0,54743.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,120,4320.000000,10,0,1976.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,671,4320.000000,10,0,13395.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1914,4320.000000,10,0,36898.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,10,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,10,0,5313.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,10,0,44998.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4336.000000,10,0,-1.000000,1994.400000,extended,nbiot,180 +on6,0,0,24,1,0,729,4320.000000,10,0,14735.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,10,0,2132.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,11,0,5886.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,11,0,62415.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,3719,4320.000000,11,0,74748.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,11,0,-1.000000,1988.000000,extended,nbiot,180 +on1,0,0,24,1,0,876,4336.000000,11,0,16957.000000,1760.400000,extended,nbiot,180 +on6,0,0,24,1,0,374,4320.000000,11,0,9017.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2210,4320.000000,11,0,46306.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,427,4320.000000,11,0,8977.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,11,0,51606.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,11,0,9062.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1416,4336.000000,11,0,27398.000000,1760.400000,extended,nbiot,180 +on11,0,0,24,1,0,2264,4320.000000,12,0,46141.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,12,0,21097.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,12,0,1130.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,935,4320.000000,12,0,21137.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,4254,4320.000000,12,0,84130.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,4173,4320.000000,12,0,84090.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4340.000000,12,0,-1.000000,2048.000000,extended,nbiot,180 +on7,0,0,24,1,0,448,4320.000000,12,0,7890.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1901,4320.000000,12,0,38637.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,663,4320.000000,12,0,13741.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,12,0,23079.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,61,4320.000000,12,0,1071.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,559,4320.000000,12,0,13781.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4360.000000,13,0,-1.000000,2004.000000,extended,nbiot,180 +on2,0,0,24,1,0,17,4320.000000,13,0,2398.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1110,4320.000000,13,0,23313.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,155,4335.000000,13,0,2358.000000,1760.000000,extended,nbiot,180 +on5,0,0,24,1,0,1155,4320.000000,13,0,23273.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,13,0,57965.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2397,4320.000000,13,0,47475.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,13,0,53600.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3408,4348.000000,13,0,65280.000000,1765.200000,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,13,0,11998.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2880,4320.000000,13,0,58108.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,775,4320.000000,14,0,14810.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,14,0,8652.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,68,4320.000000,14,0,2943.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,14,0,37924.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,14,0,47913.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,14,0,3031.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,14,0,59912.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,14,0,19428.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,75,4320.000000,14,0,2903.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4339.000000,14,0,-1.000000,2021.600000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,14,0,22106.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,37,4320.000000,14,0,2983.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4341.000000,15,0,-1.000000,2048.400000,extended,nbiot,180 +on11,0,0,24,1,0,993,4320.000000,15,0,19024.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1217,4320.000000,15,0,24912.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1651,4320.000000,15,0,32905.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,15,0,25023.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,275,4320.000000,15,0,5851.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,15,0,13506.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,15,0,55075.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,15,0,5915.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,611,4320.000000,15,0,13464.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3431,4320.000000,15,0,68985.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,15,0,17832.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,15,0,19069.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,16,0,2810.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,16,0,4431.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,23,4320.000000,16,0,2850.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,16,0,16011.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1795,4355.000000,16,0,35356.000000,1768.000000,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,16,0,18456.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4336.000000,16,0,-1.000000,2046.400000,extended,nbiot,180 +on9,0,0,24,1,0,3254,4320.000000,16,0,66290.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3138,4320.000000,16,0,61873.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,16,0,21729.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,16,0,4501.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,26,4320.000000,16,0,2707.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,16,0,21843.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2120,4320.000000,17,0,41502.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,117,4320.000000,17,0,1670.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,17,0,-1.000000,2014.000000,extended,nbiot,180 +on5,0,0,24,1,0,864,4324.000000,17,0,16324.000000,1755.600000,extended,nbiot,180 +on4,0,0,24,1,0,758,4320.000000,17,0,16364.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,595,4320.000000,17,0,12657.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,17,0,37626.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,514,4334.000000,17,0,8691.000000,1759.600000,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,17,0,33114.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,903,4320.000000,17,0,21359.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1490,4320.000000,17,0,30202.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,17,0,25820.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,611,4320.000000,18,0,13010.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1401,4321.000000,18,0,25697.000000,1754.400000,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,18,0,544.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4365.000000,18,0,-1.000000,2032.000000,extended,nbiot,180 +on1,0,0,24,1,0,4140,4320.000000,18,0,84226.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2700,4320.000000,18,0,57342.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,859,4320.000000,18,0,15719.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,472,4320.000000,18,0,8934.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1145,4320.000000,18,0,22542.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,590,4320.000000,18,0,13050.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,354,4354.000000,18,0,3990.000000,1767.600000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,18,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,3060,4320.000000,18,0,62326.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2628,4320.000000,19,0,52323.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,285,4320.000000,19,0,5593.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,181,4320.000000,19,0,5633.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1610,4350.000000,19,0,29806.000000,1766.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,19,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1606,4346.000000,19,0,29766.000000,1764.400000,extended,nbiot,180 +on9,0,0,24,1,0,2836,4320.000000,19,0,55504.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,19,0,5771.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2452,4320.000000,19,0,49532.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1915,4320.000000,19,0,36382.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4362.000000,19,0,-1.000000,2030.800000,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,19,0,3064.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2036,4320.000000,19,0,39940.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,20,0,8140.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2700,4320.000000,20,0,56187.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,541,4320.000000,20,0,12874.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,800,4320.000000,20,0,14844.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,20,0,12962.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,546,4320.000000,20,0,12914.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,20,0,4765.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4337.000000,20,0,-1.000000,2020.800000,extended,nbiot,180 +on4,0,0,24,1,0,512,4332.000000,20,0,8023.000000,1758.800000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,20,0,26028.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,389,4320.000000,20,0,8180.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2730,4320.000000,20,0,56072.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2471,4320.000000,21,0,50146.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3780,4320.000000,21,0,78603.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1835,4320.000000,21,0,39188.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,541,4320.000000,21,0,12201.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,21,0,8526.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1323,4320.000000,21,0,28118.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1935,4320.000000,21,0,39228.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,134,4320.000000,21,0,705.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1284,4320.000000,21,0,28158.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,21,0,21061.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,114,4320.000000,21,0,745.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4326.000000,21,0,-1.000000,2042.400000,extended,nbiot,180 +on3,0,0,24,1,0,2355,4320.000000,21,0,50186.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,231,4320.000000,22,0,5973.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3600,4320.000000,22,0,75105.000000,1754.000000,extended,nbiot,180 +on0,1,8,24,0,0,0,4354.000000,22,0,-1.000000,1949.600000,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,22,0,9145.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,22,0,31273.000000,1754.000000,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,1,4320.000000,22,0,842.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,787,4320.000000,22,0,15167.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,22,0,9213.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,22,0,51779.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,23,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,23,0,41500.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3150,4320.000000,23,0,62738.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,36,4320.000000,23,0,3494.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1148,4320.000000,23,0,24958.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,23,0,8012.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4331.000000,23,0,-1.000000,2018.400000,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,23,0,33161.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,149,4329.000000,23,0,3454.000000,1757.600000,extended,nbiot,180 +on12,0,0,24,1,0,3703,4320.000000,23,0,72485.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,23,0,8134.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1871,4320.000000,23,0,37786.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1440,4320.000000,23,0,29951.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1347,4320.000000,24,0,26779.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,353,4353.000000,24,0,5804.000000,1767.200000,extended,nbiot,180 +on8,0,0,24,1,0,545,4320.000000,24,0,11841.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,24,0,-1.000000,2040.000000,extended,nbiot,180 +on7,0,0,24,1,0,208,4320.000000,24,0,5844.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3960,4320.000000,24,0,80084.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,747,4320.000000,24,0,15498.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,25,4320.000000,24,0,1232.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2160,4320.000000,24,0,46390.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,24,0,23034.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,600,4320.000000,24,0,11881.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,24,0,7558.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3247,4320.000000,24,0,66637.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,25,0,30586.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,372,4320.000000,25,0,8747.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,25,0,-1.000000,2014.000000,extended,nbiot,180 +on2,0,0,24,1,0,2802,4320.000000,25,0,57320.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,25,0,1391.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,25,0,8799.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1328,4320.000000,25,0,28143.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3358,4320.000000,25,0,67655.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1080,4320.000000,25,0,23945.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,369,4320.000000,25,0,8667.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,25,0,23894.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,515,4335.000000,25,0,8707.000000,1760.000000,extended,nbiot,180 +on4,0,0,24,1,0,1098,4320.000000,26,0,21907.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4377.000000,26,0,-1.000000,2062.800000,extended,nbiot,180 +on8,0,0,24,1,0,418,4320.000000,26,0,9577.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,26,0,9635.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2293,4320.000000,26,0,46353.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,4054,4320.000000,26,0,80380.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,26,0,16806.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,26,0,1591.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,26,0,6855.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,610,4320.000000,26,0,14051.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1387,4320.000000,26,0,25808.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,26,0,25975.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,26,0,16760.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,27,0,29123.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,27,0,12479.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4358.000000,27,0,-1.000000,2055.200000,extended,nbiot,180 +on10,0,0,24,1,0,181,4320.000000,27,0,3957.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,27,0,12557.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3285,4320.000000,27,0,66273.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,27,0,2535.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1162,4320.000000,27,0,23486.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,27,0,47842.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,27,0,9436.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,327,4327.000000,27,0,3997.000000,1756.800000,extended,nbiot,180 +on2,0,0,24,1,0,3322,4320.000000,27,0,66313.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2517,4357.000000,27,0,47720.000000,1768.800000,extended,nbiot,180 +on6,0,0,24,1,0,568,4320.000000,28,0,13736.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,28,0,62528.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,28,0,34738.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,28,0,2437.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3019,4320.000000,28,0,60268.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4357.000000,28,0,-1.000000,2054.800000,extended,nbiot,180 +on3,0,0,24,1,0,2797,4320.000000,28,0,56777.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,28,0,28025.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,348,4348.000000,28,0,6237.000000,1765.200000,extended,nbiot,180 +on5,0,0,24,1,0,2854,4334.000000,28,0,56817.000000,1759.600000,extended,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,28,0,68239.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,28,0,23705.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2891,4320.000000,28,0,60228.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1634,4320.000000,29,0,33773.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,29,0,14659.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1685,4320.000000,29,0,33733.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,721,4320.000000,29,0,14699.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3780,4320.000000,29,0,79054.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1943,4323.000000,29,0,36275.000000,1755.200000,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,29,0,6592.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3240,4320.000000,29,0,65441.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,29,0,14551.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,29,0,2794.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4367.000000,29,0,-1.000000,2032.800000,extended,nbiot,180 +on6,0,0,24,1,0,2880,4320.000000,29,0,57882.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,30,0,42579.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,30,0,19100.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,30,0,11030.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,30,0,15306.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2642,4320.000000,30,0,52692.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,30,0,10291.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,30,0,1950.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,30,0,5534.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,30,0,52779.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,30,0,1991.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,30,0,-1.000000,2040.000000,extended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,30,0,24282.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2865,4345.000000,30,0,54963.000000,1764.000000,extended,nbiot,180 +on12,0,0,24,1,0,1980,4320.000000,31,0,39658.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4344.000000,31,0,-1.000000,2023.600000,extended,nbiot,180 +on6,0,0,24,1,0,3240,4320.000000,31,0,66753.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,31,0,7634.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1086,4320.000000,31,0,24273.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2700,4320.000000,31,0,55688.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,62,4320.000000,31,0,762.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,31,0,12134.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,4085,4320.000000,31,0,81184.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,4041,4320.000000,31,0,81144.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3728,4320.000000,31,0,74973.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,31,0,4800.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2038,4320.000000,32,0,40986.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,32,0,16451.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3630,4320.000000,32,0,75333.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,32,0,1637.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4347.000000,32,0,-1.000000,2050.800000,extended,nbiot,180 +on4,0,0,24,1,0,1364,4320.000000,32,0,26865.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1729,4320.000000,32,0,34401.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,16,4320.000000,32,0,1677.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,960,4320.000000,32,0,18396.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,32,0,4199.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3960,4320.000000,32,0,81249.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1583,4323.000000,32,0,29712.000000,1755.200000,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,32,0,10928.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,3960,4320.000000,33,0,79826.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1126,4320.000000,33,0,22047.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4355.000000,33,0,-1.000000,2002.000000,extended,nbiot,180 +on10,0,0,24,1,0,404,4320.000000,33,0,9314.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,955,4320.000000,33,0,19675.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,33,0,13699.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,617,4320.000000,33,0,13625.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1307,4320.000000,33,0,28615.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,33,0,9449.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,33,0,29912.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,33,0,2008.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,34,0,32672.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1032,4320.000000,34,0,20138.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2660,4320.000000,34,0,53052.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,34,0,63678.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3780,4320.000000,34,0,76105.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,990,4320.000000,34,0,20178.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,727,4320.000000,34,0,15478.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,34,0,20291.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3960,4320.000000,34,0,80753.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1664,4320.000000,34,0,32622.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4333.000000,34,0,-1.000000,2019.200000,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,34,0,25550.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,35,0,6217.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1207,4320.000000,35,0,24548.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,35,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,35,0,7559.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4334.000000,35,0,-1.000000,2019.600000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,35,0,6287.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,35,0,20252.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,35,0,15423.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3,4320.000000,35,0,3064.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,35,0,3162.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,151,4331.000000,35,0,3104.000000,1758.400000,extended,nbiot,180 +on4,0,0,24,1,0,654,4320.000000,35,0,11443.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,192,4320.000000,35,0,6327.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2190,4320.000000,36,0,46052.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,36,0,1418.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4335.000000,36,0,-1.000000,1994.000000,extended,nbiot,180 +on12,0,0,24,1,0,1084,4320.000000,36,0,22906.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1114,4320.000000,36,0,22946.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2798,4320.000000,36,0,55617.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,36,0,1292.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,36,0,4823.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,36,0,46012.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,36,0,17253.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1047,4327.000000,36,0,18866.000000,1756.800000,extended,nbiot,180 +on11,0,0,24,1,0,1101,4320.000000,37,0,24407.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3395,4335.000000,37,0,66021.000000,1760.000000,extended,nbiot,180 +on6,0,0,24,1,0,532,4352.000000,37,0,9122.000000,1766.800000,extended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,37,0,13159.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,379,4320.000000,37,0,9283.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1980,4320.000000,37,0,42891.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4351.000000,37,0,-1.000000,2052.400000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,37,0,2562.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,37,0,9243.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1639,4320.000000,37,0,34031.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2334,4354.000000,37,0,45490.000000,1767.600000,extended,nbiot,180 +on9,0,0,24,1,0,974,4320.000000,37,0,19386.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,37,0,36449.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,38,0,20488.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1936,4320.000000,38,0,38856.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,38,0,9406.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,38,0,15014.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1620,4320.000000,38,0,33471.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,202,4320.000000,38,0,3859.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1890,4320.000000,38,0,38896.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3441,4320.000000,38,0,71740.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3516,4320.000000,38,0,71780.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1949,4329.000000,38,0,38816.000000,1757.600000,extended,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,38,0,58296.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,370,4320.000000,38,0,9446.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4354.000000,38,0,-1.000000,2053.600000,extended,nbiot,180 +on6,0,0,24,1,0,1975,4355.000000,39,0,39004.000000,1768.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,39,0,12458.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,39,0,17024.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3065,4320.000000,39,0,64056.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3964,4320.000000,39,0,79931.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,725,4320.000000,39,0,16954.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1768,4328.000000,39,0,35796.000000,1757.200000,extended,nbiot,180 +on4,0,0,24,1,0,2700,4320.000000,39,0,56266.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,39,0,-1.000000,1988.000000,extended,nbiot,180 +on12,0,0,24,1,0,2880,4320.000000,39,0,59121.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,643,4320.000000,39,0,12383.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,3138,4320.000000,40,0,63604.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2156,4356.000000,40,0,42584.000000,1768.400000,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,40,0,10423.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2581,4320.000000,40,0,53132.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,600,4320.000000,40,0,13867.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1205,4320.000000,40,0,23215.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4343.000000,40,0,-1.000000,2049.200000,extended,nbiot,180 +on6,0,0,24,1,0,497,4320.000000,40,0,10260.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,72,4320.000000,40,0,3366.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,40,0,30772.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,329,4329.000000,40,0,5193.000000,1757.600000,extended,nbiot,180 +on3,0,0,24,1,0,2077,4320.000000,40,0,42544.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,40,0,37009.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,857,4320.000000,41,0,17485.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,41,0,38159.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,41,0,20666.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,125,4320.000000,41,0,1208.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2700,4320.000000,41,0,56527.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,787,4320.000000,41,0,17445.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1394,4320.000000,41,0,27522.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,41,0,-1.000000,1988.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,41,0,6608.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,41,0,1343.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2792,4320.000000,41,0,56469.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,42,0,56313.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,42,0,9613.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,278,4320.000000,42,0,4650.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,42,0,1156.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3314,4320.000000,42,0,65246.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,585,4320.000000,42,0,14092.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,42,0,23336.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1323,4320.000000,42,0,27134.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4348.000000,42,0,-1.000000,2051.200000,extended,nbiot,180 +on3,0,0,24,1,0,3646,4320.000000,42,0,74922.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,42,0,17834.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2552,4320.000000,42,0,53189.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,42,0,4721.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,611,4320.000000,43,0,11285.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2520,4320.000000,43,0,50753.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,43,0,10111.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3374,4320.000000,43,0,67226.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1164,4320.000000,43,0,22872.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,43,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,43,0,11409.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,43,0,19916.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,140,4320.000000,43,0,3147.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4366.000000,43,0,-1.000000,2032.400000,extended,nbiot,180 +on8,0,0,24,1,0,1473,4320.000000,43,0,29687.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3240,4320.000000,43,0,67355.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,335,4335.000000,43,0,5860.000000,1760.000000,extended,nbiot,180 +on9,0,0,24,1,0,3080,4320.000000,44,0,63996.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,44,0,2712.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,44,0,17661.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4359.000000,44,0,-1.000000,2055.600000,extended,nbiot,180 +on8,0,0,24,1,0,3600,4320.000000,44,0,74310.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2473,4320.000000,44,0,47125.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,44,0,21343.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1632,4320.000000,44,0,32930.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,45,4320.000000,44,0,2533.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,995,4320.000000,44,0,21220.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,44,0,17552.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,44,0,52071.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,295,4320.000000,44,0,6005.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2289,4320.000000,45,0,45308.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1459,4320.000000,45,0,30915.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,1180,4320.000000,45,0,22282.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,410,4320.000000,45,0,9018.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,45,0,34212.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,45,0,15873.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,45,0,25659.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,732,4320.000000,45,0,15761.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,3240,4320.000000,45,0,68098.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1579,4320.000000,45,0,30875.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,45,0,-1.000000,1988.000000,extended,nbiot,180 +on6,0,0,24,1,0,819,4320.000000,46,0,15290.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,377,4320.000000,46,0,9870.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,46,0,22183.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2405,4320.000000,46,0,47876.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1521,4320.000000,46,0,32226.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,46,0,9830.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,46,0,18295.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,3060,4320.000000,46,0,62267.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,46,0,22324.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4354.000000,46,0,-1.000000,2001.600000,extended,nbiot,180 +on7,0,0,24,1,0,907,4320.000000,46,0,18335.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,47,0,26571.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,107,4320.000000,47,0,3162.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2520,4320.000000,47,0,50922.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,511,4331.000000,47,0,10629.000000,1758.400000,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,47,0,24801.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,186,4320.000000,47,0,6963.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,756,4320.000000,47,0,15539.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,809,4320.000000,47,0,15499.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,47,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,47,0,19980.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,47,0,39314.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3960,4320.000000,47,0,80305.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,47,0,-1.000000,2014.000000,extended,nbiot,180 +on11,0,0,24,1,0,1267,4320.000000,48,0,27907.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4358.000000,48,0,-1.000000,2055.200000,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,48,0,10520.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3613,4320.000000,48,0,72932.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,48,0,46150.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,48,0,4528.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,48,0,61869.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2216,4320.000000,48,0,46033.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1265,4320.000000,48,0,27947.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,185,4320.000000,48,0,4423.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3024,4324.000000,48,0,58015.000000,1755.600000,extended,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,48,0,27867.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,290,4320.000000,48,0,4463.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,49,0,33708.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,681,4321.000000,49,0,11986.000000,1754.400000,extended,nbiot,180 +on3,0,0,24,1,0,571,4320.000000,49,0,11946.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,49,0,5607.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,49,0,5482.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,49,0,43820.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1080,4320.000000,49,0,21873.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,49,0,21957.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,49,0,20738.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,201,4320.000000,49,0,5522.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,173,4353.000000,49,0,2166.000000,1767.200000,extended,nbiot,180 +on0,1,12,24,0,0,0,4356.000000,49,0,-1.000000,2054.400000,extended,nbiot,180 +on1,0,0,24,1,0,787,4320.000000,49,0,16816.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1462,4320.000000,50,0,31394.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3930,4330.000000,50,0,78599.000000,1758.000000,extended,nbiot,180 +on9,0,0,24,1,0,3250,4320.000000,50,0,67842.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1216,4320.000000,50,0,22392.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,50,0,14082.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1198,4320.000000,50,0,22432.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2520,4320.000000,50,0,52563.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,50,0,10297.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,50,0,28282.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,50,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,1496,4320.000000,50,0,31434.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1841,4320.000000,50,0,36325.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,50,0,-1.000000,2014.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4327.000000,51,0,-1.000000,2042.800000,extended,nbiot,180 +on10,0,0,24,1,0,476,4320.000000,51,0,9046.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,51,0,4614.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,801,4320.000000,51,0,14679.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1568,4320.000000,51,0,31902.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1809,4320.000000,51,0,36403.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2580,4320.000000,51,0,51440.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,474,4320.000000,51,0,9086.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1716,4320.000000,51,0,32680.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,622,4320.000000,51,0,13170.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,495,4320.000000,51,0,9006.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,51,0,48766.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,51,0,14764.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2880,4320.000000,52,0,60735.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1835,4320.000000,52,0,37600.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,52,0,2546.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,215,4320.000000,52,0,6735.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,52,0,13904.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,52,0,17450.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,52,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,3420,4320.000000,52,0,69944.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,301,4320.000000,52,0,6775.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2880,4320.000000,52,0,60624.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3448,4320.000000,52,0,69840.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4336.000000,52,0,-1.000000,1994.400000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,3600,4320.000000,53,0,75148.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1080,4320.000000,53,0,24061.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,860,4320.000000,53,0,17252.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1982,4320.000000,53,0,40754.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,53,0,40906.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,780,4320.000000,53,0,17292.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,522,4342.000000,53,0,7730.000000,1762.800000,extended,nbiot,180 +on5,0,0,24,1,0,2337,4357.000000,53,0,46138.000000,1768.800000,extended,nbiot,180 +on4,0,0,24,1,0,515,4335.000000,53,0,7690.000000,1760.000000,extended,nbiot,180 +on7,0,0,24,1,0,550,4320.000000,53,0,12172.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,753,4320.000000,53,0,17212.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4332.000000,53,0,-1.000000,2018.800000,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,54,0,1940.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3665,4320.000000,54,0,73304.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,54,0,30971.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,3761,4341.000000,54,0,73344.000000,1762.400000,extended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,54,0,45413.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2212,4320.000000,54,0,45350.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,576,4320.000000,54,0,12413.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,573,4320.000000,54,0,12453.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,54,0,24009.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,54,0,-1.000000,1988.000000,extended,nbiot,180 +on10,0,0,24,1,0,3148,4320.000000,54,0,62403.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,673,4320.000000,55,0,12100.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3625,4320.000000,55,0,73525.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,208,4320.000000,55,0,4893.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,322,4322.000000,55,0,4853.000000,1754.800000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,542,4320.000000,55,0,12140.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,55,0,26086.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,55,0,22801.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,55,0,51572.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,55,0,12233.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2197,4320.000000,55,0,45100.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,55,0,29471.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4340.000000,55,0,-1.000000,2022.000000,extended,nbiot,180 +on5,0,0,24,1,0,3178,4320.000000,56,0,64369.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3341,4320.000000,56,0,65733.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,3600,4320.000000,56,0,72254.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1839,4320.000000,56,0,37556.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2139,4339.000000,56,0,42745.000000,1761.600000,extended,nbiot,180 +on8,0,0,24,1,0,904,4320.000000,56,0,18979.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,18,4320.000000,56,0,2228.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,56,0,6586.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,56,0,15216.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,56,0,2188.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3554,4320.000000,56,0,69092.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,740,4320.000000,56,0,15042.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4354.000000,56,0,-1.000000,2053.600000,extended,nbiot,180 +on0,1,11,24,0,0,0,4330.000000,57,0,-1.000000,2018.000000,extended,nbiot,180 +on2,0,0,24,1,0,1459,4320.000000,57,0,30602.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2160,4320.000000,57,0,44741.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,57,0,2685.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2340,4320.000000,57,0,47935.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,57,0,11849.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,57,0,7315.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1531,4320.000000,57,0,30642.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,57,0,7384.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,3504,4320.000000,57,0,69109.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1402,4322.000000,57,0,27127.000000,1754.800000,extended,nbiot,180 +on12,0,0,24,1,0,1887,4320.000000,57,0,38020.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2111,4320.000000,58,0,40142.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,35,4320.000000,58,0,2627.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3714,4320.000000,58,0,72247.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,746,4320.000000,58,0,15810.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1914,4320.000000,58,0,37542.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1237,4337.000000,58,0,24319.000000,1760.800000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,58,0,24463.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4345.000000,58,0,-1.000000,2050.000000,extended,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,58,0,58603.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,853,4320.000000,58,0,15770.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,58,0,12303.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,315,4320.000000,58,0,4408.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,638,4320.000000,58,0,12142.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,59,0,17329.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,59,0,-1.000000,2040.000000,extended,nbiot,180 +on3,0,0,24,1,0,330,4330.000000,59,0,6847.000000,1758.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,59,0,10383.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,81,4320.000000,59,0,2203.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,902,4320.000000,59,0,19930.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,300,4320.000000,59,0,6807.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3911,4320.000000,59,0,79024.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2340,4320.000000,59,0,49334.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1572,4320.000000,59,0,30906.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,917,4320.000000,59,0,19890.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,562,4320.000000,59,0,13051.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,59,0,13011.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1980,4320.000000,60,0,41544.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,392,4320.000000,60,0,9297.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,60,0,24377.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,179,4359.000000,60,0,907.000000,1769.600000,extended,nbiot,180 +on0,1,12,24,0,0,0,4338.000000,60,0,-1.000000,2047.200000,extended,nbiot,180 +on3,0,0,24,1,0,656,4320.000000,60,0,11141.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,717,4357.000000,60,0,11101.000000,1768.800000,extended,nbiot,180 +on2,0,0,24,1,0,3046,4346.000000,60,0,58125.000000,1764.400000,extended,nbiot,180 +on1,0,0,24,1,0,2520,4320.000000,60,0,52128.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,778,4320.000000,60,0,17414.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3432,4320.000000,60,0,70709.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,111,4320.000000,60,0,867.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,399,4320.000000,60,0,9337.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,288,4320.000000,61,0,4112.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3240,4320.000000,61,0,66085.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,61,0,7894.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1543,4320.000000,61,0,30790.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,61,0,7989.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,61,0,13470.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4388.000000,61,0,-1.000000,2067.200000,extended,nbiot,180 +on12,0,0,24,1,0,895,4355.000000,61,0,15341.000000,1768.000000,extended,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,61,0,30904.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1208,4320.000000,61,0,24935.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,492,4320.000000,61,0,7820.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,367,4320.000000,61,0,7934.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2545,4320.000000,61,0,52548.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,200,4320.000000,62,0,5607.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,62,0,62157.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,729,4320.000000,62,0,14826.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3732,4320.000000,62,0,74881.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,62,0,5770.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4343.000000,62,0,-1.000000,2049.200000,extended,nbiot,180 +on4,0,0,24,1,0,3435,4320.000000,62,0,70747.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3076,4320.000000,62,0,62197.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,62,0,52150.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,5,4320.000000,62,0,3022.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,62,0,5672.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,9,4320.000000,62,0,2942.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,15,4320.000000,62,0,2982.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,63,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,63,0,57138.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3600,4320.000000,63,0,72922.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,63,0,28382.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,63,0,41177.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3561,4321.000000,63,0,70773.000000,1754.400000,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,63,0,17772.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1586,4326.000000,63,0,29320.000000,1756.400000,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,63,0,12962.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4333.000000,63,0,-1.000000,2019.200000,extended,nbiot,180 +on9,0,0,24,1,0,2197,4320.000000,63,0,43377.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,63,0,17711.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,63,0,41278.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,64,0,24703.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3960,4320.000000,64,0,80036.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2225,4320.000000,64,0,44894.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,709,4349.000000,64,0,12469.000000,1765.600000,extended,nbiot,180 +on0,1,11,24,0,0,0,4327.000000,64,0,-1.000000,2016.800000,extended,nbiot,180 +on11,0,0,24,1,0,4140,4320.000000,64,0,83661.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,572,4320.000000,64,0,12509.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2448,4320.000000,64,0,47169.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,64,0,5677.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1923,4320.000000,64,0,37011.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2457,4320.000000,64,0,47129.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3947,4347.000000,64,0,76504.000000,1764.800000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,54,4320.000000,65,0,692.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,871,4331.000000,65,0,15221.000000,1758.400000,extended,nbiot,180 +on1,0,0,24,1,0,1808,4320.000000,65,0,36665.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,65,0,18993.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,65,0,6959.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,174,4354.000000,65,0,652.000000,1767.600000,extended,nbiot,180 +on4,0,0,24,1,0,685,4325.000000,65,0,13003.000000,1756.000000,extended,nbiot,180 +on7,0,0,24,1,0,3607,4320.000000,65,0,73073.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,65,0,13044.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4350.000000,65,0,-1.000000,2052.000000,extended,nbiot,180 +on2,0,0,24,1,0,1578,4320.000000,65,0,29114.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,3060,4320.000000,65,0,61497.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,65,0,36757.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1089,4320.000000,66,0,25032.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,66,0,13234.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,66,0,39294.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4415.000000,66,0,-1.000000,2026.000000,extended,nbiot,180 +on2,0,0,24,1,0,1256,4356.000000,66,0,24992.000000,1768.400000,extended,nbiot,180 +on6,0,0,24,1,0,1808,4320.000000,66,0,39121.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,66,0,4404.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1184,4320.000000,66,0,25072.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,66,0,4565.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2880,4320.000000,66,0,59202.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,66,0,9583.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1141,4320.000000,67,0,23381.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,67,0,5432.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2654,4320.000000,67,0,52922.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,67,0,1593.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4354.000000,67,0,-1.000000,2027.600000,extended,nbiot,180 +on8,0,0,24,1,0,1630,4320.000000,67,0,32601.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,67,0,5546.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,67,0,36293.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,67,0,26379.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1377,4320.000000,67,0,26246.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,67,0,23434.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,574,4320.000000,67,0,11602.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,68,0,2239.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2282,4320.000000,68,0,46248.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,68,0,26330.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,970,4320.000000,68,0,21083.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1573,4320.000000,68,0,31168.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,822,4320.000000,68,0,17197.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,68,0,21836.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1059,4339.000000,68,0,21043.000000,1761.600000,extended,nbiot,180 +on0,1,11,24,0,0,0,4332.000000,68,0,-1.000000,2018.800000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,68,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,68,0,21177.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,693,4333.000000,68,0,11600.000000,1759.200000,extended,nbiot,180 +on7,0,0,24,1,0,593,4320.000000,68,0,11560.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,3960,4320.000000,69,0,81795.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,69,0,16035.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,69,0,13945.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,701,4341.000000,69,0,13817.000000,1762.400000,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,69,0,9819.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4327.000000,69,0,-1.000000,1990.800000,extended,nbiot,180 +on4,0,0,24,1,0,1807,4320.000000,69,0,36060.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1000,4320.000000,69,0,21210.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,841,4320.000000,69,0,15954.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,1375,4320.000000,69,0,28327.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,69,0,64043.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,70,0,30754.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4398.000000,70,0,-1.000000,2071.200000,extended,nbiot,180 +on9,0,0,24,1,0,2672,4332.000000,70,0,52088.000000,1758.800000,extended,nbiot,180 +on8,0,0,24,1,0,2428,4320.000000,70,0,49607.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2880,4320.000000,70,0,59569.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,387,4320.000000,70,0,10499.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,70,0,2240.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1534,4320.000000,70,0,30648.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2700,4320.000000,70,0,54726.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1620,4320.000000,70,0,32624.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,70,0,13559.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3240,4320.000000,70,0,67134.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,70,0,28449.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,71,0,18696.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,356,4356.000000,71,0,5685.000000,1768.400000,extended,nbiot,180 +on7,0,0,24,1,0,1866,4320.000000,71,0,38794.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,71,0,13359.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,71,0,14594.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,142,4322.000000,71,0,3092.000000,1754.800000,extended,nbiot,180 +on3,0,0,24,1,0,200,4320.000000,71,0,5855.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,140,4320.000000,71,0,3132.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,911,4320.000000,71,0,18578.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,188,4320.000000,71,0,5725.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,71,0,5815.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3420,4320.000000,71,0,70980.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4393.000000,71,0,-1.000000,2069.200000,extended,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,72,0,41125.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1822,4320.000000,72,0,36361.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,72,0,29335.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,361,4320.000000,72,0,7508.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1260,4320.000000,72,0,27039.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,72,0,23187.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,506,4326.000000,72,0,7468.000000,1756.400000,extended,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,72,0,29376.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,72,0,18965.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,668,4320.000000,72,0,11942.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4343.000000,72,0,-1.000000,2049.200000,extended,nbiot,180 +on4,0,0,24,1,0,1441,4320.000000,72,0,29416.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,72,0,34248.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3885,4320.000000,73,0,76697.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,73,0,320.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2369,4320.000000,73,0,47558.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,270,4320.000000,73,0,6474.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2342,4320.000000,73,0,47518.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,720,4320.000000,73,0,14695.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,314,4320.000000,73,0,6434.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,715,4355.000000,73,0,13379.000000,1768.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4379.000000,73,0,-1.000000,2063.600000,extended,nbiot,180 +on3,0,0,24,1,0,1576,4320.000000,73,0,30987.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1136,4320.000000,73,0,24762.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,73,0,216.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1158,4320.000000,73,0,24802.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,74,0,3358.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,468,4320.000000,74,0,9173.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1826,4320.000000,74,0,39144.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,74,0,20281.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4337.000000,74,0,-1.000000,2046.800000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,74,0,17105.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,74,0,39104.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,981,4320.000000,74,0,20228.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,652,4320.000000,74,0,11651.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,74,0,28107.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2520,4320.000000,74,0,52090.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,74,0,11697.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,74,0,6599.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,75,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,2052,4320.000000,75,0,41685.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2210,4320.000000,75,0,46492.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2064,4320.000000,75,0,41725.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1267,4320.000000,75,0,25426.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3420,4320.000000,75,0,69190.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,75,0,343.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,75,0,37288.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2038,4320.000000,75,0,41645.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4347.000000,75,0,-1.000000,2024.800000,extended,nbiot,180 +on4,0,0,24,1,0,4140,4320.000000,75,0,85494.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,670,4320.000000,75,0,12262.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,306,4320.000000,75,0,6580.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3844,4320.000000,76,0,76957.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,76,0,17486.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,76,0,8420.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3871,4320.000000,76,0,76917.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,435,4320.000000,76,0,8343.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,76,0,62488.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4333.000000,76,0,-1.000000,2045.200000,extended,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,76,0,58180.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,76,0,28326.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,671,4320.000000,76,0,12018.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,76,0,6330.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1391,4320.000000,76,0,28262.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,76,0,35539.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2310,4330.000000,77,0,44477.000000,1758.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,77,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,77,0,-1.000000,1988.000000,extended,nbiot,180 +on10,0,0,24,1,0,751,4320.000000,77,0,16316.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,192,4320.000000,77,0,5046.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,553,4320.000000,77,0,11106.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,242,4320.000000,77,0,5006.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,329,4329.000000,77,0,4966.000000,1757.600000,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,77,0,11066.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,736,4320.000000,77,0,16276.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,77,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,77,0,57183.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,77,0,42925.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4375.000000,78,0,-1.000000,2036.000000,extended,nbiot,180 +on7,0,0,24,1,0,1412,4332.000000,78,0,27025.000000,1758.800000,extended,nbiot,180 +on12,0,0,24,1,0,377,4320.000000,78,0,9263.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,78,0,10926.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,23,4320.000000,78,0,2505.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,749,4320.000000,78,0,15614.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,78,0,9392.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1045,4325.000000,78,0,19039.000000,1756.000000,extended,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,78,0,50084.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,78,0,27081.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,393,4320.000000,78,0,9223.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,78,0,2671.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,882,4342.000000,79,0,16942.000000,1762.800000,extended,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,79,0,56934.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2469,4320.000000,79,0,47923.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,79,0,-1.000000,2040.000000,extended,nbiot,180 +on3,0,0,24,1,0,70,4320.000000,79,0,1250.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2049,4320.000000,79,0,42628.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,79,0,1337.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,79,0,20308.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,79,0,28613.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2160,4320.000000,79,0,45515.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,79,0,20365.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1126,4320.000000,79,0,23148.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,79,0,4836.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1112,4320.000000,80,0,22071.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4357.000000,80,0,-1.000000,2002.800000,extended,nbiot,180 +on12,0,0,24,1,0,265,4320.000000,80,0,7046.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,80,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,80,0,3067.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1342,4320.000000,80,0,27933.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1111,4320.000000,80,0,22111.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,80,0,7829.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,218,4320.000000,80,0,7086.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,659,4320.000000,80,0,11668.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,80,0,51499.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,80,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1738,4320.000000,80,0,33096.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,81,0,6287.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1174,4320.000000,81,0,23659.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,81,0,20581.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,2182,4320.000000,81,0,45898.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,81,0,-1.000000,2014.000000,extended,nbiot,180 +on2,0,0,24,1,0,2706,4320.000000,81,0,56295.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1212,4320.000000,81,0,23619.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2700,4320.000000,81,0,56255.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1670,4320.000000,81,0,33615.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,81,0,2528.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,81,0,2585.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,81,0,56342.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,99,4320.000000,82,0,521.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1080,4320.000000,82,0,24478.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1508,4320.000000,82,0,32129.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3398,4338.000000,82,0,67823.000000,1761.200000,extended,nbiot,180 +on2,0,0,24,1,0,35,4320.000000,82,0,561.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1988,4320.000000,82,0,42548.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,717,4357.000000,82,0,12013.000000,1768.800000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,82,0,-1.000000,2040.000000,extended,nbiot,180 +on1,0,0,24,1,0,1416,4336.000000,82,0,25997.000000,1760.400000,extended,nbiot,180 +on5,0,0,24,1,0,556,4320.000000,82,0,12053.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,122,4320.000000,82,0,601.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1959,4339.000000,82,0,36651.000000,1761.600000,extended,nbiot,180 +on3,0,0,24,1,0,120,4320.000000,82,0,641.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,436,4320.000000,83,0,7461.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,83,0,22041.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1039,4320.000000,83,0,21208.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,83,0,-1.000000,2014.000000,extended,nbiot,180 +on9,0,0,24,1,0,1369,4320.000000,83,0,25719.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3264,4320.000000,83,0,67883.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2393,4320.000000,83,0,47862.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,207,4320.000000,83,0,4927.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,594,4320.000000,83,0,13212.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,83,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,83,0,3214.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1002,4320.000000,83,0,21248.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,601,4320.000000,83,0,13172.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1480,4320.000000,84,0,29894.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1192,4320.000000,84,0,24351.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,119,4320.000000,84,0,2095.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1228,4328.000000,84,0,24391.000000,1757.200000,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,84,0,30044.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,397,4320.000000,84,0,7737.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4343.000000,84,0,-1.000000,1997.200000,extended,nbiot,180 +on8,0,0,24,1,0,29,4320.000000,84,0,2135.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,84,0,33616.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,84,0,41554.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,84,0,24497.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2657,4320.000000,85,0,51014.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,85,0,2905.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4351.000000,85,0,-1.000000,2000.400000,extended,nbiot,180 +on4,0,0,24,1,0,4125,4345.000000,85,0,82266.000000,1764.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,85,0,2977.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,370,4320.000000,85,0,7640.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,85,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,152,4332.000000,85,0,2856.000000,1758.800000,extended,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,85,0,21114.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,85,0,12961.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2019,4320.000000,85,0,39801.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,85,0,62750.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,86,0,14072.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1720,4320.000000,86,0,35421.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1220,4320.000000,86,0,23146.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,86,0,61661.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,86,0,23262.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,86,0,19251.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,348,4348.000000,86,0,3822.000000,1765.200000,extended,nbiot,180 +on4,0,0,24,1,0,1950,4330.000000,86,0,37215.000000,1758.000000,extended,nbiot,180 +on7,0,0,24,1,0,1394,4320.000000,86,0,26003.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2564,4320.000000,86,0,53126.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2644,4320.000000,86,0,53086.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,86,0,35496.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4343.000000,86,0,-1.000000,2049.200000,extended,nbiot,180 +on12,0,0,24,1,0,1294,4320.000000,87,0,26482.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,87,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,87,0,62074.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,87,0,-1.000000,1988.000000,extended,nbiot,180 +on7,0,0,24,1,0,1007,4320.000000,87,0,18415.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,87,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,839,4320.000000,87,0,16564.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2520,4320.000000,87,0,53574.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2469,4320.000000,87,0,49430.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3780,4320.000000,87,0,75941.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,87,0,59308.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,87,0,5348.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3795,4320.000000,87,0,75816.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,88,0,2135.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,88,0,57369.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,88,0,5651.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,77,4320.000000,88,0,2041.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2880,4320.000000,88,0,59134.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,88,0,28100.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,88,0,-1.000000,2014.000000,extended,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,88,0,18114.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,385,4320.000000,88,0,7645.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,88,0,7705.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,36,4320.000000,88,0,2175.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,511,4331.000000,88,0,7605.000000,1758.400000,extended,nbiot,180 +on4,0,0,24,1,0,874,4334.000000,89,0,16456.000000,1759.600000,extended,nbiot,180 +on2,0,0,24,1,0,826,4320.000000,89,0,16496.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,89,0,20531.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,89,0,10585.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3085,4320.000000,89,0,61454.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2374,4320.000000,89,0,48087.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,89,0,6218.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,89,0,3007.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4369.000000,89,0,-1.000000,2059.600000,extended,nbiot,180 +on9,0,0,24,1,0,4140,4320.000000,89,0,85212.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,89,0,20432.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3600,4320.000000,89,0,73742.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,89,0,35185.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,291,4320.000000,90,0,6756.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,90,0,10609.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,364,4320.000000,90,0,10515.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,90,0,47459.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,655,4320.000000,90,0,11307.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,286,4320.000000,90,0,6796.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,90,0,11363.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4356.000000,90,0,-1.000000,2054.400000,extended,nbiot,180 +on6,0,0,24,1,0,2221,4320.000000,90,0,45353.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,90,0,15267.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,90,0,11412.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,90,0,30644.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1620,4320.000000,90,0,34293.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4353.000000,91,0,-1.000000,2053.200000,extended,nbiot,180 +on7,0,0,24,1,0,1001,4320.000000,91,0,20634.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,683,4323.000000,91,0,13626.000000,1755.200000,extended,nbiot,180 +on12,0,0,24,1,0,2160,4320.000000,91,0,46311.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,91,0,13731.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,582,4320.000000,91,0,13666.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3960,4320.000000,91,0,79673.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,259,4320.000000,91,0,4847.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,91,0,34077.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,765,4320.000000,91,0,17064.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,529,4349.000000,91,0,10421.000000,1765.600000,extended,nbiot,180 +on10,0,0,24,1,0,463,4320.000000,91,0,10381.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3600,4320.000000,91,0,75120.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4331.000000,92,0,-1.000000,2018.400000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,2282,4320.000000,92,0,45278.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,92,0,2633.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,933,4320.000000,92,0,21139.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,92,0,21270.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1160,4320.000000,92,0,24273.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,560,4320.000000,92,0,13023.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3494,4320.000000,92,0,68739.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1486,4320.000000,92,0,29763.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,92,0,27033.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3240,4320.000000,92,0,66272.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2593,4320.000000,92,0,52173.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,93,0,57404.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1039,4320.000000,93,0,18901.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,636,4320.000000,93,0,11585.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1028,4320.000000,93,0,18941.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,93,0,6080.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,93,0,30612.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1479,4320.000000,93,0,30459.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,362,4320.000000,93,0,7760.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4371.000000,93,0,-1.000000,2060.400000,extended,nbiot,180 +on9,0,0,24,1,0,791,4320.000000,93,0,14796.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,93,0,26093.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,394,4320.000000,93,0,7720.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,499,4320.000000,93,0,7680.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1212,4320.000000,94,0,24537.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2520,4320.000000,94,0,50593.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2700,4320.000000,94,0,55174.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,94,0,60783.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,94,0,62518.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,94,0,4118.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,94,0,20144.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,359,4359.000000,94,0,3995.000000,1769.600000,extended,nbiot,180 +on7,0,0,24,1,0,4159,4320.000000,94,0,84775.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,94,0,-1.000000,2014.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1251,4351.000000,94,0,24497.000000,1766.400000,extended,nbiot,180 +on10,0,0,24,1,0,148,4328.000000,94,0,410.000000,1757.200000,extended,nbiot,180 +on7,0,0,24,1,0,418,4320.000000,95,0,7737.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,765,4320.000000,95,0,15928.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4342.000000,95,0,-1.000000,2022.800000,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,95,0,7859.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1419,4339.000000,95,0,26947.000000,1761.600000,extended,nbiot,180 +on4,0,0,24,1,0,154,4334.000000,95,0,1043.000000,1759.600000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,846,4320.000000,95,0,15968.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2012,4320.000000,95,0,41345.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,480,4320.000000,95,0,7697.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2200,4320.000000,95,0,45350.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,95,0,67006.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2978,4320.000000,95,0,57949.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,96,0,57829.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,335,4335.000000,96,0,4123.000000,1760.000000,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,96,0,36643.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,480,4320.000000,96,0,7361.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2158,4358.000000,96,0,40219.000000,1769.200000,extended,nbiot,180 +on12,0,0,24,1,0,1002,4320.000000,96,0,20884.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,96,0,27313.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,293,4320.000000,96,0,4083.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2047,4320.000000,96,0,40139.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2118,4320.000000,96,0,40179.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4373.000000,96,0,-1.000000,2061.200000,extended,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,96,0,31823.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1414,4334.000000,96,0,27191.000000,1759.600000,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,97,0,5974.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,97,0,8655.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,97,0,41375.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,97,0,23682.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,120,4320.000000,97,0,3278.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,97,0,8786.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,97,0,33824.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1153,4320.000000,97,0,23607.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4333.000000,97,0,-1.000000,1993.200000,extended,nbiot,180 +on9,0,0,24,1,0,865,4325.000000,97,0,15925.000000,1756.000000,extended,nbiot,180 +on12,0,0,24,1,0,1358,4320.000000,97,0,28100.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2934,4320.000000,98,0,59256.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,98,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,920,4320.000000,98,0,20398.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,98,0,16768.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,122,4320.000000,98,0,3519.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,124,4320.000000,98,0,3479.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,136,4320.000000,98,0,3439.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,606,4320.000000,98,0,14181.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,98,0,-1.000000,2014.000000,extended,nbiot,180 +on11,0,0,24,1,0,216,4320.000000,98,0,7007.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,214,4320.000000,98,0,7047.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3549,4320.000000,98,0,70559.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3060,4320.000000,98,0,61962.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2235,4320.000000,99,0,45305.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,99,0,41731.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,99,0,52428.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,911,4320.000000,99,0,20223.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,1800,4320.000000,99,0,38544.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1379,4320.000000,99,0,28197.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,99,0,-1.000000,2014.000000,extended,nbiot,180 +on7,0,0,24,1,0,4140,4320.000000,99,0,85189.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,99,0,170.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,571,4320.000000,99,0,13295.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3779,4359.000000,99,0,74754.000000,1769.600000,extended,nbiot,180 +on12,0,0,24,1,0,1471,4320.000000,99,0,30818.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,100,0,32170.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,100,0,7514.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2679,4339.000000,100,0,52369.000000,1761.600000,extended,nbiot,180 +on7,0,0,24,1,0,1800,4320.000000,100,0,37201.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,100,0,18461.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,100,0,4227.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1298,4320.000000,100,0,27124.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1404,4324.000000,100,0,27084.000000,1755.600000,extended,nbiot,180 +on9,0,0,24,1,0,2094,4320.000000,100,0,42744.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,100,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,2880,4320.000000,100,0,59120.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,100,0,-1.000000,2014.000000,extended,nbiot,180 +on8,0,0,24,1,0,480,4320.000000,100,0,7405.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3538,4320.000000,101,0,68952.000000,1754.000000,extended,nbiot,180 +on0,1,9,24,0,0,0,4322.000000,101,0,-1.000000,1962.800000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,179,4359.000000,101,0,3366.000000,1769.600000,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,101,0,8093.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2443,4320.000000,101,0,47274.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,101,0,37719.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,101,0,22378.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,962,4320.000000,101,0,21261.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,101,0,4384.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1353,4320.000000,101,0,28084.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,448,4320.000000,102,0,9216.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3420,4320.000000,102,0,68914.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,2700,4320.000000,102,0,55015.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1910,4320.000000,102,0,36750.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,102,0,-1.000000,1988.000000,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,102,0,27189.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,557,4320.000000,102,0,12912.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,899,4359.000000,102,0,17255.000000,1769.600000,extended,nbiot,180 +on7,0,0,24,1,0,999,4320.000000,102,0,20405.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,102,0,6462.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,102,0,12872.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,103,0,1094.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,103,0,13084.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3811,4320.000000,103,0,76654.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3673,4320.000000,103,0,73643.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2610,4320.000000,103,0,51956.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,103,0,-1.000000,1988.000000,extended,nbiot,180 +on4,0,0,24,1,0,4140,4320.000000,103,0,83793.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,103,0,10021.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,103,0,981.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1062,4342.000000,103,0,19338.000000,1762.800000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,3423,4320.000000,103,0,68602.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,1833,4320.000000,104,0,36950.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,67,4320.000000,104,0,3104.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3600,4320.000000,104,0,72980.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,197,4320.000000,104,0,3761.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,104,0,3823.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,791,4320.000000,104,0,15782.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4321.000000,104,0,-1.000000,2014.400000,extended,nbiot,180 +on4,0,0,24,1,0,3003,4320.000000,104,0,59778.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1158,4320.000000,104,0,22291.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,104,0,33327.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,104,0,27221.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1857,4320.000000,104,0,36910.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,105,0,5033.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,156,4336.000000,105,0,2950.000000,1760.400000,extended,nbiot,180 +on9,0,0,24,1,0,1329,4320.000000,105,0,26129.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,105,0,20040.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3600,4320.000000,105,0,74199.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4336.000000,105,0,-1.000000,1994.400000,extended,nbiot,180 +on5,0,0,24,1,0,2520,4320.000000,105,0,52783.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,105,0,3035.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1508,4320.000000,105,0,30571.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,3060,4320.000000,105,0,63211.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,105,0,37857.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,106,0,2010.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,106,0,3983.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,106,0,37281.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,106,0,15814.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3142,4320.000000,106,0,64068.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4356.000000,106,0,-1.000000,2028.400000,extended,nbiot,180 +on3,0,0,24,1,0,2444,4320.000000,106,0,47716.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,106,0,25995.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,559,4320.000000,106,0,13750.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,357,4357.000000,106,0,3859.000000,1768.800000,extended,nbiot,180 +on9,0,0,24,1,0,2429,4320.000000,106,0,47676.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,932,4320.000000,106,0,19337.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,107,0,38160.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1369,4320.000000,107,0,27271.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4329.000000,107,0,-1.000000,2017.600000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1970,4350.000000,107,0,38032.000000,1766.000000,extended,nbiot,180 +on6,0,0,24,1,0,219,4320.000000,107,0,6943.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,995,4320.000000,107,0,18738.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,363,4320.000000,107,0,8646.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3454,4320.000000,107,0,71635.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2369,4320.000000,107,0,47917.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,107,0,45926.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3318,4320.000000,107,0,67697.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3420,4320.000000,107,0,71595.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3960,4320.000000,108,0,81623.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,108,0,9398.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1080,4320.000000,108,0,24421.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1002,4320.000000,108,0,20418.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,990,4320.000000,108,0,20378.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,108,0,29399.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,108,0,2738.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,586,4320.000000,108,0,11077.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,108,0,9319.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,983,4320.000000,108,0,20338.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2700,4320.000000,108,0,56681.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,108,0,33334.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4345.000000,108,0,-1.000000,2050.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,109,0,21948.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3060,4320.000000,109,0,63033.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,316,4320.000000,109,0,5568.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,25,4320.000000,109,0,420.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,109,0,26395.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,301,4320.000000,109,0,5528.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4326.000000,109,0,-1.000000,2016.400000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,109,0,526.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,46,4320.000000,109,0,380.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,109,0,5625.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,109,0,13241.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2921,4320.000000,109,0,57931.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1264,4320.000000,110,0,26128.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,512,4332.000000,110,0,9104.000000,1758.800000,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,110,0,26088.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4384.000000,110,0,-1.000000,2039.600000,extended,nbiot,180 +on5,0,0,24,1,0,480,4320.000000,110,0,9144.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,273,4320.000000,110,0,6350.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,110,0,24405.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,870,4330.000000,110,0,17510.000000,1758.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,110,0,9224.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,36,4320.000000,110,0,933.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1429,4349.000000,110,0,25956.000000,1765.600000,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,110,0,6457.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1195,4320.000000,111,0,23045.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,111,0,11593.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,111,0,59030.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3204,4324.000000,111,0,64349.000000,1755.600000,extended,nbiot,180 +on0,1,12,24,0,0,0,4346.000000,111,0,-1.000000,2050.400000,extended,nbiot,180 +on6,0,0,24,1,0,995,4320.000000,111,0,18694.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1006,4320.000000,111,0,18734.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1307,4320.000000,111,0,27666.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1010,4320.000000,111,0,18774.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,905,4320.000000,111,0,18654.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1399,4320.000000,111,0,27706.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,111,0,64471.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,111,0,4151.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2588,4320.000000,112,0,52937.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,112,0,7627.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,2881,4320.000000,112,0,58231.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,112,0,7503.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1880,4320.000000,112,0,39280.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,761,4320.000000,112,0,17353.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,112,0,21911.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4361.000000,112,0,-1.000000,2004.400000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,112,0,1750.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2704,4320.000000,112,0,57289.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,112,0,35672.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,35,4320.000000,113,0,1785.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,330,4330.000000,113,0,5346.000000,1758.000000,extended,nbiot,180 +on11,0,0,24,1,0,581,4320.000000,113,0,12819.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,405,4320.000000,113,0,8296.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3010,4320.000000,113,0,60111.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1800,4320.000000,113,0,38273.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,4108,4328.000000,113,0,80109.000000,1757.200000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,113,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,1724,4320.000000,113,0,35440.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,113,0,8433.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,113,0,-1.000000,2014.000000,extended,nbiot,180 +on4,0,0,24,1,0,529,4349.000000,113,0,8336.000000,1765.600000,extended,nbiot,180 +on2,0,0,24,1,0,33,4320.000000,113,0,1825.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,114,0,848.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,238,4320.000000,114,0,5059.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,114,0,5110.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3960,4320.000000,114,0,79793.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2537,4320.000000,114,0,52818.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,114,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,114,0,35636.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1901,4320.000000,114,0,39331.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,114,0,10024.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,114,0,-1.000000,2014.000000,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,114,0,787.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,272,4320.000000,114,0,4979.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,252,4320.000000,114,0,5019.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1080,4320.000000,115,0,23543.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4340.000000,115,0,-1.000000,2022.000000,extended,nbiot,180 +on12,0,0,24,1,0,470,4320.000000,115,0,9953.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,115,0,13345.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,347,4347.000000,115,0,4812.000000,1764.800000,extended,nbiot,180 +on8,0,0,24,1,0,644,4320.000000,115,0,13185.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,115,0,36120.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,163,4343.000000,115,0,2469.000000,1763.200000,extended,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,115,0,58165.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1495,4320.000000,115,0,28976.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,105,4320.000000,115,0,2429.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3780,4320.000000,115,0,75806.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1134,4320.000000,116,0,25028.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,337,4337.000000,116,0,5015.000000,1760.800000,extended,nbiot,180 +on6,0,0,24,1,0,414,4320.000000,116,0,7397.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,116,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,84,4320.000000,116,0,2137.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,56,4320.000000,116,0,2257.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,116,0,45857.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,52,4320.000000,116,0,2177.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3489,4320.000000,116,0,70271.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,116,0,29131.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,25,4320.000000,116,0,2217.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2187,4320.000000,116,0,45800.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,116,0,-1.000000,2014.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,117,0,17069.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,117,0,23456.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3900,4320.000000,117,0,76787.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,4237,4320.000000,117,0,84775.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,117,0,26753.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4332.000000,117,0,-1.000000,2018.800000,extended,nbiot,180 +on5,0,0,24,1,0,1440,4320.000000,117,0,29355.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,462,4320.000000,117,0,8358.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,117,0,8470.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,117,0,40505.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,205,4320.000000,117,0,3956.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,401,4320.000000,117,0,8318.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,118,0,1719.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,118,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,118,0,53608.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2407,4320.000000,118,0,48314.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,118,0,-1.000000,2014.000000,extended,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,118,0,56613.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,118,0,6567.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,718,4358.000000,118,0,12185.000000,1769.200000,extended,nbiot,180 +on10,0,0,24,1,0,145,4325.000000,118,0,1636.000000,1756.000000,extended,nbiot,180 +on3,0,0,24,1,0,669,4320.000000,118,0,12145.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,118,0,8937.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,403,4320.000000,118,0,8809.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,118,0,26273.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,119,0,10132.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,451,4320.000000,119,0,9989.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,806,4320.000000,119,0,15032.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,119,0,31940.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,470,4320.000000,119,0,10029.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,152,4332.000000,119,0,2427.000000,1758.800000,extended,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,119,0,26424.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,52,4320.000000,119,0,2467.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,667,4320.000000,119,0,13430.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4323.000000,119,0,-1.000000,1989.200000,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,119,0,32005.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,3600,4320.000000,120,0,72553.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1371,4320.000000,120,0,25999.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,120,0,2112.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,916,4320.000000,120,0,20321.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,120,0,43681.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,120,0,31623.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4369.000000,120,0,-1.000000,2059.600000,extended,nbiot,180 +on4,0,0,24,1,0,128,4320.000000,120,0,1984.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1412,4332.000000,120,0,26039.000000,1758.800000,extended,nbiot,180 +on9,0,0,24,1,0,11,4320.000000,120,0,2152.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2276,4320.000000,120,0,43520.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,952,4320.000000,120,0,20281.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2619,4320.000000,120,0,51710.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,121,0,19016.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,121,0,67590.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,121,0,3328.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,121,0,34753.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,4295,4335.000000,121,0,84199.000000,1760.000000,extended,nbiot,180 +on0,1,9,24,0,0,0,4336.000000,121,0,-1.000000,1968.400000,extended,nbiot,180 +on12,0,0,24,1,0,1228,4328.000000,121,0,23850.000000,1757.200000,extended,nbiot,180 +on6,0,0,24,1,0,273,4320.000000,121,0,6005.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,407,4320.000000,121,0,7555.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,121,0,23989.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,122,0,29182.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,362,4320.000000,122,0,7490.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,122,0,15224.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,478,4320.000000,122,0,7450.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,122,0,29090.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,122,0,22598.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1808,4320.000000,122,0,37507.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4355.000000,122,0,-1.000000,2054.000000,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,122,0,2924.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,947,4320.000000,122,0,20688.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,122,0,37467.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,69,4320.000000,122,0,2818.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3420,4320.000000,122,0,70113.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,153,4333.000000,123,0,1417.000000,1759.200000,extended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,123,0,32999.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2297,4320.000000,123,0,43396.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,123,0,5771.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,123,0,32898.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,123,0,-1.000000,2014.000000,extended,nbiot,180 +on5,0,0,24,1,0,2197,4320.000000,123,0,43356.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,370,4320.000000,123,0,7980.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2330,4350.000000,123,0,43436.000000,1766.000000,extended,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,123,0,39428.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,123,0,19837.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,306,4320.000000,123,0,5698.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1749,4320.000000,124,0,34023.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,841,4320.000000,124,0,16490.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,124,0,44302.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3600,4320.000000,124,0,74355.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,3931,4331.000000,124,0,77096.000000,1758.400000,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,124,0,23167.000000,1754.000000,extended,nbiot,180 +on0,1,9,24,0,0,0,4332.000000,124,0,-1.000000,1966.800000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,124,0,16625.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,850,4320.000000,124,0,16530.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,3060,4320.000000,124,0,61888.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,125,0,3314.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,671,4320.000000,125,0,11297.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1019,4320.000000,125,0,21354.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,125,0,8693.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,192,4320.000000,125,0,6476.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,125,0,15726.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3060,4320.000000,125,0,62926.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1087,4320.000000,125,0,22433.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,125,0,3405.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,125,0,31719.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4381.000000,125,0,-1.000000,2064.400000,extended,nbiot,180 +on12,0,0,24,1,0,95,4320.000000,125,0,3243.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3109,4320.000000,125,0,62880.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,447,4320.000000,126,0,8381.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,126,0,21050.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,126,0,39885.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,267,4320.000000,126,0,4089.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4327.000000,126,0,-1.000000,2016.800000,extended,nbiot,180 +on2,0,0,24,1,0,911,4320.000000,126,0,20955.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,911,4320.000000,126,0,21090.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,126,0,59712.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,126,0,38961.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3777,4357.000000,126,0,73189.000000,1768.800000,extended,nbiot,180 +on12,0,0,24,1,0,2351,4320.000000,126,0,47634.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,250,4320.000000,126,0,4129.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,361,4320.000000,127,0,7731.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4329.000000,127,0,-1.000000,2043.600000,extended,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,127,0,11393.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,127,0,19973.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2577,4320.000000,127,0,53594.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,881,4341.000000,127,0,15167.000000,1762.400000,extended,nbiot,180 +on2,0,0,24,1,0,468,4320.000000,127,0,7691.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1518,4320.000000,127,0,30425.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,127,0,1216.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1614,4354.000000,127,0,30385.000000,1767.600000,extended,nbiot,180 +on9,0,0,24,1,0,1478,4320.000000,127,0,30465.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2068,4320.000000,127,0,42177.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,87,4320.000000,127,0,1102.000000,1754.000000,extended,nbiot,180 +on0,1,9,24,0,0,0,4332.000000,128,0,-1.000000,1966.800000,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,128,0,15606.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,128,0,9896.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3166,4320.000000,128,0,61467.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,128,0,9971.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1029,4320.000000,128,0,18930.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2608,4320.000000,128,0,50892.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2050,4320.000000,128,0,41364.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2095,4320.000000,128,0,41324.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,128,0,24727.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,129,0,19993.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,129,0,41927.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,129,0,20037.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2340,4320.000000,129,0,48090.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,736,4320.000000,129,0,17497.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,129,0,51152.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,319,4320.000000,129,0,6994.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1861,4320.000000,129,0,37435.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4335.000000,129,0,-1.000000,2046.000000,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,129,0,8039.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1410,4330.000000,129,0,28326.000000,1758.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,129,0,2590.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,129,0,11502.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,193,4320.000000,130,0,5214.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,609,4320.000000,130,0,11910.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,130,0,3258.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3960,4320.000000,130,0,81501.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1457,4320.000000,130,0,32233.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,130,0,5174.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,853,4320.000000,130,0,16465.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,130,0,8569.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,588,4320.000000,130,0,11950.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4338.000000,130,0,-1.000000,2047.200000,extended,nbiot,180 +on11,0,0,24,1,0,4140,4320.000000,130,0,85870.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,130,0,5265.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,130,0,16603.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1544,4320.000000,131,0,29626.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,131,0,51535.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2753,4320.000000,131,0,56068.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,158,4338.000000,131,0,1801.000000,1761.200000,extended,nbiot,180 +on3,0,0,24,1,0,1901,4320.000000,131,0,36597.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,131,0,51371.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,131,0,4625.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,48,4320.000000,131,0,1841.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,519,4339.000000,131,0,8552.000000,1761.600000,extended,nbiot,180 +on11,0,0,24,1,0,3240,4320.000000,131,0,65601.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4375.000000,131,0,-1.000000,2062.000000,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,131,0,13000.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,764,4320.000000,131,0,14693.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,132,0,4397.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,69,4320.000000,132,0,899.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,132,0,35635.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,132,0,37098.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2160,4320.000000,132,0,44776.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,132,0,12024.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3509,4320.000000,132,0,69189.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,132,0,995.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4324.000000,132,0,-1.000000,2041.600000,extended,nbiot,180 +on2,0,0,24,1,0,1364,4320.000000,132,0,26797.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2700,4320.000000,132,0,57225.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,142,4322.000000,132,0,939.000000,1754.800000,extended,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,132,0,57135.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,130,4320.000000,133,0,2771.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2170,4320.000000,133,0,45581.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,223,4320.000000,133,0,4682.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,133,0,54253.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,133,0,18494.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2238,4320.000000,133,0,45541.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,326,4326.000000,133,0,4762.000000,1756.400000,extended,nbiot,180 +on4,0,0,24,1,0,2064,4320.000000,133,0,41620.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,133,0,-1.000000,2040.000000,extended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,133,0,14850.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,354,4354.000000,133,0,4722.000000,1767.600000,extended,nbiot,180 +on6,0,0,24,1,0,3467,4320.000000,133,0,70612.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,20,4320.000000,133,0,2811.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,134,0,27300.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3744,4324.000000,134,0,73942.000000,1755.600000,extended,nbiot,180 +on0,1,10,24,0,0,0,4396.000000,134,0,-1.000000,2018.400000,extended,nbiot,180 +on11,0,0,24,1,0,613,4320.000000,134,0,11640.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1298,4320.000000,134,0,27163.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,361,4320.000000,134,0,9301.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1290,4320.000000,134,0,27203.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,134,0,27253.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,134,0,18644.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1285,4320.000000,134,0,27340.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,134,0,11687.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,135,0,59151.000000,1754.000000,extended,nbiot,180 +on0,1,8,24,0,0,0,4345.000000,135,0,-1.000000,1946.000000,extended,nbiot,180 +on4,0,0,24,1,0,851,4320.000000,135,0,17150.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3323,4320.000000,135,0,65719.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,135,0,23610.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,412,4320.000000,135,0,7799.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,135,0,7964.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,276,4320.000000,135,0,4562.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,135,0,2635.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,366,4320.000000,136,0,8267.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1269,4320.000000,136,0,26676.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,136,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,3467,4320.000000,136,0,69743.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4355.000000,136,0,-1.000000,2028.000000,extended,nbiot,180 +on10,0,0,24,1,0,1380,4320.000000,136,0,26636.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,915,4320.000000,136,0,20857.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1328,4320.000000,136,0,26716.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,392,4320.000000,136,0,8307.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,136,0,34248.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,136,0,53512.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,136,0,20908.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,809,4320.000000,136,0,15163.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,211,4320.000000,137,0,6307.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3755,4335.000000,137,0,72240.000000,1760.000000,extended,nbiot,180 +on6,0,0,24,1,0,222,4320.000000,137,0,6156.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,137,0,6267.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1440,4320.000000,137,0,29196.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,753,4320.000000,137,0,16504.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,4240,4320.000000,137,0,84818.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3212,4332.000000,137,0,62884.000000,1758.800000,extended,nbiot,180 +on0,1,12,24,0,0,0,4369.000000,137,0,-1.000000,2059.600000,extended,nbiot,180 +on9,0,0,24,1,0,2546,4320.000000,137,0,53367.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,137,0,394.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,994,4320.000000,137,0,18245.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2503,4343.000000,137,0,48816.000000,1763.200000,extended,nbiot,180 +on9,0,0,24,1,0,3346,4320.000000,138,0,66252.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,138,0,24335.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,104,4320.000000,138,0,1639.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,802,4320.000000,138,0,15378.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,138,0,20502.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1199,4320.000000,138,0,24230.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,138,0,39105.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,138,0,13174.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2880,4320.000000,138,0,59857.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2880,4320.000000,138,0,59945.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1620,4320.000000,138,0,34986.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,695,4335.000000,138,0,12996.000000,1760.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4358.000000,138,0,-1.000000,2055.200000,extended,nbiot,180 +on0,1,11,24,0,0,0,4348.000000,139,0,-1.000000,2025.200000,extended,nbiot,180 +on5,0,0,24,1,0,536,4356.000000,139,0,10127.000000,1768.400000,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,139,0,4093.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,139,0,16564.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,139,0,14182.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,139,0,3942.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1262,4320.000000,139,0,25983.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,510,4330.000000,139,0,10087.000000,1758.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,139,0,10190.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,201,4320.000000,139,0,3982.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,4,4320.000000,139,0,3386.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,139,0,26103.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,335,4335.000000,140,0,5076.000000,1760.000000,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,140,0,34087.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,742,4320.000000,140,0,15563.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,689,4329.000000,140,0,11236.000000,1757.600000,extended,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,140,0,30249.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,140,0,11337.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,897,4357.000000,140,0,15523.000000,1768.800000,extended,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,140,0,41398.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1459,4320.000000,140,0,30289.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2520,4320.000000,140,0,51085.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1798,4358.000000,140,0,34023.000000,1769.200000,extended,nbiot,180 +on4,0,0,24,1,0,615,4320.000000,140,0,11196.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4348.000000,140,0,-1.000000,2051.200000,extended,nbiot,180 +on5,0,0,24,1,0,3471,4320.000000,141,0,70940.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,321,4321.000000,141,0,5451.000000,1754.400000,extended,nbiot,180 +on2,0,0,24,1,0,790,4320.000000,141,0,15550.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1273,4320.000000,141,0,25641.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,141,0,50916.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4359.000000,141,0,-1.000000,2029.600000,extended,nbiot,180 +on1,0,0,24,1,0,41,4320.000000,141,0,661.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,127,4320.000000,141,0,701.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3676,4320.000000,141,0,73615.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,141,0,25038.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1670,4320.000000,141,0,34850.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3346,4320.000000,141,0,65257.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,3149,4320.000000,142,0,62770.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2133,4333.000000,142,0,39893.000000,1759.200000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,142,0,6331.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,536,4356.000000,142,0,8261.000000,1768.400000,extended,nbiot,180 +on0,1,11,24,0,0,0,4322.000000,142,0,-1.000000,2014.800000,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,142,0,39987.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,142,0,28230.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,142,0,2046.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,380,4320.000000,142,0,8301.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,878,4338.000000,142,0,15638.000000,1761.200000,extended,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,142,0,53535.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,142,0,14105.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,143,0,11558.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,143,0,51012.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1694,4320.000000,143,0,32600.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4356.000000,143,0,-1.000000,2054.400000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,143,0,2659.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1198,4320.000000,143,0,24145.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1852,4320.000000,143,0,37271.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2340,4320.000000,143,0,47778.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1035,4320.000000,143,0,20082.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,143,0,6074.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,143,0,30720.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,143,0,37401.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2713,4320.000000,143,0,54864.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1065,4345.000000,144,0,20027.000000,1764.000000,extended,nbiot,180 +on11,0,0,24,1,0,1078,4358.000000,144,0,20067.000000,1769.200000,extended,nbiot,180 +on6,0,0,24,1,0,539,4359.000000,144,0,9355.000000,1769.600000,extended,nbiot,180 +on5,0,0,24,1,0,1631,4320.000000,144,0,33096.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,144,0,-1.000000,2040.000000,extended,nbiot,180 +on2,0,0,24,1,0,1117,4320.000000,144,0,24652.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,729,4320.000000,144,0,16901.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3178,4320.000000,144,0,62831.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1001,4320.000000,144,0,19987.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1122,4320.000000,144,0,24612.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,810,4320.000000,144,0,16861.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2230,4320.000000,144,0,45501.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,144,0,9439.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,145,0,2338.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,145,0,6378.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,145,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1023,4320.000000,145,0,21322.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,145,0,16968.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,145,0,33270.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2189,4320.000000,145,0,44780.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,145,0,26230.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,145,0,31690.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2222,4320.000000,145,0,44860.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,145,0,-1.000000,2014.000000,extended,nbiot,180 +on5,0,0,24,1,0,2290,4320.000000,145,0,44820.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,998,4320.000000,145,0,21362.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2880,4320.000000,146,0,60622.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2520,4320.000000,146,0,52222.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,21,4320.000000,146,0,1525.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,264,4320.000000,146,0,4541.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,146,0,1403.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1780,4340.000000,146,0,33294.000000,1762.000000,extended,nbiot,180 +on12,0,0,24,1,0,817,4320.000000,146,0,17501.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,39,4320.000000,146,0,1485.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,146,0,1445.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,146,0,30513.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,146,0,-1.000000,2040.000000,extended,nbiot,180 +on3,0,0,24,1,0,1166,4320.000000,146,0,22260.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,146,0,11588.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2814,4320.000000,147,0,56519.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,147,0,7351.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,329,4329.000000,147,0,6689.000000,1757.600000,extended,nbiot,180 +on0,1,11,24,0,0,0,4342.000000,147,0,-1.000000,2022.800000,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,147,0,13927.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,772,4320.000000,147,0,17239.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,147,0,17371.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,147,0,33548.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,697,4337.000000,147,0,13765.000000,1760.800000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,2308,4328.000000,147,0,44505.000000,1757.200000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,147,0,26746.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,147,0,2997.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,148,0,-1.000000,1988.000000,extended,nbiot,180 +on7,0,0,24,1,0,1465,4320.000000,148,0,30740.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,607,4320.000000,148,0,12702.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,3494,4320.000000,148,0,71100.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1301,4320.000000,148,0,27191.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,596,4320.000000,148,0,12742.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1387,4320.000000,148,0,27231.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,1618,4358.000000,148,0,30700.000000,1769.200000,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,148,0,9424.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,985,4320.000000,148,0,20799.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1062,4342.000000,148,0,20839.000000,1762.800000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,149,0,23598.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,149,0,52902.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,149,0,3257.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1776,4336.000000,149,0,35001.000000,1760.400000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,149,0,3180.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,149,0,52854.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3379,4320.000000,149,0,66531.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,149,0,23539.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4344.000000,149,0,-1.000000,2023.600000,extended,nbiot,180 +on12,0,0,24,1,0,3754,4334.000000,149,0,74302.000000,1759.600000,extended,nbiot,180 +on2,0,0,24,1,0,3729,4320.000000,149,0,74262.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1883,4320.000000,149,0,37309.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1065,4345.000000,150,0,20874.000000,1764.000000,extended,nbiot,180 +on4,0,0,24,1,0,3041,4341.000000,150,0,60220.000000,1762.400000,extended,nbiot,180 +on11,0,0,24,1,0,631,4320.000000,150,0,13689.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3170,4320.000000,150,0,62146.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,407,4320.000000,150,0,8913.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1380,4320.000000,150,0,28535.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1146,4320.000000,150,0,24798.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,150,0,9082.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,150,0,38936.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4349.000000,150,0,-1.000000,2051.600000,extended,nbiot,180 +on10,0,0,24,1,0,523,4343.000000,150,0,8953.000000,1763.200000,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,150,0,13777.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,150,0,28615.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4437.000000,151,0,-1.000000,2060.800000,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,151,0,5561.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,151,0,13623.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,151,0,342.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,151,0,38388.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,151,0,15364.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3105,4320.000000,151,0,62900.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1604,4344.000000,151,0,31734.000000,1763.600000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,151,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,1620,4320.000000,151,0,33852.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,351,4351.000000,151,0,5496.000000,1766.400000,extended,nbiot,180 +on11,0,0,24,1,0,766,4320.000000,151,0,15211.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,151,0,55053.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,227,4320.000000,152,0,4463.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,152,0,14241.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,909,4320.000000,152,0,20714.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1965,4345.000000,152,0,37855.000000,1764.000000,extended,nbiot,180 +on12,0,0,24,1,0,1062,4342.000000,152,0,20674.000000,1762.800000,extended,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,152,0,34126.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,152,0,40558.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,152,0,9994.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2538,4320.000000,152,0,51944.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4334.000000,152,0,-1.000000,2045.600000,extended,nbiot,180 +on2,0,0,24,1,0,635,4320.000000,152,0,14087.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,822,4320.000000,152,0,15079.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1077,4357.000000,152,0,20634.000000,1768.800000,extended,nbiot,180 +on12,0,0,24,1,0,3129,4320.000000,153,0,62385.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3240,4320.000000,153,0,66102.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,153,0,-1.000000,2040.000000,extended,nbiot,180 +on6,0,0,24,1,0,4140,4320.000000,153,0,83692.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3592,4352.000000,153,0,69239.000000,1766.800000,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,153,0,17008.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2289,4320.000000,153,0,46278.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,153,0,26091.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,751,4320.000000,153,0,16954.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,153,0,18447.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,400,4320.000000,153,0,9422.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,241,4320.000000,153,0,5480.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3261,4320.000000,153,0,66142.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,154,0,5623.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,154,0,3294.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,154,0,8907.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2938,4320.000000,154,0,59210.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,549,4320.000000,154,0,13640.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,492,4320.000000,154,0,8814.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4344.000000,154,0,-1.000000,2023.600000,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,154,0,34445.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,154,0,13600.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,474,4320.000000,154,0,8774.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3344,4320.000000,154,0,64960.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,35,4320.000000,154,0,3145.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,155,0,47782.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,155,0,52798.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,965,4320.000000,155,0,20254.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,155,0,13955.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,155,0,32559.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,155,0,63982.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,720,4320.000000,155,0,15762.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,155,0,2698.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2716,4320.000000,155,0,54135.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3240,4320.000000,155,0,65698.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3236,4356.000000,155,0,63909.000000,1768.400000,extended,nbiot,180 +on0,1,12,24,0,0,0,4330.000000,155,0,-1.000000,2044.000000,extended,nbiot,180 +on12,0,0,24,1,0,4140,4320.000000,155,0,86237.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2700,4320.000000,156,0,55037.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2520,4320.000000,156,0,52252.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3343,4320.000000,156,0,67989.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,156,0,11908.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,882,4342.000000,156,0,15037.000000,1762.800000,extended,nbiot,180 +on7,0,0,24,1,0,1980,4320.000000,156,0,39807.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,382,4320.000000,156,0,9856.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,435,4320.000000,156,0,9816.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4333.000000,156,0,-1.000000,1993.200000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,3259,4320.000000,156,0,67949.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,919,4320.000000,156,0,20860.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1217,4320.000000,157,0,23965.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4331.000000,157,0,-1.000000,1992.400000,extended,nbiot,180 +on7,0,0,24,1,0,164,4344.000000,157,0,1874.000000,1763.600000,extended,nbiot,180 +on10,0,0,24,1,0,2823,4320.000000,157,0,54446.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,157,0,49769.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,157,0,6093.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,84,4320.000000,157,0,1914.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,157,0,24081.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,20,4320.000000,157,0,1954.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,157,0,6200.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1892,4320.000000,157,0,37208.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3037,4337.000000,158,0,59429.000000,1760.800000,extended,nbiot,180 +on8,0,0,24,1,0,1647,4320.000000,158,0,33314.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3480,4320.000000,158,0,70093.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,158,0,2238.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1443,4320.000000,158,0,31216.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3960,4320.000000,158,0,80221.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,238,4320.000000,158,0,5230.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,158,0,11606.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4342.000000,158,0,-1.000000,2022.800000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,158,0,2346.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,158,0,10474.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,876,4336.000000,158,0,15908.000000,1760.400000,extended,nbiot,180 +on10,0,0,24,1,0,1688,4320.000000,159,0,35763.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,159,0,4578.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,159,0,15941.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,3217,4337.000000,159,0,63084.000000,1760.800000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,159,0,746.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,159,0,893.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,417,4320.000000,159,0,10159.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,159,0,11871.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,159,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1510,4320.000000,159,0,31788.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2160,4320.000000,159,0,43797.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4367.000000,159,0,-1.000000,2032.800000,extended,nbiot,180 +on9,0,0,24,1,0,638,4320.000000,159,0,11828.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2633,4320.000000,160,0,53642.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2700,4320.000000,160,0,54928.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,829,4320.000000,160,0,16926.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1778,4338.000000,160,0,35265.000000,1761.200000,extended,nbiot,180 +on8,0,0,24,1,0,558,4320.000000,160,0,11462.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1911,4320.000000,160,0,39231.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,160,0,-1.000000,2040.000000,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,160,0,2762.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2113,4320.000000,160,0,41182.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2001,4320.000000,160,0,41222.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,655,4320.000000,160,0,11382.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,369,4320.000000,160,0,7918.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,568,4320.000000,160,0,11422.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1,4320.000000,161,0,1807.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3436,4320.000000,161,0,68949.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2394,4320.000000,161,0,48001.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,161,0,19389.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,161,0,34535.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,525,4345.000000,161,0,9627.000000,1764.000000,extended,nbiot,180 +on4,0,0,24,1,0,1471,4320.000000,161,0,29000.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4358.000000,161,0,-1.000000,2055.200000,extended,nbiot,180 +on11,0,0,24,1,0,4140,4320.000000,161,0,84939.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3960,4320.000000,161,0,80816.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,828,4320.000000,161,0,17713.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,161,0,48123.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1230,4330.000000,161,0,24323.000000,1758.000000,extended,nbiot,180 +on11,0,0,24,1,0,622,4320.000000,162,0,11075.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,2031,4320.000000,162,0,40807.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2288,4320.000000,162,0,44094.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,756,4320.000000,162,0,14510.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,719,4359.000000,162,0,11035.000000,1769.600000,extended,nbiot,180 +on7,0,0,24,1,0,209,4320.000000,162,0,6472.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,3763,4343.000000,162,0,73492.000000,1763.200000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,162,0,393.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,162,0,-1.000000,1988.000000,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,162,0,37833.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1139,4320.000000,162,0,24978.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,163,0,23533.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,163,0,29713.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,533,4353.000000,163,0,9848.000000,1767.200000,extended,nbiot,180 +on1,0,0,24,1,0,2422,4320.000000,163,0,49923.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,163,0,53718.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,345,4345.000000,163,0,4652.000000,1764.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,163,0,-1.000000,2040.000000,extended,nbiot,180 +on7,0,0,24,1,0,668,4320.000000,163,0,13143.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,207,4320.000000,163,0,4692.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,456,4320.000000,163,0,9888.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1247,4347.000000,163,0,23485.000000,1764.800000,extended,nbiot,180 +on4,0,0,24,1,0,1680,4320.000000,163,0,35252.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,163,0,4759.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,164,0,6913.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,164,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,368,4320.000000,164,0,10153.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,207,4320.000000,164,0,6953.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,164,0,33231.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,730,4320.000000,164,0,16188.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4386.000000,164,0,-1.000000,2014.400000,extended,nbiot,180 +on2,0,0,24,1,0,1400,4320.000000,164,0,27323.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,521,4341.000000,164,0,10113.000000,1762.400000,extended,nbiot,180 +on10,0,0,24,1,0,3479,4320.000000,164,0,69710.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,164,0,16148.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,164,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,164,0,37708.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1104,4320.000000,165,0,23476.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,165,0,29673.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1293,4320.000000,165,0,27701.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2331,4351.000000,165,0,44677.000000,1766.400000,extended,nbiot,180 +on8,0,0,24,1,0,479,4320.000000,165,0,9724.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4368.000000,165,0,-1.000000,2059.200000,extended,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,165,0,27767.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,682,4322.000000,165,0,12446.000000,1754.800000,extended,nbiot,180 +on11,0,0,24,1,0,585,4320.000000,165,0,12406.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1080,4320.000000,165,0,23436.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2376,4320.000000,165,0,48396.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,165,0,5220.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,165,0,9781.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,166,0,56361.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,166,0,6307.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4330.000000,166,0,-1.000000,2018.000000,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,166,0,8399.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1979,4359.000000,166,0,36267.000000,1769.600000,extended,nbiot,180 +on4,0,0,24,1,0,141,4321.000000,166,0,1110.000000,1754.400000,extended,nbiot,180 +on1,0,0,24,1,0,24,4320.000000,166,0,1150.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3055,4355.000000,166,0,59990.000000,1768.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,166,0,18790.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2443,4320.000000,166,0,49334.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,166,0,12667.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,186,4320.000000,166,0,6347.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,166,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,3655,4320.000000,167,0,74123.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,287,4320.000000,167,0,5893.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1114,4320.000000,167,0,24428.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,167,0,37503.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,51,4320.000000,167,0,2252.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,167,0,-1.000000,2014.000000,extended,nbiot,180 +on2,0,0,24,1,0,1635,4320.000000,167,0,32900.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,46,4320.000000,167,0,2292.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,167,0,8035.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,167,0,68087.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,167,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,370,4320.000000,167,0,8075.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,799,4320.000000,167,0,15213.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1608,4348.000000,168,0,29475.000000,1765.200000,extended,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,168,0,29583.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,168,0,21162.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,168,0,8781.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,168,0,11125.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,639,4320.000000,168,0,10978.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,168,0,5397.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1688,4320.000000,168,0,33044.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4358.000000,168,0,-1.000000,2055.200000,extended,nbiot,180 +on7,0,0,24,1,0,1946,4326.000000,168,0,37026.000000,1756.400000,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,168,0,37131.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3600,4320.000000,168,0,74398.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,154,4334.000000,168,0,439.000000,1759.600000,extended,nbiot,180 +on4,0,0,24,1,0,2594,4320.000000,169,0,52008.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2036,4320.000000,169,0,40603.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2700,4320.000000,169,0,55815.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,169,0,24160.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,173,4353.000000,169,0,1577.000000,1767.200000,extended,nbiot,180 +on1,0,0,24,1,0,268,4320.000000,169,0,4486.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,169,0,20540.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,169,0,9329.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4357.000000,169,0,-1.000000,2028.800000,extended,nbiot,180 +on3,0,0,24,1,0,696,4336.000000,169,0,13386.000000,1760.400000,extended,nbiot,180 +on10,0,0,24,1,0,1980,4320.000000,169,0,40780.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,169,0,24240.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,170,0,32753.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,170,0,27136.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2880,4320.000000,170,0,59444.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,555,4320.000000,170,0,11074.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,170,0,701.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,170,0,27290.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,558,4320.000000,170,0,11034.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,170,0,579.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,170,0,20090.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3638,4320.000000,170,0,72916.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4359.000000,170,0,-1.000000,2055.600000,extended,nbiot,180 +on6,0,0,24,1,0,3420,4320.000000,170,0,70775.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,9,4320.000000,170,0,619.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,171,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,171,0,1700.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1701,4320.000000,171,0,34125.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1943,4323.000000,171,0,38317.000000,1755.200000,extended,nbiot,180 +on7,0,0,24,1,0,237,4320.000000,171,0,4708.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2224,4320.000000,171,0,44685.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1071,4351.000000,171,0,18695.000000,1766.400000,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,171,0,7691.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,171,0,13300.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2340,4320.000000,171,0,47220.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,171,0,-1.000000,2014.000000,extended,nbiot,180 +on1,0,0,24,1,0,1183,4320.000000,171,0,22460.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3500,4320.000000,171,0,69907.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,639,4320.000000,172,0,11819.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,172,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,1466,4320.000000,172,0,30177.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1492,4320.000000,172,0,30217.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4351.000000,172,0,-1.000000,2026.400000,extended,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,172,0,65374.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1244,4344.000000,172,0,24518.000000,1763.600000,extended,nbiot,180 +on7,0,0,24,1,0,1087,4320.000000,172,0,24558.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2055,4320.000000,172,0,41417.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,172,0,4918.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,114,4320.000000,172,0,912.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,172,0,21442.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3240,4320.000000,172,0,65460.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,3780,4320.000000,173,0,77909.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,173,0,-1.000000,2040.000000,extended,nbiot,180 +on11,0,0,24,1,0,3605,4320.000000,173,0,72430.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,173,0,65579.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1505,4320.000000,173,0,29332.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,2520,4320.000000,173,0,51941.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1066,4346.000000,173,0,21064.000000,1764.400000,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,173,0,1738.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,173,0,17139.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,617,4320.000000,173,0,12642.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,33,4320.000000,173,0,1778.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1952,4332.000000,173,0,36833.000000,1758.800000,extended,nbiot,180 +on4,0,0,24,1,0,2443,4320.000000,173,0,49670.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,174,0,37138.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2891,4320.000000,174,0,60958.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,444,4320.000000,174,0,7677.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,174,0,19897.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,174,0,24106.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1827,4320.000000,174,0,37178.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,687,4327.000000,174,0,12177.000000,1756.800000,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,174,0,35338.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,627,4320.000000,174,0,12137.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,164,4344.000000,174,0,439.000000,1763.600000,extended,nbiot,180 +on0,1,11,24,0,0,0,4323.000000,174,0,-1.000000,2015.200000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,174,0,28112.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,5,4320.000000,175,0,3347.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,781,4320.000000,175,0,17350.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,175,0,10497.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,207,4320.000000,175,0,6468.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4375.000000,175,0,-1.000000,2036.000000,extended,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,175,0,52665.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,720,4320.000000,175,0,17506.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,659,4320.000000,175,0,13546.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,175,0,31145.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,731,4320.000000,175,0,17390.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,175,0,3307.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,175,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,175,0,41292.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2404,4320.000000,176,0,49355.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,132,4320.000000,176,0,524.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2375,4320.000000,176,0,49395.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,615,4320.000000,176,0,12841.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,176,0,29173.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1501,4320.000000,176,0,29047.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1739,4320.000000,176,0,35542.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,176,0,694.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1800,4320.000000,176,0,38402.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4350.000000,176,0,-1.000000,2026.000000,extended,nbiot,180 +on1,0,0,24,1,0,2823,4320.000000,176,0,54834.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,995,4320.000000,176,0,20736.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,95,4320.000000,177,0,309.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,177,0,51177.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,177,0,5806.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1173,4320.000000,177,0,23414.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,177,0,34463.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,177,0,7698.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,299,4320.000000,177,0,5693.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,177,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,2340,4320.000000,177,0,47593.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4389.000000,177,0,-1.000000,2041.600000,extended,nbiot,180 +on1,0,0,24,1,0,2372,4320.000000,177,0,47421.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,177,0,20943.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,177,0,16517.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,178,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,287,4320.000000,178,0,4637.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,178,0,37823.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,178,0,4723.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,178,0,41557.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,178,0,-1.000000,2014.000000,extended,nbiot,180 +on7,0,0,24,1,0,3090,4320.000000,178,0,63171.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1662,4320.000000,178,0,33905.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,178,0,14798.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,178,0,13236.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,387,4320.000000,178,0,10205.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,178,0,20406.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3378,4320.000000,178,0,67780.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,179,0,26385.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,552,4320.000000,179,0,12383.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,179,0,8490.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,179,0,5899.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,179,0,-1.000000,2014.000000,extended,nbiot,180 +on9,0,0,24,1,0,22,4320.000000,179,0,3290.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,391,4320.000000,179,0,8400.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,179,0,12343.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,3420,4320.000000,179,0,71789.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1583,4323.000000,179,0,31275.000000,1755.200000,extended,nbiot,180 +on10,0,0,24,1,0,401,4320.000000,179,0,8360.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3649,4320.000000,179,0,74230.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,180,0,3441.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,631,4320.000000,180,0,13057.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2540,4320.000000,180,0,53521.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,180,0,5595.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,838,4320.000000,180,0,16912.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,125,4320.000000,180,0,3263.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3420,4320.000000,180,0,70187.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,423,4320.000000,180,0,9799.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,3644,4320.000000,180,0,72524.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4387.000000,180,0,-1.000000,2066.800000,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,180,0,42001.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,180,0,27562.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,351,4351.000000,180,0,5549.000000,1766.400000,extended,nbiot,180 +on12,0,0,24,1,0,115,4320.000000,181,0,2694.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,181,0,18997.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,181,0,2774.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,181,0,11400.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,181,0,19143.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,4263,4320.000000,181,0,84827.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4328.000000,181,0,-1.000000,1991.200000,extended,nbiot,180 +on9,0,0,24,1,0,1355,4320.000000,181,0,27554.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1151,4320.000000,181,0,24081.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,181,0,7910.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,181,0,42289.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,182,0,31745.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,635,4320.000000,182,0,13934.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1143,4320.000000,182,0,23420.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,182,0,14048.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,182,0,54531.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3780,4320.000000,182,0,78525.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,62,4320.000000,182,0,3101.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2340,4320.000000,182,0,48793.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,182,0,6422.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4353.000000,182,0,-1.000000,2001.200000,extended,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,182,0,39419.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1037,4320.000000,183,0,21246.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,571,4320.000000,183,0,11742.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,2823,4320.000000,183,0,55927.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,183,0,42524.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,183,0,11918.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4356.000000,183,0,-1.000000,2002.400000,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,183,0,22928.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2160,4320.000000,183,0,46447.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,370,4320.000000,183,0,7601.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,258,4320.000000,183,0,5280.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,2050,4320.000000,183,0,42408.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1935,4320.000000,184,0,36542.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,184,0,42698.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,184,0,19629.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,184,0,17521.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1367,4320.000000,184,0,26447.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,189,4320.000000,184,0,6234.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,184,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1800,4320.000000,184,0,36633.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2489,4329.000000,184,0,49834.000000,1757.600000,extended,nbiot,180 +on12,0,0,24,1,0,2160,4320.000000,184,0,45199.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2134,4334.000000,184,0,42633.000000,1759.600000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,184,0,-1.000000,2014.000000,extended,nbiot,180 +on8,0,0,24,1,0,1085,4320.000000,184,0,22454.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2026,4320.000000,185,0,42643.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,24,4320.000000,185,0,1938.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,2488,4328.000000,185,0,49067.000000,1757.200000,extended,nbiot,180 +on4,0,0,24,1,0,321,4321.000000,185,0,5706.000000,1754.400000,extended,nbiot,180 +on9,0,0,24,1,0,2678,4338.000000,185,0,51742.000000,1761.200000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,185,0,2026.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,3368,4320.000000,185,0,66962.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,185,0,-1.000000,2040.000000,extended,nbiot,180 +on12,0,0,24,1,0,705,4345.000000,185,0,14086.000000,1764.000000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,185,0,14150.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,977,4320.000000,185,0,19454.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,185,0,16298.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,185,0,16358.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,497,4320.000000,186,0,9878.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,213,4320.000000,186,0,5565.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3362,4320.000000,186,0,66250.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4332.000000,186,0,-1.000000,1992.800000,extended,nbiot,180 +on6,0,0,24,1,0,1554,4320.000000,186,0,30752.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,258,4320.000000,186,0,5605.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,94,4320.000000,186,0,2319.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,186,0,12208.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,375,4320.000000,186,0,9918.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,186,0,39373.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,186,0,52266.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,643,4320.000000,187,0,11812.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,309,4320.000000,187,0,6904.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,187,0,30356.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,187,0,2035.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4324.000000,187,0,-1.000000,2015.600000,extended,nbiot,180 +on3,0,0,24,1,0,4140,4320.000000,187,0,84969.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1931,4320.000000,187,0,36326.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,752,4320.000000,187,0,15578.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1641,4320.000000,187,0,35596.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,187,0,15722.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,136,4320.000000,187,0,1995.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1446,4320.000000,187,0,30304.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2628,4320.000000,188,0,52290.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,188,0,40103.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1134,4320.000000,188,0,24590.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,188,0,25775.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2874,4354.000000,188,0,55802.000000,1767.600000,extended,nbiot,180 +on0,1,10,24,0,0,0,4374.000000,188,0,-1.000000,2009.600000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,188,0,2427.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,188,0,17076.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,188,0,17154.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,188,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,188,0,2516.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,464,4320.000000,188,0,9820.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,188,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1100,4320.000000,189,0,23690.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1462,4320.000000,189,0,31372.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,189,0,12478.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4324.000000,189,0,-1.000000,2041.600000,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,189,0,12621.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,189,0,2870.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,18,4320.000000,189,0,2910.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,189,0,25951.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,189,0,23732.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,198,4320.000000,189,0,6545.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,189,0,40827.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,2322,4342.000000,189,0,45584.000000,1762.800000,extended,nbiot,180 +on8,0,0,24,1,0,2912,4320.000000,189,0,59535.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,2520,4320.000000,190,0,50862.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1143,4320.000000,190,0,23194.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1539,4320.000000,190,0,32057.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,190,0,5120.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,242,4320.000000,190,0,5200.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,206,4320.000000,190,0,5160.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,190,0,16278.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,190,0,11393.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4410.000000,190,0,-1.000000,2050.000000,extended,nbiot,180 +on1,0,0,24,1,0,1753,4320.000000,190,0,33319.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2663,4323.000000,190,0,50693.000000,1755.200000,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,190,0,18801.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,191,0,12992.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1889,4320.000000,191,0,37213.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1028,4320.000000,191,0,19066.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,3510,4320.000000,191,0,68839.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4361.000000,191,0,-1.000000,2030.400000,extended,nbiot,180 +on5,0,0,24,1,0,312,4320.000000,191,0,3786.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2550,4320.000000,191,0,52119.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,191,0,8656.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,832,4320.000000,191,0,17612.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,191,0,24061.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,728,4320.000000,191,0,17652.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1298,4320.000000,191,0,26997.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,192,0,65160.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,270,4320.000000,192,0,5772.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,192,0,40834.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,4087,4320.000000,192,0,81525.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,104,4320.000000,192,0,967.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,192,0,31197.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1664,4320.000000,192,0,35627.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,1620,4320.000000,192,0,35709.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,192,0,19896.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1865,4320.000000,192,0,38847.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4371.000000,192,0,-1.000000,2060.400000,extended,nbiot,180 +on11,0,0,24,1,0,317,4320.000000,192,0,5732.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,192,0,38949.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2523,4320.000000,193,0,50697.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4346.000000,193,0,-1.000000,2050.400000,extended,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,193,0,30119.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2546,4320.000000,193,0,50657.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,698,4338.000000,193,0,13335.000000,1761.200000,extended,nbiot,180 +on10,0,0,24,1,0,1516,4320.000000,193,0,30074.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,714,4354.000000,193,0,13375.000000,1767.600000,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,193,0,9679.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,193,0,2392.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,3452,4320.000000,193,0,71425.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1477,4320.000000,193,0,30034.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,2827,4320.000000,193,0,56650.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,817,4320.000000,193,0,15197.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,3545,4320.000000,194,0,69064.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,194,0,23138.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2700,4320.000000,194,0,54289.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,194,0,51224.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,194,0,29160.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,194,0,4749.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,48,4320.000000,194,0,2243.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4353.000000,194,0,-1.000000,2053.200000,extended,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,194,0,51114.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,1707,4320.000000,194,0,35680.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1507,4320.000000,194,0,29057.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2744,4320.000000,194,0,54218.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,194,0,2415.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,2435,4320.000000,195,0,46943.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,436,4320.000000,195,0,8135.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,195,0,11905.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,3600,4320.000000,195,0,75394.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,370,4320.000000,195,0,8175.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,4137,4357.000000,195,0,79740.000000,1768.800000,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,195,0,39172.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,3636,4320.000000,195,0,75329.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,195,0,17676.000000,1754.000000,extended,nbiot,180 +on0,1,12,24,0,0,0,4343.000000,195,0,-1.000000,2049.200000,extended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,195,0,20877.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2880,4320.000000,195,0,58392.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1234,4334.000000,195,0,22202.000000,1759.600000,extended,nbiot,180 +on3,0,0,24,1,0,209,4320.000000,196,0,4212.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,3268,4320.000000,196,0,65549.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,355,4355.000000,196,0,4252.000000,1768.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,196,0,-1.000000,2014.000000,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,196,0,20287.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,2129,4329.000000,196,0,40316.000000,1757.600000,extended,nbiot,180 +on11,0,0,24,1,0,2807,4320.000000,196,0,55771.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,260,4320.000000,196,0,4292.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,196,0,24331.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,196,0,7963.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,1337,4320.000000,196,0,25817.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,196,0,17000.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,777,4320.000000,197,0,15914.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,938,4320.000000,197,0,18641.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,197,0,18793.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1080,4320.000000,197,0,22397.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,1671,4320.000000,197,0,32913.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,385,4320.000000,197,0,10290.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,197,0,12496.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,197,0,10250.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4380.000000,197,0,-1.000000,2012.000000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,197,0,6251.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,36,4320.000000,197,0,1853.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,198,0,3039.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,198,0,23041.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,198,0,4514.000000,1754.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4339.000000,198,0,-1.000000,1995.600000,extended,nbiot,180 +on3,0,0,24,1,0,804,4320.000000,198,0,14904.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,739,4320.000000,198,0,14944.000000,1754.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,3060,4320.000000,198,0,64372.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,198,0,30808.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,1435,4355.000000,198,0,27747.000000,1768.000000,extended,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,198,0,19124.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,4,4320.000000,198,0,3079.000000,1754.000000,extended,nbiot,180 +on9,0,0,24,1,0,634,4320.000000,199,0,11762.000000,1754.000000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,199,0,6466.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,1118,4320.000000,199,0,22289.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,199,0,15640.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,199,0,49681.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,2854,4334.000000,199,0,56494.000000,1759.600000,extended,nbiot,180 +on11,0,0,24,1,0,802,4320.000000,199,0,15577.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,1080,4320.000000,199,0,22249.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,199,0,3195.000000,1754.000000,extended,nbiot,180 +on4,0,0,24,1,0,680,4320.000000,199,0,11722.000000,1754.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4323.000000,199,0,-1.000000,2015.200000,extended,nbiot,180 +on7,0,0,24,1,0,793,4320.000000,199,0,15537.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,3144,4320.000000,200,0,61329.000000,1754.000000,extended,nbiot,180 +on1,0,0,24,1,0,2880,4320.000000,200,0,58725.000000,1754.000000,extended,nbiot,180 +on8,0,0,24,1,0,13,4320.000000,200,0,3412.000000,1754.000000,extended,nbiot,180 +on11,0,0,24,1,0,377,4320.000000,200,0,8518.000000,1754.000000,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,200,0,8633.000000,1754.000000,extended,nbiot,180 +on2,0,0,24,1,0,2700,4320.000000,200,0,55798.000000,1754.000000,extended,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,200,0,-1.000000,1962.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,3310,4320.000000,200,0,66154.000000,1754.000000,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,200,0,20338.000000,1754.000000,extended,nbiot,180 +on3,0,0,24,1,0,111,4320.000000,200,0,3372.000000,1754.000000,extended,nbiot,180 +on6,0,0,24,1,0,475,4389.000000,1,1,8299.600960,1826.450000,hintandextended,nbiot,180 +on4,0,0,26,1,0,363,4680.000000,1,3,11766.000320,2177.500208,hintandextended,nbiot,180 +on9,0,0,25,1,0,1102,4500.000000,1,1,25587.000320,2128.250000,hintandextended,nbiot,180 +on12,0,0,25,1,0,900,4500.000000,1,1,18289.600640,1985.445624,hintandextended,nbiot,180 +on11,0,0,25,1,0,900,4500.000000,1,1,18340.600640,1917.195208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4355.600640,1,0,-1.000000,2054.246496,hintandextended,nbiot,180 +on7,0,0,26,1,0,889,4741.000000,1,3,22575.000320,2309.344376,hintandextended,nbiot,180 +on2,0,0,27,1,0,807,4860.000000,1,3,18205.000960,2248.849168,hintandextended,nbiot,180 +on1,0,0,25,1,0,775,4500.000000,1,2,18165.000320,2021.650000,hintandextended,nbiot,180 +on10,0,0,24,1,0,367,4320.000000,1,0,8258.000320,1894.010000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1440,4500.000000,1,1,29232.000320,1917.000000,hintandextended,nbiot,180 +on8,0,0,24,1,0,314,4320.000000,1,0,4398.000320,1822.250416,hintandextended,nbiot,180 +on5,0,0,25,1,0,653,4500.000000,1,1,16301.000640,1916.349792,hintandextended,nbiot,180 +on6,0,0,24,1,0,859,4320.000000,2,0,16377.000320,1817.700416,hintandextended,nbiot,180 +on7,0,0,24,1,0,117,4320.000000,2,0,2963.000320,1801.060416,hintandextended,nbiot,180 +on2,0,0,24,1,0,995,4320.000000,2,0,20058.000320,1783.250000,hintandextended,nbiot,180 +on12,0,0,25,1,0,294,4500.000000,2,1,6057.000320,2001.500624,hintandextended,nbiot,180 +on8,0,0,25,1,0,664,4500.000000,2,1,13639.000320,1826.000208,hintandextended,nbiot,180 +on3,0,0,26,1,0,1279,4680.000000,2,3,28026.000320,2221.505208,hintandextended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,2,0,20218.000320,1845.000000,hintandextended,nbiot,180 +on11,0,0,24,1,0,509,4329.000320,2,0,7488.000320,1948.310544,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,2,0,3017.000320,1815.750416,hintandextended,nbiot,180 +on4,0,0,25,1,0,2500,4500.000000,2,1,48708.000320,1983.560000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4340.000320,2,0,-1.000000,2048.004288,hintandextended,nbiot,180 +on10,0,0,25,1,0,1212,4500.000000,2,1,24572.000320,1858.500208,hintandextended,nbiot,180 +on9,0,0,25,1,0,2341,4500.000000,2,1,48782.600320,1975.760000,hintandextended,nbiot,180 +on3,0,0,27,1,0,749,4860.000000,3,3,16376.600960,2331.659168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,3,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on4,0,0,25,1,0,415,4501.001600,3,2,9791.001600,1992.151472,hintandextended,nbiot,180 +on6,0,0,25,1,0,724,4500.000000,3,1,16416.601600,1849.400208,hintandextended,nbiot,180 +on11,0,0,24,1,0,63,4320.000000,3,0,1228.000320,1803.009792,hintandextended,nbiot,180 +on7,0,0,25,1,0,171,4500.000000,3,1,3795.000320,2070.919584,hintandextended,nbiot,180 +on2,0,0,24,1,0,383,4320.000000,3,1,9711.000320,1895.310624,hintandextended,nbiot,180 +on10,0,0,25,1,0,38,4500.000000,3,1,1269.600960,1940.270416,hintandextended,nbiot,180 +on12,0,0,28,1,0,820,5040.000000,3,6,18816.000320,2521.894168,hintandextended,nbiot,180 +on1,0,0,26,1,0,837,4680.000000,3,2,16335.000320,2078.959584,hintandextended,nbiot,180 +on8,0,0,24,1,0,580,4320.000000,3,0,14105.000320,1818.350000,hintandextended,nbiot,180 +on5,0,0,25,1,0,494,4500.000000,3,1,9751.000960,2033.219584,hintandextended,nbiot,180 +on9,0,0,26,1,0,1053,4680.000000,3,2,18856.000960,1962.999584,hintandextended,nbiot,180 +on12,0,0,24,1,0,564,4320.000000,4,0,10864.000320,1877.759584,hintandextended,nbiot,180 +on10,0,0,26,1,0,914,4680.000000,4,2,18371.000320,2195.699792,hintandextended,nbiot,180 +on9,0,0,25,1,0,385,4500.000000,4,2,10396.600960,2014.955208,hintandextended,nbiot,180 +on2,0,0,25,1,0,349,4500.000000,4,1,10305.000320,1987.330208,hintandextended,nbiot,180 +on7,0,0,25,1,0,833,4500.000000,4,1,17672.000320,1916.350000,hintandextended,nbiot,180 +on1,0,0,25,1,0,541,4500.000000,4,1,10975.600320,1953.270208,hintandextended,nbiot,180 +on5,0,0,25,1,0,745,4500.000000,4,2,17761.600960,1826.195416,hintandextended,nbiot,180 +on3,0,0,25,1,0,0,4500.000000,4,2,4518.000320,2057.270000,hintandextended,nbiot,180 +on6,0,0,25,1,0,806,4667.000000,4,2,17721.000320,2182.699792,hintandextended,nbiot,180 +on4,0,0,26,1,0,445,4680.000000,4,3,10356.000320,2123.810000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,4,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on8,0,0,24,1,0,12,4320.000000,4,0,988.000320,1754.000416,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,4,0,1070.000320,1845.000000,hintandextended,nbiot,180 +on8,0,0,24,1,0,59,4320.000000,5,0,2108.000320,1806.000000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4334.000320,5,0,-1.000000,2045.604496,hintandextended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,5,0,14255.000320,1754.000208,hintandextended,nbiot,180 +on2,0,0,25,1,0,17,4500.000000,5,1,2148.000960,2021.259792,hintandextended,nbiot,180 +on9,0,0,25,1,0,155,4531.601600,5,2,2188.601600,1930.030640,hintandextended,nbiot,180 +on3,0,0,26,1,0,374,4680.000000,5,2,10123.000320,2145.519168,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,5,0,2262.000320,1899.859792,hintandextended,nbiot,180 +on11,0,0,26,1,0,332,4699.000000,5,3,14135.000320,2292.544376,hintandextended,nbiot,180 +on7,0,0,25,1,0,113,4500.000000,5,1,5256.000320,2032.505000,hintandextended,nbiot,180 +on6,0,0,26,1,0,629,4773.000000,5,3,16227.000320,2489.909584,hintandextended,nbiot,180 +on12,0,0,25,1,0,496,4500.000000,5,1,10163.000960,2007.935000,hintandextended,nbiot,180 +on10,0,0,26,1,0,539,4680.000000,5,2,10203.400640,1914.900208,hintandextended,nbiot,180 +on4,0,0,28,1,0,352,5040.000000,5,4,14175.000960,2519.814168,hintandextended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,6,0,41254.000320,1845.000000,hintandextended,nbiot,180 +on1,0,0,24,1,0,1177,4320.000000,6,0,24399.000320,1807.560000,hintandextended,nbiot,180 +on5,0,0,24,1,0,651,4320.000000,6,0,11662.000320,1837.460000,hintandextended,nbiot,180 +on6,0,0,24,1,0,1620,4320.000000,6,0,33123.000320,1754.000208,hintandextended,nbiot,180 +on10,0,0,26,1,0,875,4680.000000,6,2,17812.600960,2082.599792,hintandextended,nbiot,180 +on3,0,0,24,1,0,930,4320.000000,6,0,20100.000320,1824.460000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,6,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on2,0,0,26,1,0,1414,4680.000000,6,3,28975.000320,2195.700000,hintandextended,nbiot,180 +on11,0,0,26,1,0,773,4680.000000,6,2,20141.600960,2204.150208,hintandextended,nbiot,180 +on4,0,0,25,1,0,1193,4500.000000,6,1,27562.000320,1872.800416,hintandextended,nbiot,180 +on7,0,0,24,1,0,28,4320.000000,6,0,2582.000320,1966.810832,hintandextended,nbiot,180 +on9,0,0,25,1,0,892,4500.000000,6,1,17771.000320,1954.309792,hintandextended,nbiot,180 +on12,0,0,24,1,0,193,4320.000000,6,0,3899.000320,1754.000208,hintandextended,nbiot,180 +on2,0,0,25,1,0,293,4500.000000,7,1,9349.000320,2218.664584,hintandextended,nbiot,180 +on10,0,0,27,1,0,821,4860.000000,7,3,21334.000320,2384.959168,hintandextended,nbiot,180 +on3,0,0,25,1,0,1671,4500.000000,7,1,35632.000320,1982.000000,hintandextended,nbiot,180 +on6,0,0,27,1,0,621,4860.000000,7,3,10950.000960,2200.619584,hintandextended,nbiot,180 +on5,0,0,25,1,0,335,4500.000000,7,1,9389.000960,2007.349584,hintandextended,nbiot,180 +on4,0,0,25,1,0,474,4500.000000,7,2,16366.000320,2033.675000,hintandextended,nbiot,180 +on12,0,0,24,1,0,16,4320.000000,7,0,330.000320,1846.820208,hintandextended,nbiot,180 +on9,0,0,26,1,0,560,4680.000000,7,2,10910.000320,2137.394584,hintandextended,nbiot,180 +on8,0,0,26,1,0,707,4830.000000,7,4,21375.600960,2455.250000,hintandextended,nbiot,180 +on7,0,0,27,1,0,511,4860.000000,7,4,10990.601600,2269.585208,hintandextended,nbiot,180 +on11,0,0,25,1,0,181,4500.000000,7,1,5017.600320,1852.260416,hintandextended,nbiot,180 +on1,0,0,25,1,0,260,4500.000000,7,1,4879.000320,1911.020416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,7,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on7,0,0,24,1,0,727,4482.000000,8,1,20125.000320,1931.250000,hintandextended,nbiot,180 +on2,0,0,24,1,0,547,4320.000000,8,0,13260.000320,1839.800208,hintandextended,nbiot,180 +on11,0,0,24,1,0,277,4320.000000,8,0,5471.000320,1780.909792,hintandextended,nbiot,180 +on12,0,0,25,1,0,610,4500.000000,8,2,13340.601600,1827.690832,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4349.000320,8,0,-1.000000,2051.605120,hintandextended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,8,0,20294.000320,1856.050000,hintandextended,nbiot,180 +on3,0,0,24,1,0,1297,4320.000000,8,0,28655.000320,1820.950000,hintandextended,nbiot,180 +on5,0,0,26,1,0,332,4680.000000,8,2,7883.000320,2307.759792,hintandextended,nbiot,180 +on4,0,0,26,1,0,496,4680.000000,8,2,14805.000320,2215.069584,hintandextended,nbiot,180 +on1,0,0,26,1,0,310,4680.000000,8,3,5512.600960,2005.444792,hintandextended,nbiot,180 +on8,0,0,26,1,0,986,4680.000000,8,3,22499.000320,2297.100000,hintandextended,nbiot,180 +on9,0,0,24,1,0,3,4320.000000,8,0,1696.000320,1757.250208,hintandextended,nbiot,180 +on10,0,0,25,1,0,716,4536.000960,8,1,13300.000960,2156.560176,hintandextended,nbiot,180 +on4,0,0,26,1,0,478,4680.000000,9,2,11346.000320,2226.119792,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,9,0,2188.000320,1870.610000,hintandextended,nbiot,180 +on1,0,0,25,1,0,316,4500.000000,9,1,6204.000320,2067.670000,hintandextended,nbiot,180 +on5,0,0,24,1,0,41,4320.000000,9,0,2056.000320,1869.310624,hintandextended,nbiot,180 +on8,0,0,25,1,0,774,4500.000000,9,1,17299.000320,1977.580000,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,9,0,2110.000320,1869.310416,hintandextended,nbiot,180 +on7,0,0,25,1,0,2340,4500.000000,9,1,48527.600640,1866.105000,hintandextended,nbiot,180 +on6,0,0,25,1,0,391,4674.000000,9,3,9705.000320,2208.509584,hintandextended,nbiot,180 +on11,0,0,25,1,0,469,4602.000000,9,2,9746.600960,2142.920624,hintandextended,nbiot,180 +on10,0,0,26,1,0,874,4680.000000,9,2,20103.000320,2195.699792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4337.600640,9,0,-1.000000,2047.046496,hintandextended,nbiot,180 +on9,0,0,26,1,0,873,4680.000000,9,2,17339.000960,2195.504792,hintandextended,nbiot,180 +on3,0,0,26,1,0,1036,4680.000000,9,2,20143.000960,1998.489792,hintandextended,nbiot,180 +on10,0,0,27,1,0,613,4860.000000,10,4,14735.000320,2553.114376,hintandextended,nbiot,180 +on4,0,0,25,1,0,2062,4500.000000,10,1,42198.000320,1872.605208,hintandextended,nbiot,180 +on2,0,0,25,1,0,959,4500.000000,10,1,20426.000320,1985.900624,hintandextended,nbiot,180 +on5,0,0,26,1,0,327,4680.000000,10,2,5386.001600,1928.810416,hintandextended,nbiot,180 +on7,0,0,24,1,0,120,4320.000000,10,0,1976.000320,1768.950416,hintandextended,nbiot,180 +on1,0,0,26,1,0,185,4680.000000,10,3,9470.000320,2191.149792,hintandextended,nbiot,180 +on11,0,0,25,1,0,226,4500.000000,10,1,5306.000320,2190.000000,hintandextended,nbiot,180 +on3,0,0,25,1,0,235,4500.000000,10,1,5346.000960,1924.864376,hintandextended,nbiot,180 +on8,0,0,26,1,0,481,4680.000000,10,2,13395.000320,2174.249792,hintandextended,nbiot,180 +on9,0,0,25,1,0,2098,4616.000000,10,3,44882.000320,2178.159792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4336.000320,10,0,-1.000000,2046.405952,hintandextended,nbiot,180 +on6,0,0,26,1,0,647,4680.000000,10,2,13435.000960,2034.240416,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,10,0,2132.000320,1964.469792,hintandextended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,11,0,5886.000320,1931.319376,hintandextended,nbiot,180 +on12,0,0,27,1,0,1319,4860.000000,11,3,28858.000320,2383.659792,hintandextended,nbiot,180 +on8,0,0,26,1,0,1060,4680.000000,11,2,22884.600960,2040.350416,hintandextended,nbiot,180 +on5,0,0,25,1,0,1777,4500.000000,11,1,35072.000320,1917.000000,hintandextended,nbiot,180 +on3,0,0,26,1,0,886,4680.000000,11,2,18969.000320,2204.020000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,11,0,-1.000000,2040.004992,hintandextended,nbiot,180 +on1,0,0,24,1,0,876,4336.000320,11,0,16957.000320,1760.400336,hintandextended,nbiot,180 +on6,0,0,24,1,0,374,4399.000000,11,1,12330.000320,2149.079584,hintandextended,nbiot,180 +on2,0,0,26,1,0,694,4680.000000,11,2,12371.600960,2014.350416,hintandextended,nbiot,180 +on7,0,0,24,1,0,427,4320.000000,11,0,8977.000320,1849.419792,hintandextended,nbiot,180 +on10,0,0,27,1,0,1041,4860.000000,11,4,22843.000320,2344.984168,hintandextended,nbiot,180 +on4,0,0,25,1,0,334,4585.000000,11,2,9018.600960,1971.800000,hintandextended,nbiot,180 +on11,0,0,24,1,0,1416,4336.000320,11,0,27398.000320,1760.400336,hintandextended,nbiot,180 +on11,0,0,26,1,0,728,4680.000000,12,3,13821.601600,2199.730208,hintandextended,nbiot,180 +on6,0,0,26,1,0,694,4680.000000,12,2,16454.000320,2270.968544,hintandextended,nbiot,180 +on4,0,0,25,1,0,1,4500.000000,12,1,1131.600320,1826.000416,hintandextended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,12,0,21102.000320,1828.750208,hintandextended,nbiot,180 +on5,0,0,27,1,0,917,4860.000000,12,3,22960.000320,2475.244376,hintandextended,nbiot,180 +on9,0,0,26,1,0,898,4680.000000,12,3,21057.601600,2054.649584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,12,0,-1.000000,2040.004368,hintandextended,nbiot,180 +on7,0,0,24,1,0,448,4320.000000,12,0,7890.000320,1868.270208,hintandextended,nbiot,180 +on2,0,0,26,1,0,902,4680.000000,12,2,21017.000960,2081.299584,hintandextended,nbiot,180 +on10,0,0,24,1,0,663,4320.000000,12,0,13741.000320,1880.360000,hintandextended,nbiot,180 +on8,0,0,26,1,0,873,4680.000000,12,2,20977.000320,2168.399792,hintandextended,nbiot,180 +on12,0,0,24,1,0,61,4320.000000,12,0,1071.000320,1791.960208,hintandextended,nbiot,180 +on3,0,0,25,1,0,559,4500.000000,12,1,13781.000960,2025.549792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,13,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on2,0,0,25,1,0,17,4500.000000,13,1,2398.600960,1830.095624,hintandextended,nbiot,180 +on1,0,0,24,1,0,1080,4341.000000,13,2,23283.600640,2134.395208,hintandextended,nbiot,180 +on8,0,0,24,1,0,155,4335.000320,13,0,2358.000320,1903.260960,hintandextended,nbiot,180 +on5,0,0,25,1,0,833,4500.000000,13,1,17514.000320,2001.630208,hintandextended,nbiot,180 +on9,0,0,26,1,0,1414,4680.000000,13,2,26595.600960,1981.200416,hintandextended,nbiot,180 +on3,0,0,25,1,0,1288,4500.000000,13,1,26554.000320,2121.100000,hintandextended,nbiot,180 +on10,0,0,25,1,0,293,4500.000000,13,1,7337.000320,1826.000208,hintandextended,nbiot,180 +on12,0,0,26,1,0,815,4680.000000,13,3,21063.000320,2304.769584,hintandextended,nbiot,180 +on7,0,0,26,1,0,2133,4680.000000,13,3,45659.000320,2221.700000,hintandextended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,13,0,11998.000320,1891.020000,hintandextended,nbiot,180 +on4,0,0,25,1,0,2094,4500.000000,13,1,41565.000320,1943.195208,hintandextended,nbiot,180 +on6,0,0,25,1,0,2643,4500.000000,13,1,53453.000320,1917.000000,hintandextended,nbiot,180 +on3,0,0,24,1,0,775,4320.000000,14,0,14810.000320,1805.350624,hintandextended,nbiot,180 +on7,0,0,25,1,0,360,4500.000000,14,1,8652.000320,1830.160624,hintandextended,nbiot,180 +on4,0,0,25,1,0,181,4500.000000,14,2,4160.000320,1989.605000,hintandextended,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,14,0,37924.000320,1933.400208,hintandextended,nbiot,180 +on1,0,0,25,1,0,1013,4500.000000,14,1,19344.000320,1866.950416,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,14,0,3031.000320,2041.560832,hintandextended,nbiot,180 +on8,0,0,26,1,0,334,4680.000000,14,2,4201.600960,2014.350624,hintandextended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,14,0,19428.000320,1975.000624,hintandextended,nbiot,180 +on10,0,0,24,1,0,75,4320.000000,14,0,2903.000320,1949.650832,hintandextended,nbiot,180 +on2,0,0,25,1,0,4006,4500.000000,14,1,80849.000320,1917.000000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,14,0,-1.000000,2040.007904,hintandextended,nbiot,180 +on9,0,0,25,1,0,614,4500.000000,14,1,13525.000320,2136.830416,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,14,0,2946.000320,2032.850416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4341.000320,15,0,-1.000000,2048.406160,hintandextended,nbiot,180 +on11,0,0,26,1,0,647,4773.000000,15,3,19069.000320,2603.464792,hintandextended,nbiot,180 +on4,0,0,24,1,0,1217,4320.000000,15,0,24912.000320,1754.909792,hintandextended,nbiot,180 +on1,0,0,27,1,0,669,4860.000000,15,3,17741.000960,2563.579584,hintandextended,nbiot,180 +on8,0,0,25,1,0,1054,4611.000000,15,2,24953.600960,2103.100208,hintandextended,nbiot,180 +on3,0,0,24,1,0,275,4320.000000,15,0,5851.000320,1870.350416,hintandextended,nbiot,180 +on5,0,0,25,1,0,564,4500.000000,15,1,13544.400640,1996.300624,hintandextended,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,15,0,55075.000320,1763.100000,hintandextended,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,15,2,7969.000320,2391.369792,hintandextended,nbiot,180 +on2,0,0,24,1,0,611,4320.000000,15,0,13464.000320,1866.060208,hintandextended,nbiot,180 +on12,0,0,25,1,0,601,4500.000000,15,1,13504.000960,1986.160000,hintandextended,nbiot,180 +on9,0,0,25,1,0,583,4631.000000,15,2,17701.000320,2305.059792,hintandextended,nbiot,180 +on7,0,0,25,1,0,940,4500.000000,15,2,19109.600960,2039.395208,hintandextended,nbiot,180 +on11,0,0,25,1,0,0,4500.000000,16,2,2827.000320,2254.610208,hintandextended,nbiot,180 +on5,0,0,25,1,0,180,4500.000000,16,1,4431.000320,1920.120208,hintandextended,nbiot,180 +on7,0,0,25,1,0,25,4500.000000,16,2,2867.600960,1972.445416,hintandextended,nbiot,180 +on1,0,0,25,1,0,294,4500.000000,16,1,4348.000320,1904.845208,hintandextended,nbiot,180 +on2,0,0,25,1,0,384,4500.000000,16,1,11545.000320,2014.110208,hintandextended,nbiot,180 +on4,0,0,26,1,0,333,4680.000000,16,2,4388.000960,2160.209584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4340.600960,16,0,-1.000000,2048.245792,hintandextended,nbiot,180 +on9,0,0,26,1,0,514,4680.000000,16,3,15946.000320,2180.100000,hintandextended,nbiot,180 +on8,0,0,25,1,0,1416,4500.000000,16,1,29587.000320,2044.400000,hintandextended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,16,0,21729.000320,1896.350208,hintandextended,nbiot,180 +on10,0,0,25,1,0,219,4500.000000,16,2,8806.000320,2110.829792,hintandextended,nbiot,180 +on6,0,0,24,1,0,26,4320.000000,16,0,2707.000320,1776.100208,hintandextended,nbiot,180 +on3,0,0,25,1,0,1080,4500.000000,16,1,21843.000320,2057.660208,hintandextended,nbiot,180 +on2,0,0,28,1,0,723,5040.000000,17,4,23360.000320,2779.099376,hintandextended,nbiot,180 +on8,0,0,24,1,0,117,4320.000000,17,0,1670.000320,1867.620208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,17,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on5,0,0,25,1,0,333,4500.000000,17,1,6635.000960,1890.999584,hintandextended,nbiot,180 +on4,0,0,26,1,0,384,4680.000000,17,2,8691.000320,2310.750000,hintandextended,nbiot,180 +on12,0,0,26,1,0,309,4680.000000,17,2,6675.001600,2063.100416,hintandextended,nbiot,180 +on7,0,0,24,1,0,595,4320.000000,17,0,12657.000320,1897.000000,hintandextended,nbiot,180 +on3,0,0,28,1,0,898,5040.000000,17,4,21399.000960,2511.559168,hintandextended,nbiot,180 +on6,0,0,25,1,0,348,4500.000000,17,1,6595.000320,1916.350000,hintandextended,nbiot,180 +on10,0,0,27,1,0,447,4860.000000,17,4,8731.000960,2171.239168,hintandextended,nbiot,180 +on11,0,0,26,1,0,666,4680.000000,17,2,12697.000960,2128.034584,hintandextended,nbiot,180 +on9,0,0,26,1,0,577,4680.000000,17,2,16324.000320,2278.509792,hintandextended,nbiot,180 +on1,0,0,27,1,0,770,4860.000000,17,4,21359.000320,2416.354376,hintandextended,nbiot,180 +on5,0,0,24,1,0,2048,4320.000000,18,1,45816.000320,2032.200208,hintandextended,nbiot,180 +on12,0,0,26,1,0,1081,4680.000000,18,3,22542.000320,2306.850000,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,18,0,544.000320,1818.610000,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4338.000320,18,0,-1.000000,2021.206576,hintandextended,nbiot,180 +on1,0,0,25,1,0,1076,4500.000000,18,1,21436.000320,1826.845208,hintandextended,nbiot,180 +on11,0,0,26,1,0,515,4680.000000,18,2,8975.600960,2103.270416,hintandextended,nbiot,180 +on4,0,0,24,1,0,859,4320.000000,18,0,15719.000320,1825.500208,hintandextended,nbiot,180 +on8,0,0,24,1,0,472,4320.000000,18,0,8934.000320,1865.409792,hintandextended,nbiot,180 +on2,0,0,25,1,0,632,4500.000000,18,1,13050.000960,1967.569792,hintandextended,nbiot,180 +on6,0,0,26,1,0,153,4680.000000,18,2,4030.600960,2216.565832,hintandextended,nbiot,180 +on3,0,0,24,1,0,354,4354.000320,18,0,3990.000320,1945.700960,hintandextended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,18,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on10,0,0,25,1,0,653,4500.000000,18,1,13010.000320,2006.700208,hintandextended,nbiot,180 +on7,0,0,25,1,0,347,4500.000000,19,1,9471.000320,1916.350000,hintandextended,nbiot,180 +on2,0,0,24,1,0,285,4320.000000,19,0,5593.000320,1776.100000,hintandextended,nbiot,180 +on1,0,0,25,1,0,181,4500.000000,19,1,5633.000960,2103.420000,hintandextended,nbiot,180 +on10,0,0,25,1,0,1610,4530.600960,19,1,29806.600960,1838.436008,hintandextended,nbiot,180 +on6,0,0,25,1,0,2583,4500.000000,19,1,52323.000320,2085.220000,hintandextended,nbiot,180 +on11,0,0,24,1,0,1606,4346.000320,19,0,29766.000320,1764.400336,hintandextended,nbiot,180 +on9,0,0,27,1,0,490,4860.000000,19,3,12984.000320,2289.279376,hintandextended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,19,0,5771.000320,1760.500416,hintandextended,nbiot,180 +on5,0,0,24,1,0,2452,4320.000000,19,0,49532.000320,1772.200000,hintandextended,nbiot,180 +on12,0,0,26,1,0,760,4680.000000,19,2,13025.600960,2087.800624,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4362.600960,19,0,-1.000000,2057.046000,hintandextended,nbiot,180 +on4,0,0,25,1,0,0,4500.000000,19,1,3064.600640,1915.765624,hintandextended,nbiot,180 +on8,0,0,26,1,0,446,4680.000000,19,2,9511.000960,2170.349584,hintandextended,nbiot,180 +on1,0,0,25,1,0,360,4500.000000,20,1,8140.600640,2040.565208,hintandextended,nbiot,180 +on8,0,0,27,1,0,922,4860.000000,20,4,21200.000960,2281.153960,hintandextended,nbiot,180 +on11,0,0,24,1,0,541,4320.000000,20,0,12874.000320,1952.250416,hintandextended,nbiot,180 +on10,0,0,25,1,0,627,4580.000000,20,2,14844.000320,2207.569792,hintandextended,nbiot,180 +on5,0,0,26,1,0,920,4680.000000,20,2,21160.000320,2078.699792,hintandextended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,20,0,12962.000320,1820.560000,hintandextended,nbiot,180 +on6,0,0,25,1,0,667,4534.000000,20,2,14884.000960,2347.900000,hintandextended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,20,0,4765.000320,1754.000416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,20,0,-1.000000,2040.006240,hintandextended,nbiot,180 +on4,0,0,24,1,0,512,4332.000320,20,0,8023.000320,1999.560544,hintandextended,nbiot,180 +on2,0,0,25,1,0,712,4500.000000,20,1,12914.000960,1890.999792,hintandextended,nbiot,180 +on7,0,0,27,1,0,670,4860.000000,20,4,14924.001600,2093.824792,hintandextended,nbiot,180 +on12,0,0,24,1,0,2730,4320.000000,20,0,56072.000320,1825.500000,hintandextended,nbiot,180 +on12,0,0,27,1,0,1588,4860.000000,21,4,39830.000320,2906.000000,hintandextended,nbiot,180 +on9,0,0,25,1,0,3780,4500.000000,21,1,78603.000320,1917.000000,hintandextended,nbiot,180 +on6,0,0,25,1,0,2046,4500.000000,21,2,44900.000320,2026.720416,hintandextended,nbiot,180 +on8,0,0,24,1,0,541,4320.000000,21,0,12201.000320,1844.350208,hintandextended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,21,0,8526.000320,1754.000416,hintandextended,nbiot,180 +on5,0,0,24,1,0,1323,4320.000000,21,0,28118.000320,1854.750208,hintandextended,nbiot,180 +on10,0,0,25,1,0,1716,4500.000000,21,1,35609.000320,1947.550416,hintandextended,nbiot,180 +on1,0,0,24,1,0,134,4320.000000,21,0,705.000320,1970.450624,hintandextended,nbiot,180 +on11,0,0,25,1,0,1284,4500.000000,21,2,31476.000320,2435.310000,hintandextended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,21,0,21061.000320,1778.700624,hintandextended,nbiot,180 +on4,0,0,25,1,0,227,4500.000000,21,2,5017.000320,1868.900208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4326.000320,21,0,-1.000000,2042.406576,hintandextended,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,21,0,50171.000320,2077.700208,hintandextended,nbiot,180 +on5,0,0,24,1,0,231,4320.000000,22,0,5973.000320,1766.350208,hintandextended,nbiot,180 +on9,0,0,25,1,0,1846,4500.000000,22,1,38696.000320,1885.800208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,22,0,-1.000000,2040.005408,hintandextended,nbiot,180 +on10,0,0,25,1,0,389,4500.000000,22,1,9174.001600,2349.898960,hintandextended,nbiot,180 +on8,0,0,26,1,0,831,4680.000000,22,2,15208.600960,1925.950416,hintandextended,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,22,0,31273.000320,1754.000208,hintandextended,nbiot,180 +on2,0,0,25,1,0,531,4500.000000,22,1,9094.000320,1876.960832,hintandextended,nbiot,180 +on11,0,0,24,1,0,1,4320.000000,22,0,842.000320,2099.409792,hintandextended,nbiot,180 +on1,0,0,27,1,0,493,4860.000000,22,4,9134.000960,2228.439584,hintandextended,nbiot,180 +on12,0,0,24,1,0,787,4320.000000,22,0,15167.000320,2037.010000,hintandextended,nbiot,180 +on4,0,0,25,1,0,360,4500.000000,22,2,12520.000320,2275.799376,hintandextended,nbiot,180 +on3,0,0,27,1,0,630,4860.000000,22,3,12560.000960,2255.544168,hintandextended,nbiot,180 +on6,0,0,25,1,0,2399,4500.000000,22,1,51605.000320,2052.200000,hintandextended,nbiot,180 +on6,0,0,25,1,0,294,4500.000000,23,1,5435.000320,1917.000000,hintandextended,nbiot,180 +on2,0,0,26,1,0,423,4680.000000,23,2,11882.000320,2526.160208,hintandextended,nbiot,180 +on3,0,0,25,1,0,795,4500.000000,23,1,21311.000320,2182.980208,hintandextended,nbiot,180 +on11,0,0,25,1,0,36,4500.000000,23,1,3494.600960,2102.056040,hintandextended,nbiot,180 +on9,0,0,25,1,0,676,4500.000000,23,1,15321.000320,2116.160832,hintandextended,nbiot,180 +on1,0,0,25,1,0,380,4500.000000,23,1,8032.600960,1941.310832,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4332.201280,23,0,-1.000000,2044.888416,hintandextended,nbiot,180 +on8,0,0,25,1,0,409,4500.000000,23,1,7991.000320,2147.815000,hintandextended,nbiot,180 +on10,0,0,24,1,0,149,4329.000320,23,0,3454.000320,1901.510752,hintandextended,nbiot,180 +on12,0,0,24,1,0,3703,4320.000000,23,0,72485.000320,1835.900000,hintandextended,nbiot,180 +on4,0,0,25,1,0,360,4500.000000,23,1,8134.600640,2124.154792,hintandextended,nbiot,180 +on7,0,0,24,1,0,1871,4320.000000,23,0,37786.000320,1798.850000,hintandextended,nbiot,180 +on5,0,0,24,1,0,1440,4484.000000,23,1,29951.600640,2251.005624,hintandextended,nbiot,180 +on5,0,0,25,1,0,873,4500.000000,24,1,15538.000960,1890.999584,hintandextended,nbiot,180 +on2,0,0,24,1,0,353,4353.000320,24,0,5804.000320,1985.469920,hintandextended,nbiot,180 +on8,0,0,24,1,0,545,4320.000000,24,0,11841.000320,1841.100000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,24,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on7,0,0,25,1,0,208,4500.000000,24,1,5844.600960,1895.615000,hintandextended,nbiot,180 +on6,0,0,26,1,0,888,4680.000000,24,2,18812.000320,2191.799792,hintandextended,nbiot,180 +on9,0,0,24,1,0,747,4320.000000,24,0,15498.000320,1826.800000,hintandextended,nbiot,180 +on3,0,0,24,1,0,25,4320.000000,24,0,1232.000320,1853.450208,hintandextended,nbiot,180 +on4,0,0,25,1,0,1289,4500.000000,24,1,26779.000320,2004.230000,hintandextended,nbiot,180 +on10,0,0,27,1,0,948,4875.000000,24,4,23019.000320,2397.394376,hintandextended,nbiot,180 +on11,0,0,26,1,0,682,4831.000000,24,3,18852.000960,2484.509376,hintandextended,nbiot,180 +on1,0,0,25,1,0,360,4500.000000,24,1,7558.600640,1831.915416,hintandextended,nbiot,180 +on12,0,0,26,1,0,1062,4680.000000,24,2,23059.000960,2119.909584,hintandextended,nbiot,180 +on5,0,0,26,1,0,1121,4680.000000,25,2,23911.600960,2035.409584,hintandextended,nbiot,180 +on6,0,0,25,1,0,653,4500.000000,25,1,16788.000320,1916.350000,hintandextended,nbiot,180 +on11,0,0,26,1,0,401,4680.000000,25,4,11432.600960,2223.129168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,25,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on2,0,0,25,1,0,1393,4500.000000,25,1,28143.000320,1917.000000,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,25,0,1391.000320,1826.150208,hintandextended,nbiot,180 +on10,0,0,25,1,0,360,4500.000000,25,1,8799.001600,2005.920000,hintandextended,nbiot,180 +on12,0,0,26,1,0,764,4680.000000,25,2,18751.000320,2191.409584,hintandextended,nbiot,180 +on7,0,0,27,1,0,913,4860.000000,25,3,23870.000320,2523.409376,hintandextended,nbiot,180 +on1,0,0,25,1,0,724,4500.000000,25,1,16828.000960,2092.499792,hintandextended,nbiot,180 +on8,0,0,24,1,0,369,4320.000000,25,0,8667.000320,1779.349584,hintandextended,nbiot,180 +on9,0,0,26,1,0,819,4704.000000,25,3,18792.600960,2297.339792,hintandextended,nbiot,180 +on4,0,0,25,1,0,515,4500.000000,25,2,11391.000320,1984.079792,hintandextended,nbiot,180 +on4,0,0,28,1,0,799,5058.000000,26,5,20832.600960,2696.533752,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4350.000320,26,0,-1.000000,2052.004288,hintandextended,nbiot,180 +on8,0,0,24,1,0,418,4320.000000,26,0,9577.000320,1867.360000,hintandextended,nbiot,180 +on3,0,0,25,1,0,374,4500.000000,26,1,9657.400960,1931.299792,hintandextended,nbiot,180 +on2,0,0,26,1,0,632,4680.000000,26,2,14092.001280,2040.480000,hintandextended,nbiot,180 +on12,0,0,25,1,0,1013,4500.000000,26,1,20791.000320,1915.959792,hintandextended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,26,0,16806.000320,1754.000208,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,26,0,1591.000320,1869.310208,hintandextended,nbiot,180 +on6,0,0,26,1,0,371,4680.000000,26,3,9617.000960,2172.234792,hintandextended,nbiot,180 +on5,0,0,24,1,0,610,4320.000000,26,0,14051.000320,1798.850000,hintandextended,nbiot,180 +on11,0,0,25,1,0,311,4500.000000,26,1,6853.000320,1826.000208,hintandextended,nbiot,180 +on7,0,0,26,1,0,873,4680.000000,26,2,16676.000960,2170.349376,hintandextended,nbiot,180 +on10,0,0,26,1,0,678,4804.000000,26,3,16636.000320,2403.249168,hintandextended,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,27,0,29123.000320,1800.150416,hintandextended,nbiot,180 +on1,0,0,26,1,0,542,4736.000000,27,3,12463.000960,2125.149792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4358.600640,27,0,-1.000000,2055.446912,hintandextended,nbiot,180 +on10,0,0,24,1,0,181,4320.000000,27,0,3957.000320,1896.610208,hintandextended,nbiot,180 +on12,0,0,25,1,0,502,4634.000000,27,2,12423.000320,2300.995000,hintandextended,nbiot,180 +on4,0,0,26,1,0,579,4680.000000,27,2,17839.000320,2362.879584,hintandextended,nbiot,180 +on9,0,0,25,1,0,0,4500.000000,27,1,2535.600640,2013.525208,hintandextended,nbiot,180 +on11,0,0,25,1,0,513,4500.000000,27,1,9366.000960,1927.400000,hintandextended,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,27,0,47842.000320,1961.350000,hintandextended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,27,0,9436.000320,1798.460208,hintandextended,nbiot,180 +on7,0,0,25,1,0,327,4507.000960,27,1,3997.000960,2025.100800,hintandextended,nbiot,180 +on2,0,0,27,1,0,578,4860.000000,27,4,12503.601600,2153.040208,hintandextended,nbiot,180 +on6,0,0,26,1,0,267,4680.000000,27,2,9326.000320,2196.545000,hintandextended,nbiot,180 +on6,0,0,24,1,0,568,4320.000000,28,0,13736.000320,1850.850208,hintandextended,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,28,0,62528.000320,1817.700208,hintandextended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,28,0,34738.000320,1835.250208,hintandextended,nbiot,180 +on7,0,0,25,1,0,0,4500.000000,28,1,2437.600640,1992.855624,hintandextended,nbiot,180 +on10,0,0,26,1,0,713,4680.000000,28,2,13776.000960,2080.195000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4343.000320,28,0,-1.000000,2049.206368,hintandextended,nbiot,180 +on3,0,0,26,1,0,333,4680.000000,28,2,7746.000320,2104.310208,hintandextended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,28,0,28025.000320,1869.310416,hintandextended,nbiot,180 +on4,0,0,24,1,0,348,4348.000320,28,0,6237.000320,1917.300752,hintandextended,nbiot,180 +on5,0,0,25,1,0,1610,4500.000000,28,1,31279.000320,2075.600000,hintandextended,nbiot,180 +on8,0,0,26,1,0,722,4680.000000,28,3,13816.601600,1990.690416,hintandextended,nbiot,180 +on9,0,0,26,1,0,543,4680.000000,28,2,14726.000320,2371.849792,hintandextended,nbiot,180 +on11,0,0,24,1,0,2891,4320.000000,28,0,60228.000320,1837.850000,hintandextended,nbiot,180 +on11,0,0,26,1,0,477,4680.000000,29,2,9584.001600,2075.580416,hintandextended,nbiot,180 +on12,0,0,26,1,0,484,4680.000000,29,3,11858.000320,2226.119792,hintandextended,nbiot,180 +on8,0,0,25,1,0,513,4500.000000,29,1,9544.000960,1890.999584,hintandextended,nbiot,180 +on3,0,0,26,1,0,498,4838.000000,29,3,11898.000960,2350.484584,hintandextended,nbiot,180 +on9,0,0,25,1,0,667,4500.000000,29,1,14540.000320,1959.900000,hintandextended,nbiot,180 +on1,0,0,25,1,0,1009,4500.000000,29,1,21302.000320,2021.129792,hintandextended,nbiot,180 +on7,0,0,25,1,0,180,4500.000000,29,2,9504.000320,2148.660000,hintandextended,nbiot,180 +on2,0,0,27,1,0,960,4860.000000,29,3,21343.600960,2246.900208,hintandextended,nbiot,180 +on4,0,0,25,1,0,293,4500.000000,29,1,6504.000320,1870.070208,hintandextended,nbiot,180 +on10,0,0,25,1,0,749,4500.000000,29,1,14580.000960,1989.149376,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,29,0,2794.000320,1950.560000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4348.000320,29,0,-1.000000,2051.205328,hintandextended,nbiot,180 +on6,0,0,25,1,0,1705,4500.000000,29,1,33733.000320,1971.730000,hintandextended,nbiot,180 +on6,0,0,25,1,0,1108,4500.000000,30,1,19124.000960,2030.100208,hintandextended,nbiot,180 +on7,0,0,26,1,0,445,4680.000000,30,3,10291.000320,2388.099792,hintandextended,nbiot,180 +on4,0,0,25,1,0,419,4500.000000,30,1,10177.000320,1869.680416,hintandextended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,30,0,15306.000320,1916.760624,hintandextended,nbiot,180 +on1,0,0,25,1,0,2425,4500.000000,30,1,49979.000320,1977.709792,hintandextended,nbiot,180 +on8,0,0,25,1,0,366,4500.000000,30,1,11013.000320,2028.150208,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,30,0,1950.000320,1957.060624,hintandextended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,30,0,5534.000320,2035.711040,hintandextended,nbiot,180 +on10,0,0,25,1,0,2383,4587.000000,30,2,50020.600960,2040.459584,hintandextended,nbiot,180 +on9,0,0,25,1,0,1,4500.000000,30,1,1992.600320,1940.270624,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,30,0,-1.000000,2040.006240,hintandextended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,30,0,24282.000320,1754.000208,hintandextended,nbiot,180 +on2,0,0,25,1,0,997,4500.000000,30,1,19084.000320,1974.200000,hintandextended,nbiot,180 +on12,0,0,28,1,0,739,5040.000000,31,6,19163.601600,2455.790000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4344.001280,31,0,-1.000000,2049.605088,hintandextended,nbiot,180 +on6,0,0,25,1,0,289,4500.000000,31,1,7471.000640,1842.574792,hintandextended,nbiot,180 +on11,0,0,28,1,0,605,5040.000000,31,4,19083.000320,2586.634376,hintandextended,nbiot,180 +on1,0,0,25,1,0,360,4500.000000,31,1,7634.001280,1895.809168,hintandextended,nbiot,180 +on4,0,0,26,1,0,304,4680.000000,31,2,12006.000320,2310.880000,hintandextended,nbiot,180 +on3,0,0,26,1,0,841,4680.000000,31,2,19123.000960,2112.239584,hintandextended,nbiot,180 +on7,0,0,24,1,0,62,4320.000000,31,0,762.000320,1754.000208,hintandextended,nbiot,180 +on8,0,0,25,1,0,540,4500.000000,31,1,12134.600640,1942.545624,hintandextended,nbiot,180 +on10,0,0,25,1,0,513,4500.000000,31,1,12046.000960,1890.999584,hintandextended,nbiot,180 +on5,0,0,29,1,0,777,5220.000000,31,5,24273.000320,2806.313960,hintandextended,nbiot,180 +on2,0,0,27,1,0,565,4860.000000,31,4,14776.000320,2266.399584,hintandextended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,31,0,4800.000320,1780.910208,hintandextended,nbiot,180 +on1,0,0,25,1,0,1816,4500.000000,32,1,39134.000320,2134.490000,hintandextended,nbiot,180 +on11,0,0,26,1,0,538,4680.000000,32,2,10520.001600,2166.905416,hintandextended,nbiot,180 +on10,0,0,27,1,0,602,4860.000000,32,3,10930.000960,2328.799584,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,32,0,1637.000320,1754.000208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,32,0,-1.000000,2040.006240,hintandextended,nbiot,180 +on4,0,0,27,1,0,1191,4860.000000,32,4,23136.000320,2242.349584,hintandextended,nbiot,180 +on9,0,0,27,1,0,862,4860.000000,32,3,18436.000960,2263.019792,hintandextended,nbiot,180 +on5,0,0,25,1,0,16,4500.000000,32,2,4144.000320,2010.860000,hintandextended,nbiot,180 +on7,0,0,25,1,0,653,4500.000000,32,1,16407.000320,2032.700416,hintandextended,nbiot,180 +on6,0,0,26,1,0,246,4680.000000,32,4,10890.000320,2288.194168,hintandextended,nbiot,180 +on3,0,0,25,1,0,522,4500.000000,32,1,10440.000320,1917.195000,hintandextended,nbiot,180 +on2,0,0,26,1,0,837,4680.000000,32,2,18396.000320,2235.349792,hintandextended,nbiot,180 +on8,0,0,25,1,0,513,4500.000000,32,1,10480.000960,2014.108960,hintandextended,nbiot,180 +on11,0,0,26,1,0,1054,4680.000000,33,2,22088.600960,2130.700416,hintandextended,nbiot,180 +on7,0,0,25,1,0,113,4500.000000,33,1,4153.000320,2094.450000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4355.000320,33,0,-1.000000,2054.006576,hintandextended,nbiot,180 +on6,0,0,25,1,0,3960,4500.000000,33,1,79826.000320,2033.350000,hintandextended,nbiot,180 +on10,0,0,24,1,0,404,4320.000000,33,0,9314.000320,1840.450208,hintandextended,nbiot,180 +on1,0,0,24,1,0,955,4320.000000,33,0,19675.000320,1967.850832,hintandextended,nbiot,180 +on5,0,0,25,1,0,541,4500.000000,33,1,13700.600320,2000.070416,hintandextended,nbiot,180 +on2,0,0,24,1,0,617,4320.000000,33,0,13625.000320,1888.160624,hintandextended,nbiot,180 +on8,0,0,24,1,0,1307,4320.000000,33,0,28615.000320,1930.800208,hintandextended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,33,0,9449.000320,1854.100000,hintandextended,nbiot,180 +on12,0,0,25,1,0,635,4500.000000,33,1,15188.000320,2168.290624,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,33,0,2008.000320,1798.460624,hintandextended,nbiot,180 +on4,0,0,26,1,0,987,4680.000000,33,3,22047.000320,2100.604584,hintandextended,nbiot,180 +on9,0,0,27,1,0,1325,4860.000000,34,3,25510.600960,2335.559792,hintandextended,nbiot,180 +on11,0,0,24,1,0,1032,4320.000000,34,0,20138.000320,1873.470000,hintandextended,nbiot,180 +on1,0,0,25,1,0,2486,4500.000000,34,1,48985.000320,1942.350416,hintandextended,nbiot,180 +on8,0,0,27,1,0,1213,4860.000000,34,3,25469.000320,2511.904584,hintandextended,nbiot,180 +on3,0,0,24,1,0,3780,4320.000000,34,0,76105.000320,1845.000000,hintandextended,nbiot,180 +on5,0,0,25,1,0,991,4500.000000,34,1,20179.600960,2110.961040,hintandextended,nbiot,180 +on2,0,0,24,1,0,727,4320.000000,34,0,15478.000320,2085.370624,hintandextended,nbiot,180 +on6,0,0,25,1,0,1233,4500.000000,34,1,24528.000960,1890.999584,hintandextended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,34,0,20291.000320,1987.610416,hintandextended,nbiot,180 +on10,0,0,27,1,0,1500,4860.000000,34,4,31596.000320,2242.349584,hintandextended,nbiot,180 +on7,0,0,25,1,0,1013,4500.000000,34,1,24488.000320,2058.700208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4333.000320,34,0,-1.000000,2045.206992,hintandextended,nbiot,180 +on12,0,0,25,1,0,1260,4500.000000,34,1,25550.601600,2032.699792,hintandextended,nbiot,180 +on1,0,0,25,1,0,202,4500.000000,35,1,6239.600960,1968.869584,hintandextended,nbiot,180 +on5,0,0,24,1,0,1207,4320.000000,35,0,24548.000320,1762.450000,hintandextended,nbiot,180 +on11,0,0,26,1,0,789,4680.000000,35,2,15358.000320,2150.589792,hintandextended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,35,0,7559.000320,1754.000208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4334.000320,35,0,-1.000000,2045.605120,hintandextended,nbiot,180 +on3,0,0,25,1,0,180,4500.000000,35,1,6287.600640,2101.014584,hintandextended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,35,0,20252.000320,1833.300000,hintandextended,nbiot,180 +on6,0,0,26,1,0,376,4745.000000,35,3,11484.600960,2380.299792,hintandextended,nbiot,180 +on10,0,0,24,1,0,3,4320.000000,35,0,3064.000320,1754.000208,hintandextended,nbiot,180 +on8,0,0,26,1,0,160,4680.000000,35,4,7405.000320,2189.394584,hintandextended,nbiot,180 +on7,0,0,25,1,0,264,4500.000000,35,2,6198.000320,1949.759792,hintandextended,nbiot,180 +on4,0,0,24,1,0,544,4434.000000,35,1,11443.000320,1889.559792,hintandextended,nbiot,180 +on2,0,0,25,1,0,187,4500.000000,35,1,6327.601280,2130.460416,hintandextended,nbiot,180 +on11,0,0,26,1,0,1046,4680.000000,36,2,18907.600960,2032.030416,hintandextended,nbiot,180 +on7,0,0,25,1,0,536,4500.000000,36,1,10157.000320,1941.700208,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,36,0,1418.000320,1869.310416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4335.000640,36,0,-1.000000,2046.004208,hintandextended,nbiot,180 +on12,0,0,25,1,0,670,4500.000000,36,1,14220.000320,2015.799792,hintandextended,nbiot,180 +on9,0,0,26,1,0,1155,4680.000000,36,2,26981.600960,2173.209376,hintandextended,nbiot,180 +on5,0,0,25,1,0,756,4500.000000,36,1,18866.000320,1997.144792,hintandextended,nbiot,180 +on4,0,0,25,1,0,324,4500.000000,36,1,4745.000320,1870.200000,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,36,0,1292.000320,1984.620416,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,36,0,4823.000320,1845.000000,hintandextended,nbiot,180 +on1,0,0,26,1,0,1252,4680.000000,36,2,26940.000320,2194.659584,hintandextended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,36,0,17253.000320,1773.760000,hintandextended,nbiot,180 +on10,0,0,25,1,0,735,4647.000000,36,2,22906.000320,2498.139584,hintandextended,nbiot,180 +on11,0,0,25,1,0,525,4500.000000,37,1,13150.000320,2094.710208,hintandextended,nbiot,180 +on12,0,0,27,1,0,492,4860.000000,37,3,15998.000960,2543.559168,hintandextended,nbiot,180 +on6,0,0,24,1,0,532,4352.000320,37,0,9122.000320,1766.800336,hintandextended,nbiot,180 +on10,0,0,26,1,0,372,4691.000320,37,3,9264.000320,2174.750128,hintandextended,nbiot,180 +on2,0,0,25,1,0,577,4500.000000,37,1,13190.000960,1944.299584,hintandextended,nbiot,180 +on1,0,0,27,1,0,672,4860.000000,37,3,19386.000320,2632.999584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4332.000640,37,0,-1.000000,2044.805664,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,37,0,2562.000320,1868.660624,hintandextended,nbiot,180 +on7,0,0,25,1,0,283,4621.000000,37,2,7091.600960,2069.075416,hintandextended,nbiot,180 +on8,0,0,24,1,0,1572,4320.000000,37,1,34031.000320,1754.000208,hintandextended,nbiot,180 +on3,0,0,26,1,0,627,4680.000000,37,2,15958.000320,2194.399792,hintandextended,nbiot,180 +on9,0,0,25,1,0,336,4500.000000,37,1,7050.000320,1930.390416,hintandextended,nbiot,180 +on4,0,0,25,1,0,1800,4500.000000,37,1,36449.600640,2017.555000,hintandextended,nbiot,180 +on10,0,0,25,1,0,900,4500.000000,38,1,20488.601600,1942.350208,hintandextended,nbiot,180 +on8,0,0,25,1,0,1937,4500.000000,38,1,40345.000320,2041.150000,hintandextended,nbiot,180 +on12,0,0,25,1,0,368,4500.000000,38,3,12289.000320,2060.260000,hintandextended,nbiot,180 +on11,0,0,26,1,0,1736,4936.000000,38,6,46278.000320,2650.529792,hintandextended,nbiot,180 +on1,0,0,25,1,0,1031,4500.000000,38,1,20314.000320,2103.810208,hintandextended,nbiot,180 +on4,0,0,24,1,0,202,4320.000000,38,0,3859.000320,1895.960000,hintandextended,nbiot,180 +on3,0,0,25,1,0,532,4500.000000,38,1,9374.000320,2080.410208,hintandextended,nbiot,180 +on5,0,0,25,1,0,643,4500.000000,38,1,14906.000320,1952.815208,hintandextended,nbiot,180 +on6,0,0,26,1,0,963,4680.000000,38,2,20355.600960,2351.959168,hintandextended,nbiot,180 +on2,0,0,24,1,0,1949,4329.000320,38,0,38816.000320,1757.600336,hintandextended,nbiot,180 +on7,0,0,28,1,0,2106,5040.000000,38,6,48595.000320,2858.529168,hintandextended,nbiot,180 +on9,0,0,25,1,0,360,4500.000000,38,1,9436.001280,1910.760624,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4354.601600,38,0,-1.000000,2053.846880,hintandextended,nbiot,180 +on6,0,0,24,1,0,1975,4355.000320,39,0,39004.000320,1768.000336,hintandextended,nbiot,180 +on2,0,0,26,1,0,1042,4680.000000,39,3,19718.000320,1989.000000,hintandextended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,39,0,12458.000320,1938.470832,hintandextended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,39,0,17024.000320,1911.950208,hintandextended,nbiot,180 +on3,0,0,24,1,0,3065,4320.000000,39,0,64056.000320,1813.800208,hintandextended,nbiot,180 +on1,0,0,26,1,0,1768,4680.000000,39,2,35836.000960,2086.500000,hintandextended,nbiot,180 +on5,0,0,24,1,0,725,4320.000000,39,0,16954.000320,1754.000416,hintandextended,nbiot,180 +on9,0,0,24,1,0,1768,4328.000320,39,0,35796.000320,1757.200336,hintandextended,nbiot,180 +on4,0,0,26,1,0,1866,4680.000000,39,2,40057.000320,2176.200208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,39,0,-1.000000,2040.005824,hintandextended,nbiot,180 +on12,0,0,26,1,0,1689,4680.000000,39,3,35876.601600,2317.055208,hintandextended,nbiot,180 +on11,0,0,24,1,0,643,4320.000000,39,0,12383.000320,1869.310624,hintandextended,nbiot,180 +on10,0,0,26,1,0,3155,4680.000000,39,3,67177.000320,2278.249792,hintandextended,nbiot,180 +on1,0,0,26,1,0,515,4703.000320,40,2,10423.000320,2052.344504,hintandextended,nbiot,180 +on7,0,0,25,1,0,513,4500.000000,40,1,10300.000960,1890.999584,hintandextended,nbiot,180 +on9,0,0,27,1,0,668,4860.000000,40,3,15487.600960,2206.795208,hintandextended,nbiot,180 +on2,0,0,25,1,0,1797,4500.000000,40,1,35860.000320,1917.000000,hintandextended,nbiot,180 +on4,0,0,24,1,0,600,4320.000000,40,0,13867.000320,1805.350000,hintandextended,nbiot,180 +on12,0,0,27,1,0,732,4860.000000,40,3,19637.000320,2572.874584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4343.000320,40,0,-1.000000,2049.205120,hintandextended,nbiot,180 +on6,0,0,24,1,0,497,4320.000000,40,0,10260.000320,1755.300000,hintandextended,nbiot,180 +on11,0,0,24,1,0,72,4320.000000,40,0,3366.000320,2116.960000,hintandextended,nbiot,180 +on10,0,0,26,1,0,648,4680.000000,40,2,15446.000320,2389.919584,hintandextended,nbiot,180 +on5,0,0,24,1,0,329,4329.000320,40,0,5193.000320,1812.460336,hintandextended,nbiot,180 +on3,0,0,26,1,0,538,4680.000000,40,2,10340.001600,1937.844376,hintandextended,nbiot,180 +on8,0,0,26,1,0,690,4680.000000,40,3,13907.000960,2030.338960,hintandextended,nbiot,180 +on5,0,0,27,1,0,497,4860.000000,41,3,11728.000320,2320.090208,hintandextended,nbiot,180 +on3,0,0,24,1,0,817,4320.000000,41,0,17445.000320,1780.909792,hintandextended,nbiot,180 +on1,0,0,28,1,0,708,5040.000000,41,5,17486.600960,2456.700208,hintandextended,nbiot,180 +on10,0,0,25,1,0,900,4500.000000,41,1,20666.000320,2226.400832,hintandextended,nbiot,180 +on9,0,0,24,1,0,125,4320.000000,41,0,1208.000320,1973.961040,hintandextended,nbiot,180 +on11,0,0,26,1,0,266,4680.000000,41,2,6593.000960,2025.205832,hintandextended,nbiot,180 +on4,0,0,26,1,0,334,4680.000000,41,2,9737.000320,2259.399792,hintandextended,nbiot,180 +on12,0,0,25,1,0,113,4500.000000,41,1,6553.000320,2031.465208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,41,0,-1.000000,2040.008528,hintandextended,nbiot,180 +on8,0,0,25,1,0,3862,4500.000000,41,1,76737.000320,2097.050000,hintandextended,nbiot,180 +on2,0,0,24,1,0,196,4500.000000,41,1,6633.600320,2323.510208,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,41,0,1343.000320,1899.470208,hintandextended,nbiot,180 +on6,0,0,24,1,0,2792,4320.000000,41,0,56469.000320,1912.600208,hintandextended,nbiot,180 +on10,0,0,25,1,0,939,4500.000000,42,1,19904.000320,2081.709792,hintandextended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,42,0,9613.000320,1754.000208,hintandextended,nbiot,180 +on9,0,0,24,1,0,278,4320.000000,42,0,4650.000320,1877.499792,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,42,0,1156.000320,1765.960000,hintandextended,nbiot,180 +on2,0,0,27,1,0,488,4860.000000,42,3,17793.000320,2591.009168,hintandextended,nbiot,180 +on12,0,0,24,1,0,585,4320.000000,42,0,14092.000320,1815.100000,hintandextended,nbiot,180 +on11,0,0,26,1,0,663,4680.000000,42,2,14132.000960,2200.379168,hintandextended,nbiot,180 +on5,0,0,27,1,0,1053,4860.000000,42,3,19945.600960,2249.369168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4348.000640,42,0,-1.000000,2051.204624,hintandextended,nbiot,180 +on3,0,0,26,1,0,513,4680.000000,42,2,9505.000960,2079.349792,hintandextended,nbiot,180 +on6,0,0,25,1,0,720,4500.000000,42,2,17834.601280,2014.955208,hintandextended,nbiot,180 +on7,0,0,26,1,0,379,4680.000000,42,4,9465.000320,2176.849792,hintandextended,nbiot,180 +on1,0,0,25,1,0,180,4500.000000,42,1,4721.001280,1826.000416,hintandextended,nbiot,180 +on6,0,0,24,1,0,611,4320.000000,43,0,11285.000320,1881.399792,hintandextended,nbiot,180 +on7,0,0,26,1,0,334,4680.000000,43,2,5900.600960,2003.755208,hintandextended,nbiot,180 +on9,0,0,25,1,0,360,4500.000000,43,1,10111.000320,2045.180000,hintandextended,nbiot,180 +on10,0,0,25,1,0,740,4500.000000,43,1,15717.000320,2013.590000,hintandextended,nbiot,180 +on1,0,0,25,1,0,473,4500.000000,43,1,9954.000320,2031.270000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1363,4500.000000,43,1,28053.000320,1875.010208,hintandextended,nbiot,180 +on5,0,0,25,1,0,540,4500.000000,43,1,11409.600640,1939.295832,hintandextended,nbiot,180 +on11,0,0,26,1,0,579,4680.000000,43,2,9995.600960,2008.500000,hintandextended,nbiot,180 +on4,0,0,24,1,0,140,4320.000320,43,0,3147.000320,1869.310336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4337.000320,43,0,-1.000000,2046.805328,hintandextended,nbiot,180 +on8,0,0,24,1,0,1473,4320.000000,43,0,29687.000320,1823.550000,hintandextended,nbiot,180 +on12,0,0,26,1,0,513,4680.000000,43,2,11325.000960,2170.349376,hintandextended,nbiot,180 +on2,0,0,24,1,0,335,4335.000320,43,0,5860.000320,1875.310336,hintandextended,nbiot,180 +on9,0,0,25,1,0,2453,4500.000000,44,1,51945.000320,1996.300208,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,44,0,2712.000320,1889.980416,hintandextended,nbiot,180 +on1,0,0,25,1,0,333,4500.000000,44,1,6045.000960,2056.750416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4359.000320,44,0,-1.000000,2055.608656,hintandextended,nbiot,180 +on8,0,0,25,1,0,3600,4500.000000,44,1,74310.000320,1917.000000,hintandextended,nbiot,180 +on4,0,0,26,1,0,295,4680.000000,44,2,6085.001600,2127.645208,hintandextended,nbiot,180 +on6,0,0,25,1,0,900,4500.000000,44,1,21343.600640,1929.545832,hintandextended,nbiot,180 +on11,0,0,24,1,0,1632,4320.000000,44,0,32930.000320,1800.150208,hintandextended,nbiot,180 +on5,0,0,24,1,0,45,4320.000000,44,0,2533.000320,1924.300416,hintandextended,nbiot,180 +on7,0,0,27,1,0,510,4860.000000,44,4,9521.600960,2486.295208,hintandextended,nbiot,180 +on12,0,0,26,1,0,259,4680.000000,44,2,9480.000320,2438.409584,hintandextended,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,44,0,52071.000320,1945.100000,hintandextended,nbiot,180 +on10,0,0,24,1,0,295,4320.000000,44,0,6005.000320,1885.950208,hintandextended,nbiot,180 +on4,0,0,26,1,0,1822,4680.000000,45,3,37542.000320,2170.804168,hintandextended,nbiot,180 +on5,0,0,27,1,0,1656,4860.000000,45,3,37583.600960,2461.009168,hintandextended,nbiot,180 +on10,0,0,25,1,0,1593,4500.000000,45,1,30915.000960,2006.309584,hintandextended,nbiot,180 +on1,0,0,24,1,0,1180,4320.000000,45,0,22282.000320,1754.000416,hintandextended,nbiot,180 +on12,0,0,24,1,0,410,4320.000000,45,0,9018.000320,1754.000416,hintandextended,nbiot,180 +on9,0,0,24,1,0,1632,4320.000000,45,0,34224.000960,1837.199584,hintandextended,nbiot,180 +on8,0,0,25,1,0,720,4500.000000,45,2,20330.000320,1943.000000,hintandextended,nbiot,180 +on3,0,0,27,1,0,1703,4860.000000,45,3,34264.001600,2224.214792,hintandextended,nbiot,180 +on7,0,0,25,1,0,1260,4500.000000,45,1,25659.600640,1955.154792,hintandextended,nbiot,180 +on2,0,0,24,1,0,732,4320.000000,45,0,15761.000320,1793.910208,hintandextended,nbiot,180 +on11,0,0,26,1,0,1483,4680.000000,45,2,34184.000320,2209.349584,hintandextended,nbiot,180 +on6,0,0,24,1,0,1579,4320.000000,45,0,30875.000320,1754.000208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,45,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on6,0,0,25,1,0,822,4500.000000,46,2,18222.000320,2020.219792,hintandextended,nbiot,180 +on11,0,0,25,1,0,409,4500.000000,46,2,11114.000320,1989.605000,hintandextended,nbiot,180 +on3,0,0,25,1,0,850,4500.000000,46,1,18262.000960,2032.244792,hintandextended,nbiot,180 +on2,0,0,27,1,0,1004,4860.000000,46,3,22190.000960,2331.594168,hintandextended,nbiot,180 +on12,0,0,27,1,0,1198,4860.000000,46,3,27014.000320,2299.939584,hintandextended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,46,0,9830.000320,2054.560000,hintandextended,nbiot,180 +on1,0,0,25,1,0,873,4500.000000,46,1,15330.000960,1998.899792,hintandextended,nbiot,180 +on9,0,0,29,1,0,1157,5220.000000,46,5,27054.000960,2593.438960,hintandextended,nbiot,180 +on4,0,0,29,1,0,1368,5220.000000,46,5,32226.000320,2619.114168,hintandextended,nbiot,180 +on10,0,0,24,1,0,984,4494.000000,46,1,22150.000320,2083.600208,hintandextended,nbiot,180 +on5,0,0,26,1,0,514,4680.000000,46,2,11155.600960,2012.660416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,46,0,-1.000000,2040.005408,hintandextended,nbiot,180 +on7,0,0,25,1,0,627,4500.000000,46,1,15290.000320,2128.965416,hintandextended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,47,0,26571.000320,1786.500416,hintandextended,nbiot,180 +on2,0,0,24,1,0,107,4320.000000,47,0,3162.000320,1896.350624,hintandextended,nbiot,180 +on7,0,0,26,1,0,514,4680.000000,47,2,10669.600960,2169.245624,hintandextended,nbiot,180 +on4,0,0,24,1,0,511,4331.000320,47,0,10629.000320,2095.360752,hintandextended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,47,0,24801.000320,2279.850416,hintandextended,nbiot,180 +on5,0,0,24,1,0,186,4320.000000,47,0,6963.000320,1760.110208,hintandextended,nbiot,180 +on12,0,0,24,1,0,756,4323.000000,47,2,19891.000320,1908.860208,hintandextended,nbiot,180 +on1,0,0,24,1,0,809,4320.000000,47,0,15499.000320,1960.050624,hintandextended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,47,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on9,0,0,25,1,0,901,4500.000000,47,1,19981.600320,1967.700624,hintandextended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,47,0,39314.000320,1864.500208,hintandextended,nbiot,180 +on10,0,0,25,1,0,1553,4500.000000,47,1,31310.000320,1918.300000,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,47,0,-1.000000,2014.007280,hintandextended,nbiot,180 +on11,0,0,25,1,0,835,4500.000000,48,1,18071.000320,2047.260000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4325.600960,48,0,-1.000000,2042.244960,hintandextended,nbiot,180 +on10,0,0,25,1,0,423,4506.000000,48,3,12474.601600,2109.395000,hintandextended,nbiot,180 +on5,0,0,26,1,0,675,4680.000000,48,2,15979.600960,2188.030416,hintandextended,nbiot,180 +on8,0,0,25,1,0,513,4500.000000,48,1,10516.000960,1890.999584,hintandextended,nbiot,180 +on2,0,0,25,1,0,205,4500.000000,48,2,4568.600960,2000.654792,hintandextended,nbiot,180 +on3,0,0,26,1,0,504,4680.000000,48,2,12434.000960,2336.879376,hintandextended,nbiot,180 +on9,0,0,25,1,0,474,4500.000000,48,1,10476.000320,1851.350624,hintandextended,nbiot,180 +on12,0,0,25,1,0,967,4500.000000,48,1,21661.000320,2013.590000,hintandextended,nbiot,180 +on1,0,0,24,1,0,185,4320.000000,48,0,4423.000320,1843.960208,hintandextended,nbiot,180 +on6,0,0,26,1,0,482,4680.000000,48,2,12394.000320,2216.759792,hintandextended,nbiot,180 +on4,0,0,27,1,0,727,4860.000000,48,3,15938.000320,2242.154376,hintandextended,nbiot,180 +on7,0,0,25,1,0,290,4535.000320,48,2,4528.000320,2061.909712,hintandextended,nbiot,180 +on7,0,0,26,1,0,1011,4680.000000,49,2,21804.000320,2103.984792,hintandextended,nbiot,180 +on12,0,0,26,1,0,722,4680.000000,49,3,16857.600960,2103.660208,hintandextended,nbiot,180 +on3,0,0,24,1,0,571,4320.000000,49,0,11946.000320,1869.310208,hintandextended,nbiot,180 +on6,0,0,24,1,0,180,4321.000000,49,1,5607.001280,1754.400416,hintandextended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,49,0,5482.000320,1922.349792,hintandextended,nbiot,180 +on9,0,0,26,1,0,1040,4680.000000,49,2,20679.000960,2071.289376,hintandextended,nbiot,180 +on4,0,0,24,1,0,1080,4320.000000,49,0,21873.000320,1796.250000,hintandextended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,49,0,21957.000320,1845.000000,hintandextended,nbiot,180 +on2,0,0,25,1,0,913,4599.000000,49,2,20639.000320,2159.399792,hintandextended,nbiot,180 +on5,0,0,25,1,0,201,4500.000000,49,3,7468.000320,2076.249792,hintandextended,nbiot,180 +on8,0,0,24,1,0,173,4353.000320,49,0,2166.000320,1767.200336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4356.001600,49,0,-1.000000,2054.405008,hintandextended,nbiot,180 +on1,0,0,24,1,0,787,4320.000000,49,0,16816.000320,1800.409792,hintandextended,nbiot,180 +on7,0,0,24,1,0,1462,4320.000000,50,0,31394.000320,1859.560000,hintandextended,nbiot,180 +on3,0,0,24,1,0,3930,4330.000320,50,0,78599.000320,1777.760336,hintandextended,nbiot,180 +on9,0,0,25,1,0,2952,4500.000000,50,1,58742.000320,2069.880208,hintandextended,nbiot,180 +on12,0,0,24,1,0,1216,4320.000000,50,0,22392.000320,1760.110624,hintandextended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,50,0,14082.000320,2254.760832,hintandextended,nbiot,180 +on5,0,0,25,1,0,1198,4500.000000,50,2,28157.000320,2133.450208,hintandextended,nbiot,180 +on8,0,0,25,1,0,2520,4500.000000,50,1,52563.600640,1997.015208,hintandextended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,50,0,10297.000320,1882.700624,hintandextended,nbiot,180 +on10,0,0,25,1,0,884,4500.000000,50,1,17218.000320,2143.850624,hintandextended,nbiot,180 +on1,0,0,25,1,0,3967,4500.000000,50,1,82106.000320,2143.850000,hintandextended,nbiot,180 +on4,0,0,25,1,0,1497,4500.000000,50,1,31435.600960,1866.300624,hintandextended,nbiot,180 +on2,0,0,26,1,0,1593,4680.000000,50,2,34117.000320,2312.700000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,50,0,-1.000000,2040.007280,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4327.000320,51,0,-1.000000,2042.806992,hintandextended,nbiot,180 +on10,0,0,25,1,0,476,4500.000000,51,1,9046.000960,1865.259792,hintandextended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,51,0,4614.000320,1890.110000,hintandextended,nbiot,180 +on9,0,0,25,1,0,741,4581.000000,51,2,14681.000960,2080.504792,hintandextended,nbiot,180 +on4,0,0,25,1,0,872,4500.000000,51,1,19489.000320,2072.480208,hintandextended,nbiot,180 +on5,0,0,29,1,0,645,5220.000000,51,5,19529.000960,2708.943960,hintandextended,nbiot,180 +on11,0,0,26,1,0,693,4680.000000,51,2,13211.001280,2139.409584,hintandextended,nbiot,180 +on2,0,0,25,1,0,458,4500.000000,51,2,9086.601600,2008.389792,hintandextended,nbiot,180 +on8,0,0,27,1,0,992,4860.000000,51,3,23379.000320,2475.310208,hintandextended,nbiot,180 +on12,0,0,24,1,0,622,4320.000000,51,0,13170.000320,2034.800416,hintandextended,nbiot,180 +on6,0,0,24,1,0,495,4320.000000,51,0,9006.000320,1852.149584,hintandextended,nbiot,180 +on3,0,0,25,1,0,2340,4500.000000,51,1,48766.600640,2033.155000,hintandextended,nbiot,180 +on1,0,0,25,1,0,720,4500.000000,51,1,14764.000320,1838.350416,hintandextended,nbiot,180 +on2,0,0,29,1,0,783,5220.000000,52,5,17399.600960,2413.779376,hintandextended,nbiot,180 +on11,0,0,28,1,0,600,5040.000000,52,4,19727.000320,2851.249376,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,52,0,2546.000320,1754.260000,hintandextended,nbiot,180 +on5,0,0,26,1,0,197,4715.000000,52,3,13874.000320,2465.344792,hintandextended,nbiot,180 +on12,0,0,24,1,0,550,4320.000000,52,0,13914.000960,1940.679584,hintandextended,nbiot,180 +on1,0,0,25,1,0,334,4500.000000,52,1,6775.000960,1922.655624,hintandextended,nbiot,180 +on10,0,0,25,1,0,720,4500.000000,52,1,17450.600640,1916.805000,hintandextended,nbiot,180 +on7,0,0,26,1,0,306,4680.000000,52,2,10533.000320,2171.584168,hintandextended,nbiot,180 +on3,0,0,27,1,0,638,4860.000000,52,3,17358.000320,2389.509376,hintandextended,nbiot,180 +on9,0,0,25,1,0,289,4521.001600,52,2,6815.001600,1862.546888,hintandextended,nbiot,180 +on4,0,0,25,1,0,513,4500.000000,52,1,10573.000960,1890.999584,hintandextended,nbiot,180 +on8,0,0,24,1,0,346,4358.000320,52,1,6735.000320,1883.470336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,52,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on3,0,0,27,1,0,1086,4860.000000,53,3,23987.000320,2376.444584,hintandextended,nbiot,180 +on11,0,0,26,1,0,2474,4680.000000,53,2,48357.000320,2163.199792,hintandextended,nbiot,180 +on1,0,0,26,1,0,946,4754.000000,53,3,20672.600960,2339.830416,hintandextended,nbiot,180 +on9,0,0,24,1,0,861,4469.000000,53,1,20631.000320,2025.759584,hintandextended,nbiot,180 +on10,0,0,25,1,0,822,4500.000000,53,1,17252.000960,2059.479792,hintandextended,nbiot,180 +on8,0,0,25,1,0,1980,4500.000000,53,1,40906.000320,2060.000208,hintandextended,nbiot,180 +on12,0,0,25,1,0,695,4520.000000,53,2,12213.600960,1834.000416,hintandextended,nbiot,180 +on6,0,0,25,1,0,522,4522.600960,53,1,7730.600960,2156.855592,hintandextended,nbiot,180 +on5,0,0,24,1,0,2337,4357.000320,53,0,46138.000320,1768.800336,hintandextended,nbiot,180 +on4,0,0,24,1,0,515,4335.000320,53,0,7690.000320,1926.660336,hintandextended,nbiot,180 +on7,0,0,24,1,0,550,4320.000000,53,0,12172.000320,1837.460000,hintandextended,nbiot,180 +on2,0,0,24,1,0,753,4320.000000,53,0,17212.000320,1822.900416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4332.000320,53,0,-1.000000,2044.805536,hintandextended,nbiot,180 +on4,0,0,25,1,0,0,4500.000000,54,1,1940.600640,2056.815832,hintandextended,nbiot,180 +on5,0,0,26,1,0,431,4680.000000,54,2,9556.001600,2001.025416,hintandextended,nbiot,180 +on12,0,0,25,1,0,513,4500.000000,54,1,9516.000960,1890.999584,hintandextended,nbiot,180 +on7,0,0,28,1,0,858,5040.000000,54,5,19681.000320,2517.798752,hintandextended,nbiot,180 +on6,0,0,27,1,0,752,4860.000000,54,3,16030.000320,2327.239584,hintandextended,nbiot,180 +on8,0,0,25,1,0,540,4500.000000,54,1,9476.000320,1916.350000,hintandextended,nbiot,180 +on3,0,0,25,1,0,693,4500.000000,54,1,12453.000960,1890.999584,hintandextended,nbiot,180 +on2,0,0,24,1,0,576,4320.000000,54,0,12413.000320,1826.799584,hintandextended,nbiot,180 +on11,0,0,26,1,0,648,4680.000000,54,2,16070.000960,2230.929168,hintandextended,nbiot,180 +on1,0,0,26,1,0,1104,4680.000000,54,2,19722.600960,2105.350000,hintandextended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,54,0,24009.000320,1845.000000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,54,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on10,0,0,25,1,0,1164,4500.000000,54,1,23948.000320,1947.810000,hintandextended,nbiot,180 +on2,0,0,24,1,0,673,4320.000000,55,0,12100.000320,1816.400208,hintandextended,nbiot,180 +on7,0,0,25,1,0,406,4500.000000,55,1,10094.000320,1917.195000,hintandextended,nbiot,180 +on11,0,0,25,1,0,208,4500.000000,55,1,4893.600960,1938.645624,hintandextended,nbiot,180 +on8,0,0,24,1,0,322,4322.000320,55,0,4853.000320,1986.460752,hintandextended,nbiot,180 +on6,0,0,25,1,0,2911,4500.000000,55,1,62258.000320,2118.500000,hintandextended,nbiot,180 +on5,0,0,24,1,0,542,4320.000000,55,0,12140.000960,1843.700000,hintandextended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,55,0,26086.000320,1754.000208,hintandextended,nbiot,180 +on10,0,0,27,1,0,691,4860.000000,55,4,15342.000320,2334.389584,hintandextended,nbiot,180 +on12,0,0,25,1,0,849,4500.000000,55,1,19795.000320,2139.950416,hintandextended,nbiot,180 +on1,0,0,25,1,0,565,4500.000000,55,2,12273.600960,2190.845208,hintandextended,nbiot,180 +on3,0,0,27,1,0,705,4860.000000,55,4,12180.001600,2207.250416,hintandextended,nbiot,180 +on4,0,0,27,1,0,555,4860.000000,55,3,12233.000320,2215.699584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4353.600960,55,0,-1.000000,2053.447872,hintandextended,nbiot,180 +on5,0,0,26,1,0,403,4680.000000,56,2,10385.000320,2176.719792,hintandextended,nbiot,180 +on2,0,0,27,1,0,379,4860.000000,56,3,13959.000320,2474.399584,hintandextended,nbiot,180 +on11,0,0,25,1,0,2213,4500.000000,56,1,45189.000320,1979.270000,hintandextended,nbiot,180 +on3,0,0,24,1,0,1839,4320.000000,56,0,37556.000320,1870.350208,hintandextended,nbiot,180 +on10,0,0,25,1,0,217,4500.000000,56,1,6518.000320,1995.000208,hintandextended,nbiot,180 +on8,0,0,28,1,0,657,5040.000000,56,5,13999.000960,2275.609376,hintandextended,nbiot,180 +on1,0,0,25,1,0,171,4500.000000,56,2,6558.000960,2041.084792,hintandextended,nbiot,180 +on6,0,0,24,1,0,188,4430.000000,56,1,6598.400640,2042.399584,hintandextended,nbiot,180 +on12,0,0,25,1,0,721,4500.000000,56,1,15217.600320,2058.700208,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,56,0,2188.000320,1955.370416,hintandextended,nbiot,180 +on9,0,0,26,1,0,717,4680.000000,56,3,14039.601600,2107.040416,hintandextended,nbiot,180 +on4,0,0,26,1,0,635,4700.000000,56,3,15042.000320,2268.829584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4355.600320,56,0,-1.000000,2054.245744,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,57,0,-1.000000,2040.006656,hintandextended,nbiot,180 +on2,0,0,25,1,0,674,4500.000000,57,1,11825.000960,2008.194792,hintandextended,nbiot,180 +on6,0,0,28,1,0,778,5040.000000,57,5,17452.601600,2314.739792,hintandextended,nbiot,180 +on10,0,0,25,1,0,0,4500.000000,57,1,2685.600640,1940.465624,hintandextended,nbiot,180 +on4,0,0,26,1,0,357,4680.000000,57,3,7329.601600,2069.403752,hintandextended,nbiot,180 +on5,0,0,26,1,0,598,4680.000000,57,2,17412.000960,2203.499168,hintandextended,nbiot,180 +on9,0,0,24,1,0,226,4386.000000,57,1,7249.000320,2136.015416,hintandextended,nbiot,180 +on7,0,0,25,1,0,473,4500.000000,57,1,11785.000320,2114.599792,hintandextended,nbiot,180 +on3,0,0,25,1,0,360,4500.000000,57,1,7384.602240,1835.750416,hintandextended,nbiot,180 +on1,0,0,26,1,0,749,4680.000000,57,2,17372.000320,2078.699792,hintandextended,nbiot,180 +on8,0,0,26,1,0,294,4680.000000,57,2,7289.000960,2240.028960,hintandextended,nbiot,180 +on11,0,0,27,1,0,728,4860.000000,57,3,18146.000320,2365.914584,hintandextended,nbiot,180 +on12,0,0,24,1,0,1887,4320.000000,57,0,38020.000320,1788.450000,hintandextended,nbiot,180 +on9,0,0,25,1,0,1011,4500.000000,58,1,20926.000320,1944.040208,hintandextended,nbiot,180 +on2,0,0,24,1,0,35,4320.000000,58,0,2627.000320,1754.000208,hintandextended,nbiot,180 +on4,0,0,26,1,0,1233,4680.000000,58,2,27474.000960,2146.949584,hintandextended,nbiot,180 +on12,0,0,27,1,0,1052,4864.000320,58,6,24463.000320,2346.649920,hintandextended,nbiot,180 +on3,0,0,24,1,0,1914,4320.000000,58,0,37542.000320,1770.900000,hintandextended,nbiot,180 +on5,0,0,25,1,0,512,4500.000000,58,1,10121.000320,1826.845208,hintandextended,nbiot,180 +on10,0,0,24,1,0,1193,4476.000000,58,1,27434.000320,2125.345000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4345.000640,58,0,-1.000000,2050.004624,hintandextended,nbiot,180 +on7,0,0,25,1,0,1201,4500.000000,58,1,24319.000320,1965.750208,hintandextended,nbiot,180 +on8,0,0,26,1,0,773,4813.000000,58,5,15770.000320,2268.009584,hintandextended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,58,0,12303.000320,1754.000208,hintandextended,nbiot,180 +on6,0,0,24,1,0,315,4320.000000,58,0,4408.000320,1869.700416,hintandextended,nbiot,180 +on11,0,0,24,1,0,638,4320.000000,58,0,12142.000320,1754.000208,hintandextended,nbiot,180 +on6,0,0,25,1,0,513,4500.000000,59,1,10419.000960,2123.309168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,59,0,-1.000000,2040.005616,hintandextended,nbiot,180 +on3,0,0,26,1,0,486,4680.000000,59,2,13009.000320,2177.890000,hintandextended,nbiot,180 +on1,0,0,25,1,0,333,4500.000000,59,1,6847.000960,1890.999792,hintandextended,nbiot,180 +on12,0,0,24,1,0,81,4320.000000,59,0,2203.000320,1867.230208,hintandextended,nbiot,180 +on4,0,0,26,1,0,298,4680.000000,59,2,6887.001600,2340.519792,hintandextended,nbiot,180 +on11,0,0,24,1,0,300,4320.000000,59,0,6807.000320,1813.799792,hintandextended,nbiot,180 +on10,0,0,25,1,0,1374,4500.000000,59,1,26065.000320,2033.350000,hintandextended,nbiot,180 +on7,0,0,26,1,0,1102,4680.000000,59,2,19930.000960,2075.449792,hintandextended,nbiot,180 +on8,0,0,27,1,0,568,4860.000000,59,3,13049.000960,2449.699168,hintandextended,nbiot,180 +on5,0,0,24,1,0,917,4320.000000,59,0,19890.000320,1993.460000,hintandextended,nbiot,180 +on9,0,0,27,1,0,572,4880.000000,59,5,17288.000320,2472.128960,hintandextended,nbiot,180 +on2,0,0,25,1,0,491,4500.000000,59,1,10379.000320,1916.350208,hintandextended,nbiot,180 +on11,0,0,25,1,0,990,4500.000000,60,1,21164.000320,2162.700208,hintandextended,nbiot,180 +on8,0,0,24,1,0,392,4320.000000,60,0,9297.000320,1823.550208,hintandextended,nbiot,180 +on10,0,0,26,1,0,423,4680.000000,60,3,9377.601600,2129.401248,hintandextended,nbiot,180 +on12,0,0,25,1,0,179,4500.000000,60,2,4375.000320,2057.270000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4338.000320,60,0,-1.000000,2047.206992,hintandextended,nbiot,180 +on3,0,0,25,1,0,703,4500.000000,60,1,17414.000320,2143.070000,hintandextended,nbiot,180 +on9,0,0,24,1,0,717,4357.000320,60,0,11101.000320,1768.800336,hintandextended,nbiot,180 +on2,0,0,27,1,0,1046,4860.000000,60,3,21205.600960,2339.200000,hintandextended,nbiot,180 +on1,0,0,24,1,0,2520,4320.000000,60,0,52128.000320,1821.600000,hintandextended,nbiot,180 +on4,0,0,25,1,0,715,4558.000000,60,3,17494.601600,2033.541040,hintandextended,nbiot,180 +on6,0,0,27,1,0,721,4860.000000,60,3,17454.000960,2448.398752,hintandextended,nbiot,180 +on7,0,0,24,1,0,111,4320.000000,60,0,867.000320,1754.000624,hintandextended,nbiot,180 +on5,0,0,25,1,0,399,4500.000000,60,1,9337.000960,2130.849168,hintandextended,nbiot,180 +on9,0,0,24,1,0,288,4320.000000,61,0,4112.000320,1754.000208,hintandextended,nbiot,180 +on2,0,0,26,1,0,940,4680.000000,61,2,18291.000960,2079.349584,hintandextended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,61,0,7894.000320,1830.700000,hintandextended,nbiot,180 +on1,0,0,27,1,0,903,4860.000000,61,3,24935.000320,2419.994376,hintandextended,nbiot,180 +on10,0,0,25,1,0,360,4500.000000,61,1,7989.001280,1916.350208,hintandextended,nbiot,180 +on3,0,0,25,1,0,540,4500.000000,61,1,13470.000320,2034.909376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4388.001600,61,0,-1.000000,2067.205008,hintandextended,nbiot,180 +on12,0,0,24,1,0,830,4355.000320,61,1,15341.000320,1768.000336,hintandextended,nbiot,180 +on7,0,0,26,1,0,695,4680.000000,61,2,18251.000320,2371.199584,hintandextended,nbiot,180 +on6,0,0,25,1,0,796,4500.000000,61,1,15381.000960,1905.884584,hintandextended,nbiot,180 +on11,0,0,24,1,0,492,4320.000000,61,0,7820.000320,1817.700208,hintandextended,nbiot,180 +on5,0,0,26,1,0,409,4680.000000,61,4,13331.000960,2273.049584,hintandextended,nbiot,180 +on8,0,0,25,1,0,654,4500.000000,61,1,13291.000320,1959.250000,hintandextended,nbiot,180 +on6,0,0,24,1,0,200,4320.000000,62,0,5607.000320,1831.350000,hintandextended,nbiot,180 +on7,0,0,26,1,0,668,4680.000000,62,2,14826.000320,2256.149792,hintandextended,nbiot,180 +on3,0,0,26,1,0,377,4680.000000,62,2,5647.000960,2052.309376,hintandextended,nbiot,180 +on8,0,0,25,1,0,1013,4500.000000,62,1,21657.000320,1917.000000,hintandextended,nbiot,180 +on10,0,0,25,1,0,181,4500.000000,62,1,5771.600320,2031.269792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4344.600320,62,0,-1.000000,2049.845120,hintandextended,nbiot,180 +on4,0,0,27,1,0,451,4860.000000,62,3,13194.600960,2609.209792,hintandextended,nbiot,180 +on1,0,0,25,1,0,405,4500.000000,62,1,10499.000320,2112.585000,hintandextended,nbiot,180 +on2,0,0,26,1,0,626,4680.000000,62,2,13153.000320,2078.959584,hintandextended,nbiot,180 +on12,0,0,25,1,0,25,4500.000000,62,2,3057.600960,1917.195208,hintandextended,nbiot,180 +on11,0,0,25,1,0,195,4500.000000,62,1,5687.001600,2015.150416,hintandextended,nbiot,180 +on5,0,0,24,1,0,9,4320.000000,62,0,2942.000320,1816.400208,hintandextended,nbiot,180 +on9,0,0,25,1,0,15,4500.000000,62,2,3017.000320,2087.559168,hintandextended,nbiot,180 +on6,0,0,28,1,0,920,5040.000000,63,4,23432.000960,2582.083960,hintandextended,nbiot,180 +on5,0,0,27,1,0,849,4860.000000,63,4,19592.001280,2243.389376,hintandextended,nbiot,180 +on4,0,0,25,1,0,2030,4500.000000,63,1,43377.000320,2215.090000,hintandextended,nbiot,180 +on1,0,0,25,1,0,762,4500.000000,63,1,17692.000960,2073.519792,hintandextended,nbiot,180 +on3,0,0,26,1,0,1280,4680.000000,63,2,28388.000960,2282.149792,hintandextended,nbiot,180 +on2,0,0,25,1,0,766,4500.000000,63,1,17652.000320,2031.660000,hintandextended,nbiot,180 +on12,0,0,25,1,0,720,4500.000000,63,1,17772.002240,1916.349792,hintandextended,nbiot,180 +on10,0,0,27,1,0,999,4860.000000,63,4,23392.000320,2506.444376,hintandextended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,63,0,12962.000320,1917.020416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,63,0,-1.000000,2040.005824,hintandextended,nbiot,180 +on9,0,0,26,1,0,886,4680.000000,63,2,19551.000320,2182.309792,hintandextended,nbiot,180 +on7,0,0,25,1,0,733,4500.000000,63,1,17732.001600,1967.698336,hintandextended,nbiot,180 +on8,0,0,26,1,0,1235,4680.000000,63,2,28348.000320,2232.750000,hintandextended,nbiot,180 +on12,0,0,25,1,0,1053,4557.000000,64,3,24646.000320,2196.809792,hintandextended,nbiot,180 +on8,0,0,24,1,0,1940,4320.000320,64,0,37011.000320,1754.000336,hintandextended,nbiot,180 +on1,0,0,25,1,0,1374,4500.000000,64,1,28311.000320,2073.910208,hintandextended,nbiot,180 +on10,0,0,25,1,0,422,4669.000000,64,2,9251.600960,2286.721040,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4327.000320,64,0,-1.000000,2042.807408,hintandextended,nbiot,180 +on11,0,0,26,1,0,626,4680.000000,64,2,12469.000320,2079.999792,hintandextended,nbiot,180 +on6,0,0,25,1,0,685,4500.000000,64,1,15077.000320,2034.195000,hintandextended,nbiot,180 +on7,0,0,26,1,0,1439,4680.000000,64,2,28352.600960,2008.500624,hintandextended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,64,0,5677.000320,1823.680208,hintandextended,nbiot,180 +on3,0,0,26,1,0,986,4680.000000,64,3,19303.000320,2154.295624,hintandextended,nbiot,180 +on2,0,0,25,1,0,735,4500.000000,64,1,12509.000960,1993.050208,hintandextended,nbiot,180 +on4,0,0,24,1,0,3947,4347.000320,64,0,76504.000320,1764.800336,hintandextended,nbiot,180 +on9,0,0,25,1,0,293,4500.000000,64,1,9210.000320,1915.959792,hintandextended,nbiot,180 +on8,0,0,25,1,0,54,4500.000000,65,1,692.600960,1941.505624,hintandextended,nbiot,180 +on6,0,0,24,1,0,871,4331.000320,65,0,15221.000320,1758.400336,hintandextended,nbiot,180 +on1,0,0,26,1,0,693,4680.000000,65,2,13043.600960,2139.605624,hintandextended,nbiot,180 +on10,0,0,25,1,0,519,4500.000000,65,1,9859.000320,1954.310416,hintandextended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,65,0,6959.000320,1754.000208,hintandextended,nbiot,180 +on9,0,0,24,1,0,174,4354.000320,65,0,652.000320,1899.810336,hintandextended,nbiot,180 +on4,0,0,24,1,0,685,4325.000320,65,0,13003.000320,1756.000336,hintandextended,nbiot,180 +on7,0,0,25,1,0,1240,4500.000000,65,1,24722.000320,1887.750208,hintandextended,nbiot,180 +on3,0,0,28,1,0,872,5040.000000,65,7,28604.000320,2698.303752,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4350.000320,65,0,-1.000000,2052.005536,hintandextended,nbiot,180 +on2,0,0,25,1,0,322,4500.000000,65,1,6789.000320,2033.350208,hintandextended,nbiot,180 +on11,0,0,26,1,0,831,4680.000000,65,2,18878.000320,2218.450000,hintandextended,nbiot,180 +on12,0,0,25,1,0,1800,4500.000000,65,2,36757.600640,2033.155000,hintandextended,nbiot,180 +on4,0,0,25,1,0,665,4500.000000,66,1,13190.000320,2205.599792,hintandextended,nbiot,180 +on1,0,0,25,1,0,474,4500.000000,66,1,9479.000320,2029.645208,hintandextended,nbiot,180 +on8,0,0,26,1,0,513,4680.000000,66,2,9519.000960,2143.308960,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4354.600320,66,0,-1.000000,2053.845536,hintandextended,nbiot,180 +on2,0,0,27,1,0,753,5036.000000,66,4,19448.600960,2549.025208,hintandextended,nbiot,180 +on6,0,0,27,1,0,916,4860.000000,66,3,24992.000320,2475.699584,hintandextended,nbiot,180 +on3,0,0,27,1,0,618,4860.000000,66,4,19407.000320,2438.778752,hintandextended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,66,0,4404.000320,1880.620416,hintandextended,nbiot,180 +on5,0,0,26,1,0,687,4680.000000,66,2,13230.000960,2199.209376,hintandextended,nbiot,180 +on10,0,0,26,1,0,726,4680.000000,66,2,17533.000320,2383.029168,hintandextended,nbiot,180 +on9,0,0,25,1,0,181,4500.000000,66,1,4566.600320,2083.270208,hintandextended,nbiot,180 +on12,0,0,26,1,0,1292,4680.000000,66,2,26809.000320,2195.699584,hintandextended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,66,0,9583.000320,1796.120000,hintandextended,nbiot,180 +on5,0,0,24,1,0,1141,4320.000000,67,0,23381.000320,1795.860208,hintandextended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,67,0,5432.000320,1754.000208,hintandextended,nbiot,180 +on7,0,0,26,1,0,447,4680.000000,67,2,9804.600960,2039.504168,hintandextended,nbiot,180 +on11,0,0,27,1,0,711,4860.000000,67,3,14854.600960,2382.750208,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,67,0,1593.000320,1754.000208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4354.000320,67,0,-1.000000,2053.604288,hintandextended,nbiot,180 +on8,0,0,25,1,0,294,4500.000000,67,1,9763.000320,2032.114792,hintandextended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,67,0,5546.000320,1775.710208,hintandextended,nbiot,180 +on4,0,0,26,1,0,737,4680.000000,67,2,11643.001280,1989.650416,hintandextended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,67,0,26379.000320,1845.000000,hintandextended,nbiot,180 +on9,0,0,27,1,0,667,4860.000000,67,3,14813.000320,2241.504168,hintandextended,nbiot,180 +on12,0,0,24,1,0,1081,4457.000000,67,1,23435.600320,2000.550208,hintandextended,nbiot,180 +on2,0,0,24,1,0,574,4320.000000,67,0,11602.000320,1938.600208,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4405.000000,68,1,2239.600640,1788.195832,hintandextended,nbiot,180 +on5,0,0,24,1,0,2282,4320.000000,68,0,46248.000320,1765.700000,hintandextended,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,68,0,26330.000320,1906.100208,hintandextended,nbiot,180 +on3,0,0,24,1,0,919,4320.000000,68,1,21043.600320,1881.660000,hintandextended,nbiot,180 +on8,0,0,24,1,0,1573,4320.000000,68,0,31168.000320,1939.900416,hintandextended,nbiot,180 +on12,0,0,24,1,0,820,4320.000000,68,1,17197.000320,1840.450000,hintandextended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,68,0,21836.000320,1798.200208,hintandextended,nbiot,180 +on9,0,0,24,1,0,2609,4320.000000,68,1,54759.000320,1878.020000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4332.000320,68,0,-1.000000,2044.806992,hintandextended,nbiot,180 +on2,0,0,25,1,0,924,4500.000000,68,1,17237.000960,1890.999584,hintandextended,nbiot,180 +on1,0,0,25,1,0,900,4500.000000,68,1,21177.601280,1830.550416,hintandextended,nbiot,180 +on6,0,0,26,1,0,974,4819.000000,68,6,21684.000320,2412.694792,hintandextended,nbiot,180 +on7,0,0,24,1,0,593,4320.000000,68,0,11560.000320,1782.210832,hintandextended,nbiot,180 +on11,0,0,27,1,0,968,4860.000000,69,4,21251.001280,2250.020416,hintandextended,nbiot,180 +on6,0,0,28,1,0,983,5040.000000,69,4,24758.000320,2560.893960,hintandextended,nbiot,180 +on3,0,0,25,1,0,720,4500.000000,69,1,16035.000640,2032.700000,hintandextended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,69,0,13945.000320,2124.109792,hintandextended,nbiot,180 +on8,0,0,24,1,0,701,4341.000320,69,0,13817.000320,1762.400336,hintandextended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,69,0,9819.000320,1983.970416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,69,0,-1.000000,2040.006656,hintandextended,nbiot,180 +on4,0,0,27,1,0,1137,4860.000000,69,3,24798.000960,2358.049584,hintandextended,nbiot,180 +on2,0,0,25,1,0,644,4500.000000,69,1,13857.000960,2078.850208,hintandextended,nbiot,180 +on5,0,0,24,1,0,841,4320.000000,69,0,15954.000320,1848.900000,hintandextended,nbiot,180 +on12,0,0,25,1,0,3008,4500.000000,69,1,63896.000320,2018.790000,hintandextended,nbiot,180 +on1,0,0,27,1,0,923,4860.000000,69,5,21210.000320,2532.769584,hintandextended,nbiot,180 +on7,0,0,26,1,0,688,4680.000000,69,2,13897.001600,2124.655624,hintandextended,nbiot,180 +on2,0,0,26,1,0,910,4680.000000,70,2,20460.000960,2312.049792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4371.601920,70,0,-1.000000,2060.646800,hintandextended,nbiot,180 +on9,0,0,25,1,0,685,4500.000000,70,1,13403.000320,1916.804792,hintandextended,nbiot,180 +on8,0,0,26,1,0,723,4680.000000,70,3,14797.000320,2097.809792,hintandextended,nbiot,180 +on3,0,0,25,1,0,2495,4500.000000,70,1,49607.000320,2033.350000,hintandextended,nbiot,180 +on5,0,0,24,1,0,387,4320.000000,70,0,10499.000320,1982.410208,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,70,0,2240.000320,1798.200624,hintandextended,nbiot,180 +on7,0,0,25,1,0,785,4500.000000,70,1,20420.000320,2206.250208,hintandextended,nbiot,180 +on12,0,0,26,1,0,883,4680.000000,70,2,23198.000320,2424.889584,hintandextended,nbiot,180 +on6,0,0,26,1,0,724,4680.000000,70,2,13444.600960,2061.020000,hintandextended,nbiot,180 +on4,0,0,25,1,0,540,4500.000000,70,1,13559.601600,2089.120000,hintandextended,nbiot,180 +on1,0,0,26,1,0,1012,4680.000000,70,3,20500.601600,2013.700832,hintandextended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,70,0,28449.000320,1770.900416,hintandextended,nbiot,180 +on5,0,0,26,1,0,349,4710.000960,71,2,5855.000960,2137.175176,hintandextended,nbiot,180 +on8,0,0,24,1,0,356,4356.000320,71,0,5685.000320,1768.400336,hintandextended,nbiot,180 +on7,0,0,25,1,0,766,4500.000000,71,1,18578.000320,2004.100000,hintandextended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,71,0,13359.000320,1823.550000,hintandextended,nbiot,180 +on11,0,0,25,1,0,591,4500.000000,71,1,13189.000320,1916.350208,hintandextended,nbiot,180 +on2,0,0,24,1,0,142,4322.000320,71,0,3092.000320,1754.800336,hintandextended,nbiot,180 +on3,0,0,26,1,0,232,4680.000000,71,3,8760.000960,2181.269584,hintandextended,nbiot,180 +on4,0,0,25,1,0,140,4500.600960,71,1,3132.600960,1974.246008,hintandextended,nbiot,180 +on1,0,0,26,1,0,538,4680.000000,71,2,13229.000960,2276.169792,hintandextended,nbiot,180 +on6,0,0,25,1,0,189,4500.000000,71,1,5815.000320,2026.459792,hintandextended,nbiot,180 +on12,0,0,25,1,0,193,4500.000000,71,1,8720.000320,2041.020000,hintandextended,nbiot,180 +on9,0,0,26,1,0,473,4680.000000,71,2,14441.000320,2354.819792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4380.001280,71,0,-1.000000,2064.005088,hintandextended,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,72,0,41125.000320,1961.350000,hintandextended,nbiot,180 +on11,0,0,27,1,0,913,4860.000000,72,4,18841.000320,2340.109584,hintandextended,nbiot,180 +on9,0,0,26,1,0,977,4680.000000,72,2,23064.000960,2160.860000,hintandextended,nbiot,180 +on12,0,0,25,1,0,361,4500.000000,72,1,7508.600960,2021.715832,hintandextended,nbiot,180 +on6,0,0,26,1,0,864,4680.000000,72,2,18881.000960,2120.820000,hintandextended,nbiot,180 +on10,0,0,26,1,0,945,4843.000000,72,4,23024.000320,2426.454168,hintandextended,nbiot,180 +on1,0,0,24,1,0,506,4326.000320,72,0,7468.000320,1952.960544,hintandextended,nbiot,180 +on3,0,0,25,1,0,1440,4500.000000,72,1,29376.000320,2074.950416,hintandextended,nbiot,180 +on8,0,0,26,1,0,694,4680.000000,72,2,16110.000320,2275.259792,hintandextended,nbiot,180 +on7,0,0,24,1,0,668,4320.000000,72,0,11942.000320,1846.170208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,72,0,-1.000000,2040.007072,hintandextended,nbiot,180 +on4,0,0,27,1,0,665,4860.000000,72,3,16190.001600,2312.290416,hintandextended,nbiot,180 +on5,0,0,25,1,0,873,4500.000000,72,1,16150.000960,1959.249584,hintandextended,nbiot,180 +on8,0,0,27,1,0,1208,4860.000000,73,4,30987.000320,2475.049376,hintandextended,nbiot,180 +on6,0,0,25,1,0,1,4500.000000,73,1,321.600320,2006.960208,hintandextended,nbiot,180 +on9,0,0,25,1,0,1969,4500.000000,73,1,38969.000320,1917.000000,hintandextended,nbiot,180 +on10,0,0,25,1,0,270,4500.000000,73,1,6474.000960,1875.399792,hintandextended,nbiot,180 +on1,0,0,25,1,0,335,4500.000000,73,1,7937.000320,1978.100000,hintandextended,nbiot,180 +on2,0,0,24,1,0,720,4320.000000,73,0,14695.000320,1943.800000,hintandextended,nbiot,180 +on7,0,0,24,1,0,314,4320.000000,73,0,6434.000320,1850.070832,hintandextended,nbiot,180 +on11,0,0,24,1,0,715,4355.000320,73,0,13379.000320,1953.250336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4380.600640,73,0,-1.000000,2064.245872,hintandextended,nbiot,180 +on3,0,0,27,1,0,486,4860.000000,73,3,7977.000960,2241.310000,hintandextended,nbiot,180 +on5,0,0,25,1,0,1092,4500.000000,73,2,25426.000320,2163.610208,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,73,0,216.000320,1907.920416,hintandextended,nbiot,180 +on4,0,0,24,1,0,1103,4320.000000,73,1,24762.000320,1820.300000,hintandextended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,74,0,3358.000320,1981.759792,hintandextended,nbiot,180 +on11,0,0,24,1,0,468,4320.000000,74,0,9173.000320,1890.110000,hintandextended,nbiot,180 +on2,0,0,28,1,0,914,5040.000000,74,4,20268.000960,2377.659168,hintandextended,nbiot,180 +on1,0,0,25,1,0,927,4500.000000,74,1,20308.001600,1826.000208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,74,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,74,0,17105.000320,1807.300208,hintandextended,nbiot,180 +on4,0,0,28,1,0,821,5040.000000,74,4,20228.000320,2636.293960,hintandextended,nbiot,180 +on7,0,0,26,1,0,585,4680.000000,74,2,11692.001280,2274.349584,hintandextended,nbiot,180 +on3,0,0,24,1,0,652,4320.000000,74,0,11651.000320,1862.549376,hintandextended,nbiot,180 +on12,0,0,25,1,0,881,4500.000000,74,1,17036.000320,1916.350000,hintandextended,nbiot,180 +on5,0,0,25,1,0,1003,4500.000000,74,1,22982.000320,2098.350000,hintandextended,nbiot,180 +on9,0,0,25,1,0,318,4500.000000,74,1,6442.000320,1973.550000,hintandextended,nbiot,180 +on6,0,0,26,1,0,334,4680.000000,74,3,9214.600960,2188.614376,hintandextended,nbiot,180 +on1,0,0,29,1,0,310,5220.000000,75,5,16774.000960,2771.733960,hintandextended,nbiot,180 +on2,0,0,26,1,0,292,4680.000000,75,2,6660.400640,2072.785000,hintandextended,nbiot,180 +on3,0,0,26,1,0,383,4680.000000,75,3,8079.000320,2028.584584,hintandextended,nbiot,180 +on9,0,0,26,1,0,747,4680.000000,75,2,16734.000320,2078.049792,hintandextended,nbiot,180 +on5,0,0,27,1,0,619,4860.000000,75,3,19560.000320,2545.249376,hintandextended,nbiot,180 +on7,0,0,26,1,0,894,4680.000000,75,3,16814.601600,1899.690624,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,75,0,343.000320,1848.380208,hintandextended,nbiot,180 +on11,0,0,25,1,0,317,4500.000000,75,1,6620.000960,1906.990000,hintandextended,nbiot,180 +on10,0,0,26,1,0,384,4680.000000,75,2,6700.401280,2104.699792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,75,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on4,0,0,27,1,0,577,4860.000000,75,3,12302.000960,2357.464168,hintandextended,nbiot,180 +on6,0,0,24,1,0,554,4450.000000,75,1,12262.000320,2012.700000,hintandextended,nbiot,180 +on12,0,0,24,1,0,306,4320.000000,75,0,6580.000320,1925.860208,hintandextended,nbiot,180 +on2,0,0,24,1,0,3804,4320.000000,76,0,76917.000320,1829.400000,hintandextended,nbiot,180 +on1,0,0,25,1,0,760,4500.000000,76,1,17526.600960,2126.820624,hintandextended,nbiot,180 +on9,0,0,25,1,0,361,4500.000000,76,1,8421.600320,2042.320624,hintandextended,nbiot,180 +on10,0,0,25,1,0,1983,4500.000000,76,1,40957.000320,2031.660000,hintandextended,nbiot,180 +on12,0,0,24,1,0,435,4320.000000,76,0,8343.000320,1845.260416,hintandextended,nbiot,180 +on3,0,0,24,1,0,3060,4444.000000,76,1,62488.600640,2091.355000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4333.600640,76,0,-1.000000,2045.446496,hintandextended,nbiot,180 +on8,0,0,26,1,0,658,4680.000000,76,2,12059.600960,2032.160208,hintandextended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,76,0,28326.000320,1754.000416,hintandextended,nbiot,180 +on5,0,0,24,1,0,621,4320.000000,76,1,12018.000320,1807.819792,hintandextended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,76,0,6330.000320,1754.000416,hintandextended,nbiot,180 +on4,0,0,25,1,0,833,4500.000000,76,1,17485.000320,1915.960208,hintandextended,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,76,0,35539.000320,2112.800624,hintandextended,nbiot,180 +on11,0,0,25,1,0,473,4500.000000,77,1,11005.000320,2030.620000,hintandextended,nbiot,180 +on7,0,0,26,1,0,490,4680.000000,77,2,11045.000960,2173.794168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,77,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on10,0,0,25,1,0,514,4509.000000,77,2,11125.401600,2080.498752,hintandextended,nbiot,180 +on12,0,0,25,1,0,192,4500.000000,77,2,7385.000320,2051.419584,hintandextended,nbiot,180 +on9,0,0,27,1,0,895,4860.000000,77,3,24928.000320,2440.923960,hintandextended,nbiot,180 +on4,0,0,25,1,0,242,4500.000000,77,1,5006.600960,1940.465624,hintandextended,nbiot,180 +on5,0,0,24,1,0,329,4329.000320,77,0,4966.000320,1858.089712,hintandextended,nbiot,180 +on8,0,0,25,1,0,552,4500.000000,77,1,11085.400960,1904.389792,hintandextended,nbiot,180 +on6,0,0,24,1,0,736,4320.000000,77,0,16276.000320,1950.300000,hintandextended,nbiot,180 +on2,0,0,25,1,0,862,4500.000000,77,1,16316.000960,2005.139584,hintandextended,nbiot,180 +on1,0,0,26,1,0,875,4680.000000,77,2,21444.000320,2267.459584,hintandextended,nbiot,180 +on3,0,0,28,1,0,721,5040.000000,77,4,21485.600960,2561.804792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4346.000320,78,0,-1.000000,2050.408656,hintandextended,nbiot,180 +on7,0,0,26,1,0,367,4680.000000,78,2,5182.600960,2116.855624,hintandextended,nbiot,180 +on12,0,0,25,1,0,360,4500.000000,78,1,9246.600640,2106.216664,hintandextended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,78,0,10926.000320,1772.850416,hintandextended,nbiot,180 +on8,0,0,24,1,0,23,4320.000000,78,0,2505.000320,1893.100416,hintandextended,nbiot,180 +on10,0,0,24,1,0,749,4320.000000,78,0,15614.000320,2027.650832,hintandextended,nbiot,180 +on1,0,0,25,1,0,113,4500.000000,78,1,5141.000320,2203.910208,hintandextended,nbiot,180 +on2,0,0,24,1,0,991,4325.000320,78,1,19039.000320,1872.350544,hintandextended,nbiot,180 +on3,0,0,27,1,0,761,4860.000000,78,4,19079.600960,2383.075624,hintandextended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,78,0,27081.000320,1834.600416,hintandextended,nbiot,180 +on5,0,0,25,1,0,3853,4533.000000,78,2,82108.000320,2114.149792,hintandextended,nbiot,180 +on9,0,0,25,1,0,1573,4500.000000,78,1,32055.000320,1864.350208,hintandextended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,78,0,2671.000320,2045.070416,hintandextended,nbiot,180 +on6,0,0,24,1,0,882,4342.000320,79,0,16942.000320,1762.800336,hintandextended,nbiot,180 +on10,0,0,25,1,0,451,4500.000000,79,1,11639.000320,1940.400000,hintandextended,nbiot,180 +on1,0,0,25,1,0,1439,4500.000000,79,1,28515.000320,1880.144792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,79,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on3,0,0,24,1,0,70,4320.000000,79,0,1250.000320,1754.000208,hintandextended,nbiot,180 +on9,0,0,24,1,0,2049,4320.000000,79,0,42628.000320,1800.150000,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,79,0,1337.000320,1862.160416,hintandextended,nbiot,180 +on5,0,0,25,1,0,873,4513.000000,79,2,16982.600960,1956.195416,hintandextended,nbiot,180 +on8,0,0,24,1,0,1260,4356.000000,79,1,28613.001280,1768.400416,hintandextended,nbiot,180 +on7,0,0,26,1,0,1424,4680.000000,79,4,29843.000320,2153.449792,hintandextended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,79,0,20365.000320,1797.550208,hintandextended,nbiot,180 +on4,0,0,24,1,0,1109,4320.000000,79,1,23148.400320,1869.700208,hintandextended,nbiot,180 +on11,0,0,25,1,0,180,4500.000000,79,1,4836.600640,1980.766040,hintandextended,nbiot,180 +on11,0,0,24,1,0,1112,4320.000000,80,0,22071.000320,1790.400208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,80,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on12,0,0,24,1,0,233,4320.000000,80,1,7046.000320,1828.750208,hintandextended,nbiot,180 +on4,0,0,26,1,0,440,4680.000000,80,3,15009.000320,2286.374584,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,80,0,3067.000320,1781.560208,hintandextended,nbiot,180 +on8,0,0,26,1,0,358,4680.000000,80,3,7126.601600,2106.650416,hintandextended,nbiot,180 +on7,0,0,25,1,0,1111,4500.000000,80,2,27933.000320,2013.849792,hintandextended,nbiot,180 +on3,0,0,25,1,0,360,4500.000000,80,1,7829.600640,1916.545000,hintandextended,nbiot,180 +on5,0,0,25,1,0,219,4500.000000,80,1,7692.000320,2124.999792,hintandextended,nbiot,180 +on6,0,0,24,1,0,611,4439.000000,80,1,11668.000320,1891.950000,hintandextended,nbiot,180 +on10,0,0,27,1,0,666,4860.000000,80,3,15050.600960,2270.300208,hintandextended,nbiot,180 +on9,0,0,26,1,0,960,4680.000000,80,2,21458.000320,2079.999792,hintandextended,nbiot,180 +on2,0,0,26,1,0,334,4680.000000,80,2,7086.000960,2079.414376,hintandextended,nbiot,180 +on3,0,0,27,1,0,489,4860.000000,81,3,14161.600960,2410.244584,hintandextended,nbiot,180 +on9,0,0,26,1,0,583,4680.000000,81,3,14120.000320,2203.823752,hintandextended,nbiot,180 +on5,0,0,26,1,0,488,4680.000000,81,2,9385.000960,2234.049376,hintandextended,nbiot,180 +on8,0,0,26,1,0,269,4680.000000,81,2,9345.000320,2194.594584,hintandextended,nbiot,180 +on12,0,0,24,1,0,2182,4320.000000,81,0,45898.000320,1830.700000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,81,0,-1.000000,2040.006032,hintandextended,nbiot,180 +on2,0,0,27,1,0,332,4860.000000,81,3,9425.001600,2423.698752,hintandextended,nbiot,180 +on6,0,0,25,1,0,358,4500.000000,81,1,6286.000960,1890.999792,hintandextended,nbiot,180 +on7,0,0,26,1,0,1050,4680.000000,81,2,26519.000320,2195.050208,hintandextended,nbiot,180 +on4,0,0,24,1,0,1670,4320.000000,81,0,33615.000320,1754.000208,hintandextended,nbiot,180 +on10,0,0,24,1,0,0,4459.000000,81,1,2528.600640,2109.705000,hintandextended,nbiot,180 +on11,0,0,25,1,0,0,4500.000000,81,1,2585.600640,2011.705832,hintandextended,nbiot,180 +on1,0,0,25,1,0,113,4500.000000,81,1,6246.000320,2032.505000,hintandextended,nbiot,180 +on9,0,0,24,1,0,99,4320.000000,82,0,521.000320,1859.820000,hintandextended,nbiot,180 +on4,0,0,26,1,0,539,4680.000000,82,2,9546.400640,2259.139168,hintandextended,nbiot,180 +on11,0,0,25,1,0,294,4500.000000,82,1,6707.000320,1915.700000,hintandextended,nbiot,180 +on8,0,0,27,1,0,402,4860.000000,82,4,12013.000320,2391.849376,hintandextended,nbiot,180 +on2,0,0,25,1,0,35,4500.000000,82,1,561.000960,1973.158960,hintandextended,nbiot,180 +on12,0,0,26,1,0,444,4680.000000,82,2,9506.000960,2216.434792,hintandextended,nbiot,180 +on6,0,0,27,1,0,431,5037.000000,82,4,17265.000320,2631.389792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,82,0,-1.000000,2040.004992,hintandextended,nbiot,180 +on1,0,0,29,1,0,782,5220.000000,82,6,20597.000320,2815.608960,hintandextended,nbiot,180 +on5,0,0,25,1,0,292,4500.000000,82,1,6747.000960,2051.939792,hintandextended,nbiot,180 +on7,0,0,24,1,0,106,4384.000000,82,2,601.601600,1896.600832,hintandextended,nbiot,180 +on10,0,0,26,1,0,570,4680.000000,82,2,9586.401280,1989.000000,hintandextended,nbiot,180 +on3,0,0,26,1,0,159,4680.000000,82,2,9466.000320,2258.359376,hintandextended,nbiot,180 +on6,0,0,24,1,0,436,4320.000000,83,0,7461.000320,1943.150208,hintandextended,nbiot,180 +on3,0,0,29,1,0,841,5220.000000,83,6,21208.000320,2767.898336,hintandextended,nbiot,180 +on1,0,0,25,1,0,873,4500.000000,83,1,16120.000960,2006.700000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,83,0,-1.000000,2040.007280,hintandextended,nbiot,180 +on9,0,0,25,1,0,710,4500.000000,83,1,16080.000320,2175.700416,hintandextended,nbiot,180 +on12,0,0,28,1,0,816,5040.000000,83,4,22003.000320,2709.093960,hintandextended,nbiot,180 +on11,0,0,25,1,0,2296,4500.000000,83,1,45001.000320,2038.940000,hintandextended,nbiot,180 +on2,0,0,24,1,0,207,4320.000000,83,0,4927.000320,1826.800000,hintandextended,nbiot,180 +on10,0,0,26,1,0,396,4694.000000,83,5,7541.601600,2260.320624,hintandextended,nbiot,180 +on7,0,0,26,1,0,881,4680.000000,83,2,16160.001600,1914.510416,hintandextended,nbiot,180 +on8,0,0,25,1,0,0,4500.000000,83,1,3214.600640,2114.276040,hintandextended,nbiot,180 +on5,0,0,27,1,0,315,4860.000000,83,3,7501.000960,2613.628752,hintandextended,nbiot,180 +on4,0,0,24,1,0,596,4320.000000,83,1,13172.000320,1805.350000,hintandextended,nbiot,180 +on3,0,0,27,1,0,1593,4860.000000,84,3,33515.000320,2385.349792,hintandextended,nbiot,180 +on2,0,0,26,1,0,819,4680.000000,84,2,20477.000320,2252.575000,hintandextended,nbiot,180 +on6,0,0,27,1,0,1050,4998.000320,84,6,29894.000320,2718.814712,hintandextended,nbiot,180 +on5,0,0,24,1,0,119,4320.000000,84,0,2095.000320,1754.000208,hintandextended,nbiot,180 +on12,0,0,26,1,0,965,4788.000000,84,3,24351.000320,2466.269584,hintandextended,nbiot,180 +on11,0,0,26,1,0,796,4680.000000,84,2,17303.400640,2119.780624,hintandextended,nbiot,180 +on10,0,0,27,1,0,1261,4860.000000,84,4,24392.600960,2060.350000,hintandextended,nbiot,180 +on1,0,0,24,1,0,397,4320.000000,84,0,7737.000320,1856.570208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,84,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on8,0,0,24,1,0,89,4416.000000,84,2,6950.000320,1890.550000,hintandextended,nbiot,180 +on7,0,0,25,1,0,779,4500.000000,84,1,17263.000960,2104.720000,hintandextended,nbiot,180 +on4,0,0,25,1,0,610,4500.000000,84,1,13935.000320,1986.290208,hintandextended,nbiot,180 +on9,0,0,25,1,0,889,4500.000000,84,1,17223.000320,2147.619584,hintandextended,nbiot,180 +on5,0,0,26,1,0,1117,4680.000000,85,3,22542.000320,2247.180208,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,85,0,2905.000320,1904.150624,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4351.601600,85,0,-1.000000,2052.646880,hintandextended,nbiot,180 +on4,0,0,25,1,0,1048,4500.000000,85,1,20943.000320,1915.959792,hintandextended,nbiot,180 +on6,0,0,27,1,0,982,4860.000000,85,4,20984.600960,2183.849584,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,85,0,2977.000320,1754.000416,hintandextended,nbiot,180 +on10,0,0,24,1,0,370,4320.000000,85,0,7640.000320,1754.000416,hintandextended,nbiot,180 +on2,0,0,25,1,0,1387,4500.000000,85,1,28053.000320,1876.050208,hintandextended,nbiot,180 +on12,0,0,24,1,0,152,4332.000320,85,0,2856.000320,1758.800336,hintandextended,nbiot,180 +on8,0,0,25,1,0,900,4500.000000,85,1,21114.601600,2136.960624,hintandextended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,85,0,12961.000320,2039.219792,hintandextended,nbiot,180 +on9,0,0,25,1,0,766,4500.000000,85,1,17456.000320,2021.000416,hintandextended,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,85,0,62750.000320,1961.350000,hintandextended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,86,0,14072.000320,1810.810000,hintandextended,nbiot,180 +on5,0,0,24,1,0,1720,4320.000000,86,0,35421.000320,1754.000208,hintandextended,nbiot,180 +on11,0,0,24,1,0,1220,4320.000320,86,0,23146.000320,1754.000544,hintandextended,nbiot,180 +on8,0,0,25,1,0,3060,4500.000000,86,2,61661.600640,1829.055000,hintandextended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,86,0,23262.000320,1754.000416,hintandextended,nbiot,180 +on12,0,0,25,1,0,873,4584.000000,86,3,19167.000320,2066.950000,hintandextended,nbiot,180 +on2,0,0,24,1,0,348,4348.000320,86,0,3822.000320,1765.200544,hintandextended,nbiot,180 +on4,0,0,24,1,0,1950,4330.000320,86,0,37215.000320,1883.450544,hintandextended,nbiot,180 +on7,0,0,24,1,0,1394,4320.000000,86,0,26003.000320,1754.000208,hintandextended,nbiot,180 +on6,0,0,24,1,0,2524,4320.000000,86,0,53086.000320,1958.750208,hintandextended,nbiot,180 +on1,0,0,25,1,0,766,4500.000000,86,1,15652.000320,1954.505624,hintandextended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,86,0,35496.000320,1754.000416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4343.600960,86,0,-1.000000,2049.445168,hintandextended,nbiot,180 +on12,0,0,26,1,0,1041,4680.000000,87,3,18495.601600,2233.399792,hintandextended,nbiot,180 +on3,0,0,25,1,0,1179,4500.000000,87,1,23613.000960,1969.649584,hintandextended,nbiot,180 +on1,0,0,27,1,0,1376,4860.000000,87,4,26563.601920,2238.970624,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,87,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on7,0,0,24,1,0,966,4320.000000,87,1,18415.000320,1774.800000,hintandextended,nbiot,180 +on2,0,0,25,1,0,473,4500.000000,87,1,12043.000320,1863.310208,hintandextended,nbiot,180 +on4,0,0,24,1,0,839,4320.000000,87,0,16564.000320,1860.470208,hintandextended,nbiot,180 +on8,0,0,27,1,0,913,4860.000000,87,4,18455.000960,2356.359584,hintandextended,nbiot,180 +on9,0,0,26,1,0,1196,4680.000000,87,2,26482.000320,2084.549792,hintandextended,nbiot,180 +on10,0,0,26,1,0,1055,4680.000000,87,2,23573.000320,2078.894584,hintandextended,nbiot,180 +on11,0,0,27,1,0,1312,4860.000000,87,3,30078.000320,2403.354376,hintandextended,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,87,1,5348.600640,1855.705624,hintandextended,nbiot,180 +on5,0,0,27,1,0,1208,4860.000000,87,3,26523.001280,2125.349168,hintandextended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on10,0,0,25,1,0,113,4500.000000,88,3,5611.000320,2289.645208,hintandextended,nbiot,180 +on1,0,0,25,1,0,2700,4500.000000,88,1,57369.600640,2122.595624,hintandextended,nbiot,180 +on7,0,0,25,1,0,180,4500.000000,88,1,7605.000320,2149.309584,hintandextended,nbiot,180 +on5,0,0,24,1,0,77,4320.000000,88,0,2041.000320,1859.560000,hintandextended,nbiot,180 +on6,0,0,25,1,0,1553,4500.000000,88,1,31848.000320,1985.900416,hintandextended,nbiot,180 +on2,0,0,25,1,0,628,4500.000000,88,1,12959.000320,2147.750416,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,88,0,-1.000000,2014.008528,hintandextended,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,88,0,18114.000320,1870.350624,hintandextended,nbiot,180 +on4,0,0,25,1,0,386,4500.000000,88,1,7646.600960,2013.200000,hintandextended,nbiot,180 +on12,0,0,25,1,0,360,4500.000000,88,1,7705.000320,2099.650624,hintandextended,nbiot,180 +on3,0,0,25,1,0,0,4500.000000,88,1,2139.001280,2262.151040,hintandextended,nbiot,180 +on11,0,0,25,1,0,333,4651.000000,88,2,5651.000960,2106.099376,hintandextended,nbiot,180 +on4,0,0,24,1,0,874,4334.000320,89,0,16456.000320,1759.600336,hintandextended,nbiot,180 +on2,0,0,24,1,0,826,4356.000000,89,1,16496.600960,1951.765832,hintandextended,nbiot,180 +on10,0,0,25,1,0,900,4500.000000,89,1,20531.600640,2032.895416,hintandextended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,89,0,10585.000320,1869.310208,hintandextended,nbiot,180 +on6,0,0,24,1,0,3085,4320.000000,89,0,61454.000320,1828.750000,hintandextended,nbiot,180 +on12,0,0,25,1,0,1365,4500.000000,89,1,26210.000320,2041.800208,hintandextended,nbiot,180 +on3,0,0,25,1,0,180,4500.000000,89,1,6218.600640,1864.545624,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4330.000000,89,1,3007.600640,2071.365832,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4354.600640,89,0,-1.000000,2053.847328,hintandextended,nbiot,180 +on9,0,0,25,1,0,718,4500.000000,89,1,14192.000320,1942.350208,hintandextended,nbiot,180 +on7,0,0,25,1,0,900,4500.000000,89,1,20432.600640,1897.045832,hintandextended,nbiot,180 +on1,0,0,25,1,0,1194,4500.000000,89,1,22603.000320,1917.000000,hintandextended,nbiot,180 +on8,0,0,25,1,0,531,4500.000000,89,1,10509.000320,2208.200624,hintandextended,nbiot,180 +on2,0,0,24,1,0,291,4320.000000,90,0,6756.000320,1868.270208,hintandextended,nbiot,180 +on3,0,0,25,1,0,386,4500.000000,90,1,10635.002240,1877.350208,hintandextended,nbiot,180 +on7,0,0,24,1,0,364,4320.000000,90,0,10515.000320,1841.750000,hintandextended,nbiot,180 +on1,0,0,26,1,0,1058,4680.000000,90,2,24310.600960,2119.909584,hintandextended,nbiot,180 +on5,0,0,24,1,0,655,4320.000000,90,0,11307.000320,1769.600000,hintandextended,nbiot,180 +on11,0,0,25,1,0,439,4500.000000,90,2,10555.000960,1989.799168,hintandextended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,90,0,11363.000320,1754.000208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,90,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on6,0,0,26,1,0,454,4680.000000,90,2,10595.001600,2207.918752,hintandextended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,90,0,15267.000320,1845.000000,hintandextended,nbiot,180 +on9,0,0,27,1,0,669,4965.000000,90,5,19292.000320,2583.284584,hintandextended,nbiot,180 +on8,0,0,27,1,0,621,4860.000000,90,4,15143.000320,2345.374584,hintandextended,nbiot,180 +on4,0,0,25,1,0,981,4500.000000,90,1,24269.000320,2084.829792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,91,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on7,0,0,25,1,0,936,4601.000000,91,2,20634.000320,2070.499792,hintandextended,nbiot,180 +on11,0,0,26,1,0,1012,4680.000000,91,3,20674.000960,1988.934584,hintandextended,nbiot,180 +on12,0,0,26,1,0,1041,4680.000000,91,3,20714.601600,1900.535624,hintandextended,nbiot,180 +on2,0,0,25,1,0,556,4500.000000,91,1,13747.602560,2023.859792,hintandextended,nbiot,180 +on4,0,0,25,1,0,514,4502.000000,91,2,13626.000320,2008.149792,hintandextended,nbiot,180 +on6,0,0,26,1,0,694,4680.000000,91,2,13667.001280,2167.358752,hintandextended,nbiot,180 +on3,0,0,24,1,0,259,4320.000000,91,0,4847.000320,1845.910208,hintandextended,nbiot,180 +on8,0,0,27,1,0,917,4860.000000,91,3,24380.000320,2474.399376,hintandextended,nbiot,180 +on9,0,0,25,1,0,755,4545.000000,91,2,17064.000320,2024.699584,hintandextended,nbiot,180 +on5,0,0,24,1,0,530,4465.600960,91,1,10422.600960,2019.850384,hintandextended,nbiot,180 +on10,0,0,24,1,0,463,4320.000000,91,0,10381.000320,1833.819792,hintandextended,nbiot,180 +on1,0,0,26,1,0,753,4680.000000,91,3,13707.601920,2029.559792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4331.000320,92,0,-1.000000,2044.408032,hintandextended,nbiot,180 +on12,0,0,26,1,0,703,4680.000000,92,2,13064.600960,2128.620416,hintandextended,nbiot,180 +on6,0,0,24,1,0,2282,4320.000000,92,0,45278.000320,1937.950000,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,92,0,2633.000320,2092.910832,hintandextended,nbiot,180 +on8,0,0,26,1,0,334,4680.000000,92,2,5859.600960,2125.955624,hintandextended,nbiot,180 +on7,0,0,25,1,0,901,4500.000000,92,1,21271.600320,1831.201040,hintandextended,nbiot,180 +on10,0,0,25,1,0,915,4500.000000,92,1,21139.000320,2229.130416,hintandextended,nbiot,180 +on5,0,0,24,1,0,3494,4320.000000,92,0,68739.000320,1913.250000,hintandextended,nbiot,180 +on1,0,0,24,1,0,560,4320.000000,92,0,13023.000320,1947.310208,hintandextended,nbiot,180 +on9,0,0,25,1,0,514,4500.000000,92,1,10479.000320,2023.210208,hintandextended,nbiot,180 +on2,0,0,27,1,0,487,4860.000000,92,3,10520.600960,2308.650208,hintandextended,nbiot,180 +on3,0,0,25,1,0,294,4500.000000,92,1,5818.000320,2032.115000,hintandextended,nbiot,180 +on4,0,0,25,1,0,861,4500.000000,92,1,17826.000320,2139.950208,hintandextended,nbiot,180 +on10,0,0,26,1,0,487,4680.000000,93,2,11625.000960,2053.739792,hintandextended,nbiot,180 +on3,0,0,27,1,0,677,4999.000000,93,4,18941.000960,2696.398752,hintandextended,nbiot,180 +on1,0,0,24,1,0,600,4320.000000,93,1,11585.000320,1896.220000,hintandextended,nbiot,180 +on4,0,0,24,1,0,970,4320.000000,93,1,18901.000320,1786.760000,hintandextended,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,93,1,6080.600640,1868.965208,hintandextended,nbiot,180 +on7,0,0,29,1,0,814,5220.000000,93,6,24407.000320,2798.448544,hintandextended,nbiot,180 +on8,0,0,26,1,0,457,4821.000000,93,3,11665.400640,2221.355000,hintandextended,nbiot,180 +on11,0,0,27,1,0,594,4908.000000,93,5,18981.601600,2566.334792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4358.600640,93,0,-1.000000,2055.444832,hintandextended,nbiot,180 +on9,0,0,24,1,0,601,4391.000000,93,1,14796.000320,1972.720000,hintandextended,nbiot,180 +on12,0,0,25,1,0,908,4500.000000,93,1,14836.000960,1903.999584,hintandextended,nbiot,180 +on2,0,0,24,1,0,394,4320.000000,93,0,7720.000960,1822.899584,hintandextended,nbiot,180 +on5,0,0,24,1,0,447,4320.000000,93,1,7680.000320,1754.000416,hintandextended,nbiot,180 +on5,0,0,26,1,0,540,4680.000000,94,3,13248.000320,2188.549168,hintandextended,nbiot,180 +on1,0,0,25,1,0,716,4500.000000,94,1,16830.000320,2001.045208,hintandextended,nbiot,180 +on6,0,0,25,1,0,1042,4500.000000,94,1,20045.000320,1940.659792,hintandextended,nbiot,180 +on11,0,0,25,1,0,1233,4500.000000,94,1,24537.000960,1890.999584,hintandextended,nbiot,180 +on8,0,0,26,1,0,1297,4680.000000,94,2,27914.000320,2131.869584,hintandextended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,94,0,4118.000320,1869.310208,hintandextended,nbiot,180 +on9,0,0,25,1,0,474,4500.000000,94,1,9606.000320,1856.550416,hintandextended,nbiot,180 +on3,0,0,24,1,0,359,4359.000320,94,0,3995.000320,1871.260336,hintandextended,nbiot,180 +on7,0,0,27,1,0,777,4860.000000,94,4,20086.600960,2478.169584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,94,0,-1.000000,2040.004160,hintandextended,nbiot,180 +on4,0,0,28,1,0,1120,5040.000000,94,4,27955.600960,2486.143960,hintandextended,nbiot,180 +on2,0,0,24,1,0,1251,4351.000320,94,0,24497.000320,1882.750336,hintandextended,nbiot,180 +on10,0,0,24,1,0,148,4328.000320,94,0,410.000320,1757.200336,hintandextended,nbiot,180 +on7,0,0,25,1,0,297,4500.000000,95,1,4521.000320,1966.920000,hintandextended,nbiot,180 +on9,0,0,24,1,0,765,4320.000000,95,0,15928.000320,1814.710000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,95,0,-1.000000,2040.005408,hintandextended,nbiot,180 +on2,0,0,25,1,0,234,4662.000000,95,2,4562.600960,2190.970000,hintandextended,nbiot,180 +on1,0,0,24,1,0,1419,4339.000320,95,0,26947.000320,1876.910336,hintandextended,nbiot,180 +on4,0,0,24,1,0,154,4334.000320,95,0,1043.000320,1963.180752,hintandextended,nbiot,180 +on5,0,0,26,1,0,924,4680.000000,95,2,19552.000320,2196.349792,hintandextended,nbiot,180 +on11,0,0,25,1,0,847,4500.000000,95,1,15969.600960,1972.900624,hintandextended,nbiot,180 +on12,0,0,26,1,0,373,4680.000000,95,2,7737.000960,2124.199792,hintandextended,nbiot,180 +on10,0,0,24,1,0,474,4320.000000,95,1,7697.000320,1827.710000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1555,4500.000000,95,1,30640.000320,1942.350416,hintandextended,nbiot,180 +on8,0,0,25,1,0,653,4500.000000,95,1,12597.000320,2012.810208,hintandextended,nbiot,180 +on6,0,0,24,1,0,2978,4320.000000,95,0,57949.000320,1781.300000,hintandextended,nbiot,180 +on9,0,0,25,1,0,699,4500.000000,96,1,13394.000960,1890.999584,hintandextended,nbiot,180 +on6,0,0,25,1,0,336,4516.600960,96,1,4124.600960,2062.220800,hintandextended,nbiot,180 +on4,0,0,26,1,0,717,4680.000000,96,2,13434.001600,2219.620000,hintandextended,nbiot,180 +on7,0,0,24,1,0,415,4440.000000,96,1,7361.000320,2021.309792,hintandextended,nbiot,180 +on10,0,0,27,1,0,735,4860.000000,96,3,14482.600960,2176.050208,hintandextended,nbiot,180 +on12,0,0,25,1,0,600,4500.000000,96,1,13354.000320,2124.219584,hintandextended,nbiot,180 +on1,0,0,26,1,0,991,4680.000000,96,2,23409.000320,2260.959792,hintandextended,nbiot,180 +on3,0,0,24,1,0,293,4320.000000,96,0,4083.000320,1770.509792,hintandextended,nbiot,180 +on5,0,0,26,1,0,689,4680.000000,96,3,14441.000320,2268.499168,hintandextended,nbiot,180 +on8,0,0,25,1,0,1426,4500.000000,96,1,27191.000320,2033.350000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,96,0,-1.000000,2040.004368,hintandextended,nbiot,180 +on2,0,0,27,1,0,1083,4860.000000,96,3,23450.600960,2298.510000,hintandextended,nbiot,180 +on11,0,0,25,1,0,1045,4500.000000,96,1,20884.000320,2039.850000,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,97,0,5974.000320,1851.760416,hintandextended,nbiot,180 +on3,0,0,26,1,0,693,4680.000000,97,2,14018.000960,2079.349792,hintandextended,nbiot,180 +on5,0,0,25,1,0,360,4500.000000,97,1,8655.600640,2238.816040,hintandextended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,97,0,41375.000320,2195.350208,hintandextended,nbiot,180 +on10,0,0,25,1,0,1081,4500.000000,97,1,23683.600320,2152.560000,hintandextended,nbiot,180 +on7,0,0,24,1,0,120,4320.000000,97,0,3278.000320,1754.000832,hintandextended,nbiot,180 +on1,0,0,25,1,0,361,4500.000000,97,1,8787.600320,2247.070416,hintandextended,nbiot,180 +on11,0,0,25,1,0,1373,4500.000000,97,1,28100.000320,1952.750624,hintandextended,nbiot,180 +on8,0,0,24,1,0,1153,4320.000000,97,0,23607.000320,2011.660416,hintandextended,nbiot,180 +on6,0,0,25,1,0,4253,4500.000000,97,1,85628.000000,1826.000000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4330.600320,97,0,-1.000000,2044.248032,hintandextended,nbiot,180 +on9,0,0,24,1,0,865,4325.000320,97,0,15925.000320,1871.050752,hintandextended,nbiot,180 +on12,0,0,25,1,0,697,4500.000000,97,1,13978.000320,2032.700416,hintandextended,nbiot,180 +on12,0,0,26,1,0,951,4680.000000,98,2,20439.600960,2000.309584,hintandextended,nbiot,180 +on9,0,0,27,1,0,840,4860.000000,98,3,16750.600960,2414.599168,hintandextended,nbiot,180 +on10,0,0,24,1,0,920,4320.000000,98,0,20398.000320,1830.959792,hintandextended,nbiot,180 +on5,0,0,26,1,0,224,4680.000000,98,2,9627.000320,2515.370000,hintandextended,nbiot,180 +on6,0,0,27,1,0,322,4860.000000,98,4,9707.601600,2327.500416,hintandextended,nbiot,180 +on7,0,0,25,1,0,125,4500.000000,98,1,3480.600960,1826.000416,hintandextended,nbiot,180 +on3,0,0,24,1,0,136,4320.000000,98,0,3439.000320,1826.409792,hintandextended,nbiot,180 +on1,0,0,25,1,0,602,4566.000000,98,2,14181.000320,2160.889584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,98,0,-1.000000,2040.004992,hintandextended,nbiot,180 +on11,0,0,24,1,0,216,4320.000000,98,0,7007.000320,1936.260000,hintandextended,nbiot,180 +on8,0,0,26,1,0,367,4680.000000,98,3,9667.000960,2280.848752,hintandextended,nbiot,180 +on2,0,0,26,1,0,694,4680.000000,98,2,16709.000320,2239.119168,hintandextended,nbiot,180 +on4,0,0,26,1,0,626,4680.000000,98,2,14222.001280,2165.344584,hintandextended,nbiot,180 +on5,0,0,24,1,0,2161,4320.000000,99,1,45305.000320,1858.000000,hintandextended,nbiot,180 +on4,0,0,26,1,0,1053,4680.000000,99,3,22509.000320,2194.660000,hintandextended,nbiot,180 +on6,0,0,27,1,0,1309,4860.000000,99,3,30818.000320,2327.304584,hintandextended,nbiot,180 +on8,0,0,24,1,0,911,4320.000000,99,0,20223.000320,1773.760208,hintandextended,nbiot,180 +on2,0,0,25,1,0,1200,4500.000000,99,1,22549.000960,1926.035000,hintandextended,nbiot,180 +on9,0,0,25,1,0,1580,4500.000000,99,1,33661.000320,2058.700416,hintandextended,nbiot,180 +on3,0,0,25,1,0,1275,4619.000000,99,2,28237.000960,2090.244792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,99,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on7,0,0,26,1,0,1354,4680.000000,99,2,28277.001600,2206.880208,hintandextended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,99,0,170.000320,1813.800416,hintandextended,nbiot,180 +on11,0,0,24,1,0,571,4320.000000,99,0,13295.000320,1824.460416,hintandextended,nbiot,180 +on1,0,0,26,1,0,1269,4680.000000,99,2,28197.000320,2134.794584,hintandextended,nbiot,180 +on12,0,0,26,1,0,1161,4680.000000,99,2,22589.400640,2180.749584,hintandextended,nbiot,180 +on2,0,0,25,1,0,1415,4557.000000,100,2,27124.000960,1937.200000,hintandextended,nbiot,180 +on1,0,0,25,1,0,360,4500.000000,100,1,7514.000320,1941.700416,hintandextended,nbiot,180 +on10,0,0,24,1,0,2679,4339.000320,100,0,52369.000320,1761.600336,hintandextended,nbiot,180 +on7,0,0,25,1,0,1069,4500.000000,100,1,22544.000320,2147.620208,hintandextended,nbiot,180 +on4,0,0,25,1,0,901,4500.000000,100,1,18462.600320,1900.620208,hintandextended,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,100,1,4227.600640,1856.095832,hintandextended,nbiot,180 +on3,0,0,25,1,0,1300,4500.000000,100,1,32113.000320,2124.999792,hintandextended,nbiot,180 +on11,0,0,26,1,0,905,4680.000000,100,3,18332.000320,2408.965000,hintandextended,nbiot,180 +on9,0,0,25,1,0,872,4500.000000,100,1,17238.000320,1826.000416,hintandextended,nbiot,180 +on5,0,0,26,1,0,1437,4680.000000,100,3,27164.601600,2166.840416,hintandextended,nbiot,180 +on12,0,0,25,1,0,1193,4500.000000,100,1,27084.000320,2149.050000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,100,0,-1.000000,2040.005616,hintandextended,nbiot,180 +on8,0,0,24,1,0,480,4320.000000,100,0,7405.000320,1767.000000,hintandextended,nbiot,180 +on4,0,0,25,1,0,3173,4500.000000,101,1,67248.000320,2033.350208,hintandextended,nbiot,180 +on0,1,10,24,0,0,0,4322.000320,101,0,-1.000000,1988.804704,hintandextended,nbiot,180 +on8,0,0,25,1,0,1528,4500.000000,101,1,30724.000320,2002.150208,hintandextended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on6,0,0,24,1,0,179,4359.000320,101,0,3366.000320,1769.600752,hintandextended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,101,0,8093.000320,1914.550624,hintandextended,nbiot,180 +on7,0,0,24,1,0,2443,4320.000000,101,0,47274.000320,1825.500416,hintandextended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,101,0,37719.000320,1934.700416,hintandextended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,101,0,22378.000320,1754.000416,hintandextended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on2,0,0,24,1,0,962,4320.000000,101,0,21261.000320,1754.000416,hintandextended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,101,0,4384.000320,1754.000416,hintandextended,nbiot,180 +on5,0,0,24,1,0,1353,4320.000000,101,0,28084.000320,1869.700208,hintandextended,nbiot,180 +on3,0,0,24,1,0,448,4320.000000,102,0,9216.000320,1876.720000,hintandextended,nbiot,180 +on1,0,0,26,1,0,693,4680.000000,102,3,17255.000320,2195.049584,hintandextended,nbiot,180 +on2,0,0,27,1,0,961,4860.000000,102,3,20405.000320,2242.154376,hintandextended,nbiot,180 +on6,0,0,25,1,0,2700,4500.000000,102,1,55015.600640,2033.155000,hintandextended,nbiot,180 +on9,0,0,24,1,0,1910,4320.000000,102,0,36750.000320,1754.000208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,102,0,-1.000000,2040.005616,hintandextended,nbiot,180 +on10,0,0,26,1,0,925,4680.000000,102,2,17335.001600,2059.200416,hintandextended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,102,0,12895.000320,1839.150416,hintandextended,nbiot,180 +on11,0,0,26,1,0,446,4680.000000,102,2,9257.600960,2065.960208,hintandextended,nbiot,180 +on7,0,0,25,1,0,999,4745.000000,102,4,20446.600960,1990.495000,hintandextended,nbiot,180 +on12,0,0,25,1,0,180,4500.000000,102,1,6462.600640,2113.624792,hintandextended,nbiot,180 +on4,0,0,25,1,0,691,4500.000000,102,1,12841.000320,1916.350000,hintandextended,nbiot,180 +on5,0,0,25,1,0,703,4500.000000,102,1,17295.000960,2002.344376,hintandextended,nbiot,180 +on1,0,0,25,1,0,1,4500.000000,103,1,1095.600320,2028.279376,hintandextended,nbiot,180 +on7,0,0,26,1,0,362,4792.000000,103,3,9984.400640,2160.094792,hintandextended,nbiot,180 +on5,0,0,25,1,0,621,4500.000000,103,1,13012.000960,1968.349584,hintandextended,nbiot,180 +on3,0,0,26,1,0,292,4680.000000,103,2,9904.000320,2380.819792,hintandextended,nbiot,180 +on12,0,0,25,1,0,250,4500.000000,103,1,4566.000960,1977.579584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,103,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on4,0,0,29,1,0,597,5220.000000,103,5,15452.000960,2559.443960,hintandextended,nbiot,180 +on6,0,0,25,1,0,113,4500.000000,103,1,4526.000320,1916.545208,hintandextended,nbiot,180 +on9,0,0,25,1,0,0,4500.000000,103,1,981.600640,1980.115832,hintandextended,nbiot,180 +on11,0,0,27,1,0,715,4860.000000,103,3,15412.000320,2241.049584,hintandextended,nbiot,180 +on2,0,0,29,1,0,842,5220.000000,103,5,19338.000320,2619.374168,hintandextended,nbiot,180 +on10,0,0,25,1,0,557,4500.000000,103,1,9944.000960,2007.935000,hintandextended,nbiot,180 +on8,0,0,26,1,0,563,4680.000000,103,2,12972.000320,2028.519792,hintandextended,nbiot,180 +on12,0,0,25,1,0,367,4500.000000,104,1,12482.000320,2029.450000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1834,4500.000000,104,1,36951.600960,2123.960000,hintandextended,nbiot,180 +on2,0,0,24,1,0,67,4320.000000,104,0,3104.000320,1843.050832,hintandextended,nbiot,180 +on9,0,0,25,1,0,1913,4500.000000,104,1,40667.000320,2033.350000,hintandextended,nbiot,180 +on6,0,0,24,1,0,197,4320.000000,104,0,3761.000320,1818.610208,hintandextended,nbiot,180 +on5,0,0,25,1,0,181,4500.000000,104,1,3824.600320,2170.500832,hintandextended,nbiot,180 +on7,0,0,24,1,0,791,4320.000000,104,0,15782.000320,1793.260208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,104,0,-1.000000,2040.005408,hintandextended,nbiot,180 +on4,0,0,24,1,0,3003,4320.000000,104,0,59778.000320,1765.050000,hintandextended,nbiot,180 +on10,0,0,24,1,0,1158,4320.000000,104,0,22291.000320,1788.709584,hintandextended,nbiot,180 +on11,0,0,25,1,0,1620,4500.000000,104,1,33327.600640,1917.195208,hintandextended,nbiot,180 +on8,0,0,25,1,0,1013,4500.000000,104,1,19089.000320,1826.000624,hintandextended,nbiot,180 +on1,0,0,24,1,0,1857,4320.000000,104,0,36910.000320,1806.909792,hintandextended,nbiot,180 +on7,0,0,25,1,0,3174,4500.000000,105,1,66724.000320,2033.350000,hintandextended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,105,0,5033.000320,1938.210208,hintandextended,nbiot,180 +on2,0,0,24,1,0,156,4336.000320,105,0,2950.000320,1792.900752,hintandextended,nbiot,180 +on9,0,0,24,1,0,1329,4320.000000,105,0,26129.000320,1754.000416,hintandextended,nbiot,180 +on1,0,0,25,1,0,900,4500.000000,105,1,20040.600640,2009.755832,hintandextended,nbiot,180 +on3,0,0,25,1,0,1797,4500.000000,105,1,35456.000320,1862.400208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4336.000320,105,0,-1.000000,2046.405536,hintandextended,nbiot,180 +on5,0,0,24,1,0,2520,4320.000000,105,0,52783.000320,1754.000208,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,105,0,3035.000320,1869.310416,hintandextended,nbiot,180 +on8,0,0,25,1,0,1014,4500.000000,105,1,25039.000320,2207.550416,hintandextended,nbiot,180 +on10,0,0,25,1,0,1913,4500.000000,105,1,41163.000320,1949.500000,hintandextended,nbiot,180 +on4,0,0,25,1,0,315,4500.000000,105,1,4973.000320,1924.150208,hintandextended,nbiot,180 +on12,0,0,25,1,0,1800,4500.000000,105,1,37857.600640,1973.615208,hintandextended,nbiot,180 +on4,0,0,25,1,0,0,4500.000000,106,1,2010.600640,1890.806040,hintandextended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,106,0,3983.000320,1870.350832,hintandextended,nbiot,180 +on12,0,0,25,1,0,473,4500.000000,106,1,10276.000320,1984.860208,hintandextended,nbiot,180 +on8,0,0,25,1,0,644,4653.000000,106,2,13790.000960,2038.650416,hintandextended,nbiot,180 +on6,0,0,24,1,0,3142,4320.000000,106,0,64068.000320,1791.700208,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,106,0,-1.000000,2014.008320,hintandextended,nbiot,180 +on3,0,0,25,1,0,882,4500.000000,106,1,15661.000320,2099.650208,hintandextended,nbiot,180 +on11,0,0,25,1,0,1260,4500.000000,106,1,25995.000320,2069.750624,hintandextended,nbiot,180 +on1,0,0,24,1,0,559,4320.000000,106,0,13750.000320,1876.850208,hintandextended,nbiot,180 +on2,0,0,24,1,0,357,4357.000320,106,0,3859.000320,1787.000128,hintandextended,nbiot,180 +on9,0,0,27,1,0,668,4860.000000,106,3,15701.000960,2388.990000,hintandextended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,25,1,0,979,4532.000000,106,2,22551.000320,2192.400208,hintandextended,nbiot,180 +on10,0,0,25,1,0,654,4500.000000,107,1,11850.000320,2058.570416,hintandextended,nbiot,180 +on4,0,0,26,1,0,1137,4680.000000,107,2,24865.000320,2356.119792,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,107,0,-1.000000,2014.008736,hintandextended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on7,0,0,28,1,0,669,5040.000000,107,5,14612.600960,2645.785000,hintandextended,nbiot,180 +on6,0,0,24,1,0,219,4320.000000,107,0,6943.000320,2030.900624,hintandextended,nbiot,180 +on11,0,0,26,1,0,1114,4680.000000,107,3,24905.000960,2184.909792,hintandextended,nbiot,180 +on5,0,0,24,1,0,363,4320.000000,107,0,8646.000320,1870.610000,hintandextended,nbiot,180 +on3,0,0,26,1,0,905,4680.000000,107,3,18780.601600,2064.466248,hintandextended,nbiot,180 +on2,0,0,26,1,0,659,4680.000000,107,2,14571.000320,2144.025000,hintandextended,nbiot,180 +on8,0,0,27,1,0,1022,4860.000000,107,3,27271.000320,2608.949584,hintandextended,nbiot,180 +on1,0,0,27,1,0,859,4860.000000,107,3,18738.000320,2474.724376,hintandextended,nbiot,180 +on12,0,0,26,1,0,558,4680.000000,107,2,8687.600960,2110.745624,hintandextended,nbiot,180 +on1,0,0,25,1,0,84,4500.000000,108,1,3662.000320,2002.084584,hintandextended,nbiot,180 +on11,0,0,25,1,0,382,4648.000000,108,3,9370.602240,2113.025624,hintandextended,nbiot,180 +on2,0,0,29,1,0,587,5220.000000,108,5,17805.000960,2599.158960,hintandextended,nbiot,180 +on9,0,0,26,1,0,477,4680.000000,108,2,11117.000960,2205.904376,hintandextended,nbiot,180 +on12,0,0,28,1,0,434,5040.000000,108,4,17765.000320,2784.299376,hintandextended,nbiot,180 +on6,0,0,28,1,0,692,5040.000000,108,6,17845.601600,2315.389792,hintandextended,nbiot,180 +on8,0,0,25,1,0,0,4500.000000,108,1,2738.600640,1948.135208,hintandextended,nbiot,180 +on10,0,0,25,1,0,446,4500.000000,108,1,9290.000960,2008.648752,hintandextended,nbiot,180 +on5,0,0,25,1,0,356,4569.000000,108,2,9330.001600,2234.303544,hintandextended,nbiot,180 +on7,0,0,26,1,0,473,4680.000000,108,2,11077.000320,2053.544376,hintandextended,nbiot,180 +on4,0,0,26,1,0,228,4680.000000,108,3,9250.000320,2117.439584,hintandextended,nbiot,180 +on3,0,0,26,1,0,815,4680.000000,108,2,20338.000320,2250.689584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4337.600640,108,0,-1.000000,2047.045456,hintandextended,nbiot,180 +on10,0,0,26,1,0,154,4680.000000,109,2,5625.000320,2139.409792,hintandextended,nbiot,180 +on5,0,0,25,1,0,333,4500.000000,109,1,5568.000960,2006.959584,hintandextended,nbiot,180 +on7,0,0,26,1,0,477,4680.000000,109,3,13238.000320,2183.089376,hintandextended,nbiot,180 +on6,0,0,27,1,0,464,5030.000000,109,6,13318.601600,2400.050416,hintandextended,nbiot,180 +on2,0,0,25,1,0,293,4500.000000,109,1,9678.000320,2148.010000,hintandextended,nbiot,180 +on8,0,0,24,1,0,268,4320.000000,109,1,5528.000320,1766.545000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4326.600640,109,0,-1.000000,2042.645040,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4409.000000,109,1,526.600640,2097.115416,hintandextended,nbiot,180 +on3,0,0,24,1,0,46,4320.000000,109,0,380.000320,1760.110208,hintandextended,nbiot,180 +on4,0,0,25,1,0,205,4500.000000,109,2,5665.600960,1916.545000,hintandextended,nbiot,180 +on9,0,0,24,1,0,577,4320.000000,109,0,13278.000960,1820.949584,hintandextended,nbiot,180 +on1,0,0,26,1,0,524,4680.000000,109,2,14859.000320,2421.249792,hintandextended,nbiot,180 +on12,0,0,25,1,0,1013,4500.000000,109,1,20416.000320,1917.000000,hintandextended,nbiot,180 +on10,0,0,29,1,0,718,5220.000000,110,6,19953.000320,2763.998960,hintandextended,nbiot,180 +on1,0,0,24,1,0,482,4332.000320,110,1,9104.000320,1758.800336,hintandextended,nbiot,180 +on12,0,0,25,1,0,317,4500.000000,110,1,9144.000960,2025.094584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,110,0,-1.000000,2040.004992,hintandextended,nbiot,180 +on5,0,0,25,1,0,385,4580.000000,110,2,13291.000320,2306.239584,hintandextended,nbiot,180 +on8,0,0,24,1,0,273,4320.000000,110,0,6350.000320,1754.000208,hintandextended,nbiot,180 +on7,0,0,27,1,0,575,4860.000000,110,3,13331.000960,2318.270208,hintandextended,nbiot,180 +on3,0,0,24,1,0,870,4330.000320,110,0,17510.000320,1874.350336,hintandextended,nbiot,180 +on6,0,0,26,1,0,1071,4680.000000,110,2,19993.000960,2137.849792,hintandextended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,110,0,9224.000320,1794.300416,hintandextended,nbiot,180 +on2,0,0,24,1,0,36,4320.000000,110,0,933.000320,1851.110416,hintandextended,nbiot,180 +on11,0,0,24,1,0,1429,4349.000320,110,0,25956.000320,1881.950336,hintandextended,nbiot,180 +on9,0,0,25,1,0,180,4500.000000,110,1,6457.600640,1914.465416,hintandextended,nbiot,180 +on2,0,0,24,1,0,1195,4320.000000,111,0,23045.000320,1853.450000,hintandextended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,111,0,11593.000320,1754.000208,hintandextended,nbiot,180 +on7,0,0,26,1,0,1414,4680.000000,111,2,30523.000320,2222.609584,hintandextended,nbiot,180 +on4,0,0,25,1,0,1410,4500.000000,111,1,27706.000960,1890.999584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,111,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on6,0,0,25,1,0,995,4500.000000,111,1,18694.000960,2061.559376,hintandextended,nbiot,180 +on10,0,0,25,1,0,990,4500.000000,111,2,18734.601600,1827.691040,hintandextended,nbiot,180 +on9,0,0,24,1,0,1307,4320.000000,111,0,27666.000320,1813.800208,hintandextended,nbiot,180 +on5,0,0,26,1,0,1084,4680.000000,111,2,23085.000960,2201.549584,hintandextended,nbiot,180 +on11,0,0,24,1,0,905,4320.000000,111,0,18654.000320,1879.449792,hintandextended,nbiot,180 +on3,0,0,25,1,0,1601,4525.000000,111,2,36662.000320,2146.049584,hintandextended,nbiot,180 +on1,0,0,27,1,0,1537,4860.000000,111,3,30564.600960,2325.810000,hintandextended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,111,0,4151.000320,1811.849584,hintandextended,nbiot,180 +on4,0,0,25,1,0,747,4500.000000,112,1,17393.000960,1952.099584,hintandextended,nbiot,180 +on5,0,0,25,1,0,360,4500.000000,112,2,12582.000320,2214.179584,hintandextended,nbiot,180 +on1,0,0,26,1,0,897,4680.000000,112,3,18892.601600,2105.350416,hintandextended,nbiot,180 +on11,0,0,27,1,0,961,4860.000000,112,3,21758.000320,2386.844376,hintandextended,nbiot,180 +on10,0,0,26,1,0,1117,4680.000000,112,2,21798.000960,1962.999584,hintandextended,nbiot,180 +on6,0,0,25,1,0,360,4500.000000,112,1,7503.600640,1974.005416,hintandextended,nbiot,180 +on2,0,0,25,1,0,330,4500.000000,112,1,6327.000320,1826.000208,hintandextended,nbiot,180 +on7,0,0,24,1,0,761,4320.000000,112,0,17353.000320,1817.700000,hintandextended,nbiot,180 +on12,0,0,24,1,0,1080,4404.000000,112,1,21911.000320,1787.600208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4333.000320,112,0,-1.000000,2045.204704,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,112,0,1750.000320,1983.580416,hintandextended,nbiot,180 +on9,0,0,26,1,0,850,4680.000000,112,2,18812.000320,2104.764792,hintandextended,nbiot,180 +on3,0,0,27,1,0,883,4860.000000,112,3,18852.000960,2493.899584,hintandextended,nbiot,180 +on8,0,0,24,1,0,35,4320.000000,113,0,1785.000320,1928.459792,hintandextended,nbiot,180 +on12,0,0,24,1,0,330,4330.000320,113,0,5346.000320,1874.350336,hintandextended,nbiot,180 +on11,0,0,26,1,0,357,4680.000000,113,3,5426.601600,2035.344792,hintandextended,nbiot,180 +on10,0,0,24,1,0,405,4320.000000,113,0,8296.000320,1815.100000,hintandextended,nbiot,180 +on3,0,0,27,1,0,670,4860.000000,113,3,15658.600960,2285.250000,hintandextended,nbiot,180 +on7,0,0,26,1,0,665,4680.000000,113,2,15617.000320,2224.429584,hintandextended,nbiot,180 +on5,0,0,25,1,0,473,4500.000000,113,1,12819.000320,2005.400000,hintandextended,nbiot,180 +on6,0,0,25,1,0,693,4500.000000,113,1,12859.000960,2007.349584,hintandextended,nbiot,180 +on1,0,0,27,1,0,878,4860.000000,113,3,21117.000320,2329.774584,hintandextended,nbiot,180 +on9,0,0,25,1,0,360,4500.000000,113,2,8433.600640,1900.814376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,113,0,-1.000000,2040.004992,hintandextended,nbiot,180 +on4,0,0,25,1,0,529,4529.000960,113,1,8336.000960,1951.220800,hintandextended,nbiot,180 +on2,0,0,26,1,0,186,4680.000000,113,3,5386.000960,2161.964168,hintandextended,nbiot,180 +on5,0,0,26,1,0,178,4680.000000,114,4,9997.000320,2288.194168,hintandextended,nbiot,180 +on11,0,0,24,1,0,198,4320.000000,114,0,5019.000960,1833.299584,hintandextended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,114,0,5110.000320,1961.350416,hintandextended,nbiot,180 +on7,0,0,27,1,0,704,4860.000000,114,3,20480.000320,2591.399376,hintandextended,nbiot,180 +on3,0,0,26,1,0,357,4680.000000,114,2,5059.001600,2104.050000,hintandextended,nbiot,180 +on10,0,0,26,1,0,897,4680.000000,114,3,17330.601600,2054.649584,hintandextended,nbiot,180 +on9,0,0,26,1,0,514,4680.000000,114,2,13473.000320,2094.949376,hintandextended,nbiot,180 +on12,0,0,27,1,0,755,4860.000000,114,3,17290.000960,2173.709376,hintandextended,nbiot,180 +on6,0,0,26,1,0,527,4680.000000,114,3,17250.000320,2302.949376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,114,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,114,0,787.000320,1842.010208,hintandextended,nbiot,180 +on1,0,0,24,1,0,272,4320.000000,114,0,4979.000320,1784.550000,hintandextended,nbiot,180 +on2,0,0,25,1,0,406,4610.000000,114,2,10038.001280,2120.444792,hintandextended,nbiot,180 +on2,0,0,25,1,0,1080,4500.000000,115,1,23543.000320,2019.050416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,115,0,-1.000000,2040.005824,hintandextended,nbiot,180 +on12,0,0,27,1,0,782,4970.000000,115,5,20554.000320,2472.119376,hintandextended,nbiot,180 +on4,0,0,24,1,0,347,4347.000320,115,0,4812.000320,1871.660960,hintandextended,nbiot,180 +on9,0,0,25,1,0,653,4500.000000,115,2,15777.000320,2027.045208,hintandextended,nbiot,180 +on8,0,0,25,1,0,622,4604.000000,115,2,13185.000320,2260.850416,hintandextended,nbiot,180 +on1,0,0,25,1,0,1800,4500.000000,115,1,36120.600640,1949.305000,hintandextended,nbiot,180 +on10,0,0,25,1,0,164,4524.600960,115,1,2470.600960,1951.540800,hintandextended,nbiot,180 +on7,0,0,25,1,0,537,4500.000000,115,1,9993.000960,1913.945208,hintandextended,nbiot,180 +on11,0,0,25,1,0,484,4500.000000,115,1,9953.000320,1917.000000,hintandextended,nbiot,180 +on6,0,0,24,1,0,1495,4320.000000,115,0,28976.000320,1806.910416,hintandextended,nbiot,180 +on3,0,0,24,1,0,105,4320.000000,115,0,2429.000320,1831.610208,hintandextended,nbiot,180 +on5,0,0,25,1,0,2019,4500.000000,115,1,42314.000320,1994.220000,hintandextended,nbiot,180 +on4,0,0,26,1,0,1234,4734.000000,116,4,29178.000320,2417.500000,hintandextended,nbiot,180 +on9,0,0,24,1,0,337,4337.000320,116,0,5015.000320,1844.000544,hintandextended,nbiot,180 +on6,0,0,24,1,0,414,4320.000000,116,0,7397.000320,1809.900000,hintandextended,nbiot,180 +on3,0,0,25,1,0,833,4500.000000,116,1,19856.000320,2057.660208,hintandextended,nbiot,180 +on7,0,0,24,1,0,84,4320.000000,116,0,2137.000320,1925.210000,hintandextended,nbiot,180 +on8,0,0,25,1,0,45,4500.000000,116,2,2273.001600,1826.195624,hintandextended,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,116,0,45857.000320,1845.000000,hintandextended,nbiot,180 +on12,0,0,25,1,0,71,4500.000000,116,2,2232.400960,2046.544376,hintandextended,nbiot,180 +on10,0,0,25,1,0,1228,4500.000000,116,1,25028.000320,1826.000208,hintandextended,nbiot,180 +on2,0,0,25,1,0,1440,4500.000000,116,2,29131.600640,2133.905624,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,116,0,2192.000320,1844.740000,hintandextended,nbiot,180 +on11,0,0,25,1,0,1762,4500.000000,116,1,37673.000320,1919.600208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,116,0,-1.000000,2040.005408,hintandextended,nbiot,180 +on4,0,0,25,1,0,833,4500.000000,117,1,19315.000320,1979.464792,hintandextended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,117,0,17069.000320,1757.510208,hintandextended,nbiot,180 +on10,0,0,25,1,0,859,4551.000000,117,2,23405.000320,2227.819792,hintandextended,nbiot,180 +on3,0,0,25,1,0,654,4500.000000,117,1,16995.000320,1917.000000,hintandextended,nbiot,180 +on8,0,0,26,1,0,867,4680.000000,117,2,19356.600960,2113.345000,hintandextended,nbiot,180 +on12,0,0,24,1,0,1260,4488.000000,117,1,26753.000320,1912.200000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4332.000320,117,0,-1.000000,2044.804080,hintandextended,nbiot,180 +on5,0,0,26,1,0,1054,4680.000000,117,2,23446.600960,2104.700000,hintandextended,nbiot,180 +on1,0,0,25,1,0,462,4500.000000,117,2,11004.000320,1974.719584,hintandextended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,117,0,8470.000320,1837.460208,hintandextended,nbiot,180 +on6,0,0,26,1,0,514,4680.000000,117,2,11045.600960,2054.000208,hintandextended,nbiot,180 +on9,0,0,24,1,0,205,4320.000000,117,0,3956.000320,1754.000208,hintandextended,nbiot,180 +on7,0,0,24,1,0,401,4320.000000,117,0,8318.000320,1774.150000,hintandextended,nbiot,180 +on1,0,0,25,1,0,0,4500.000000,118,1,1719.600640,1826.195624,hintandextended,nbiot,180 +on6,0,0,25,1,0,833,4500.000000,118,1,17621.000320,1915.959792,hintandextended,nbiot,180 +on4,0,0,25,1,0,653,4500.000000,118,1,12145.000320,1954.310000,hintandextended,nbiot,180 +on9,0,0,26,1,0,874,4680.000000,118,2,17662.600960,1961.959584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,118,0,-1.000000,2040.004368,hintandextended,nbiot,180 +on5,0,0,25,1,0,646,4500.000000,118,1,12225.001600,1955.739168,hintandextended,nbiot,180 +on8,0,0,25,1,0,180,4500.000000,118,1,6567.000320,1936.759792,hintandextended,nbiot,180 +on7,0,0,24,1,0,459,4458.000000,118,1,12185.000960,2004.720000,hintandextended,nbiot,180 +on10,0,0,24,1,0,145,4325.000320,118,0,1636.000320,1756.000336,hintandextended,nbiot,180 +on3,0,0,25,1,0,579,4629.000000,118,3,12265.602240,2239.651040,hintandextended,nbiot,180 +on11,0,0,25,1,0,360,4500.000000,118,1,8937.600640,2010.014792,hintandextended,nbiot,180 +on12,0,0,24,1,0,403,4320.000000,118,0,8809.000320,1893.359792,hintandextended,nbiot,180 +on2,0,0,26,1,0,334,4680.000000,118,2,8850.600960,2080.779792,hintandextended,nbiot,180 +on7,0,0,25,1,0,360,4500.000000,119,1,10132.600640,2142.355208,hintandextended,nbiot,180 +on1,0,0,24,1,0,425,4320.000000,119,1,9989.000320,2046.110000,hintandextended,nbiot,180 +on5,0,0,25,1,0,1553,4500.000000,119,1,34315.000320,1907.250208,hintandextended,nbiot,180 +on2,0,0,24,1,0,806,4320.000000,119,0,15032.000320,1983.450832,hintandextended,nbiot,180 +on9,0,0,25,1,0,527,4500.000000,119,1,13430.000320,2305.700416,hintandextended,nbiot,180 +on6,0,0,25,1,0,366,4570.000000,119,2,6075.000960,2393.955208,hintandextended,nbiot,180 +on3,0,0,24,1,0,152,4332.000320,119,0,2427.000320,1886.200752,hintandextended,nbiot,180 +on8,0,0,25,1,0,329,4500.000000,119,1,6035.000320,2080.150416,hintandextended,nbiot,180 +on12,0,0,25,1,0,52,4500.000000,119,1,2467.600960,2147.555832,hintandextended,nbiot,180 +on4,0,0,26,1,0,374,4807.000000,119,3,10030.600960,2394.310208,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4323.600640,119,0,-1.000000,2015.447744,hintandextended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,119,0,32005.000320,1869.700000,hintandextended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on2,0,0,25,1,0,719,4500.000000,120,1,17791.000320,2062.535000,hintandextended,nbiot,180 +on5,0,0,25,1,0,397,4500.000000,120,1,9782.000320,2043.165208,hintandextended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,120,0,2112.000320,1754.000208,hintandextended,nbiot,180 +on7,0,0,25,1,0,833,4524.000000,120,2,20281.000320,2033.199792,hintandextended,nbiot,180 +on8,0,0,26,1,0,779,4680.000000,120,2,17831.000960,2311.399376,hintandextended,nbiot,180 +on1,0,0,26,1,0,512,4680.000000,120,2,9822.000960,2292.809376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,120,0,-1.000000,2040.006032,hintandextended,nbiot,180 +on4,0,0,24,1,0,128,4320.000000,120,0,1984.000320,2161.419584,hintandextended,nbiot,180 +on11,0,0,27,1,0,522,4860.000000,120,3,13142.000960,2370.659376,hintandextended,nbiot,180 +on9,0,0,25,1,0,11,4500.000000,120,2,5900.000320,2117.070000,hintandextended,nbiot,180 +on12,0,0,26,1,0,358,4680.000000,120,3,9862.601600,2247.506040,hintandextended,nbiot,180 +on6,0,0,25,1,0,654,4500.000000,120,1,13102.000320,1985.250208,hintandextended,nbiot,180 +on3,0,0,25,1,0,2484,4500.000000,120,1,47955.000320,1976.800000,hintandextended,nbiot,180 +on10,0,0,25,1,0,473,4500.000000,121,1,12723.000320,2182.719168,hintandextended,nbiot,180 +on2,0,0,25,1,0,834,4500.000000,121,1,17119.000320,2032.310000,hintandextended,nbiot,180 +on7,0,0,27,1,0,913,4860.000000,121,4,18901.000960,2241.699168,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,121,0,3328.000320,1843.960208,hintandextended,nbiot,180 +on3,0,0,26,1,0,977,4680.000000,121,2,23850.000320,2313.739584,hintandextended,nbiot,180 +on4,0,0,26,1,0,828,4680.000000,121,2,18861.000320,2080.194792,hintandextended,nbiot,180 +on8,0,0,28,1,0,919,5040.000000,121,5,18941.601600,2334.110208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4321.000320,121,0,-1.000000,2040.404912,hintandextended,nbiot,180 +on12,0,0,26,1,0,366,4680.000000,121,2,6046.600960,2009.800000,hintandextended,nbiot,180 +on6,0,0,24,1,0,273,4320.000000,121,0,6005.000320,1783.509792,hintandextended,nbiot,180 +on1,0,0,24,1,0,407,4320.000000,121,0,7555.000320,1813.409792,hintandextended,nbiot,180 +on5,0,0,26,1,0,588,4680.000000,121,2,12763.000960,2120.819792,hintandextended,nbiot,180 +on11,0,0,27,1,0,320,4860.000000,121,3,7596.600960,2196.524584,hintandextended,nbiot,180 +on1,0,0,25,1,0,1441,4500.000000,122,1,29183.600320,2032.310000,hintandextended,nbiot,180 +on6,0,0,25,1,0,362,4500.000000,122,1,11246.000320,2031.659584,hintandextended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,122,0,15224.000320,1870.350208,hintandextended,nbiot,180 +on9,0,0,24,1,0,478,4320.000000,122,0,7450.000320,1767.259792,hintandextended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,122,0,29090.000320,2031.160208,hintandextended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,122,0,22598.000320,1780.650208,hintandextended,nbiot,180 +on12,0,0,26,1,0,334,4680.000000,122,2,7491.600960,2016.560000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,122,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on3,0,0,25,1,0,0,4500.000000,122,2,4158.000320,1976.800416,hintandextended,nbiot,180 +on4,0,0,24,1,0,947,4320.000000,122,0,20688.000320,1868.660208,hintandextended,nbiot,180 +on8,0,0,25,1,0,1800,4500.000000,122,1,37467.600640,1916.805000,hintandextended,nbiot,180 +on7,0,0,24,1,0,69,4320.000000,122,0,2818.000320,1835.900416,hintandextended,nbiot,180 +on2,0,0,26,1,0,694,4680.000000,122,2,11287.600960,2014.350416,hintandextended,nbiot,180 +on11,0,0,24,1,0,153,4333.000320,123,0,1417.000320,1759.200336,hintandextended,nbiot,180 +on12,0,0,25,1,0,1387,4500.000000,123,1,26777.000320,2032.309792,hintandextended,nbiot,180 +on8,0,0,25,1,0,644,4500.000000,123,1,12566.000640,1826.000208,hintandextended,nbiot,180 +on4,0,0,25,1,0,180,4500.000000,123,1,5771.600640,2072.675416,hintandextended,nbiot,180 +on9,0,0,26,1,0,1020,4680.000000,123,3,19794.601600,2209.220832,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,123,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on5,0,0,28,1,0,786,5040.000000,123,5,19754.000960,2673.343960,hintandextended,nbiot,180 +on3,0,0,24,1,0,370,4320.000000,123,0,7980.000320,1838.500000,hintandextended,nbiot,180 +on1,0,0,26,1,0,998,4680.000000,123,2,23467.000320,2303.924584,hintandextended,nbiot,180 +on10,0,0,26,1,0,616,4680.000000,123,2,14824.000320,2119.390208,hintandextended,nbiot,180 +on2,0,0,26,1,0,1360,4680.000000,123,2,26818.600960,2155.659584,hintandextended,nbiot,180 +on7,0,0,24,1,0,833,4443.000000,123,1,19714.000320,2089.850000,hintandextended,nbiot,180 +on6,0,0,24,1,0,306,4320.000000,123,0,5698.000320,1870.350416,hintandextended,nbiot,180 +on2,0,0,26,1,0,1234,4680.000000,124,2,25988.000960,2262.909792,hintandextended,nbiot,180 +on12,0,0,24,1,0,841,4320.000000,124,0,16490.000320,1898.300416,hintandextended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,124,0,44302.000320,1872.950416,hintandextended,nbiot,180 +on1,0,0,26,1,0,1053,4680.000000,124,2,23015.000320,2195.309584,hintandextended,nbiot,180 +on10,0,0,25,1,0,1077,4652.000000,124,2,23056.600960,2003.150416,hintandextended,nbiot,180 +on11,0,0,25,1,0,1555,4500.000000,124,1,30719.000320,1917.000000,hintandextended,nbiot,180 +on3,0,0,24,1,0,1080,4385.000000,124,1,23167.600640,1961.805000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4332.600640,124,0,-1.000000,2045.045456,hintandextended,nbiot,180 +on4,0,0,25,1,0,1140,4500.000000,124,1,25948.000320,2052.850000,hintandextended,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,124,0,16625.000320,1892.060416,hintandextended,nbiot,180 +on5,0,0,25,1,0,850,4500.000000,124,2,19416.000320,2063.769792,hintandextended,nbiot,180 +on6,0,0,26,1,0,1054,4680.000000,124,2,19457.600960,2104.115000,hintandextended,nbiot,180 +on9,0,0,24,1,0,3060,4320.000000,124,0,61888.000320,1845.000000,hintandextended,nbiot,180 +on1,0,0,25,1,0,1,4500.000000,125,1,3315.600320,2157.110416,hintandextended,nbiot,180 +on2,0,0,25,1,0,227,4500.000000,125,1,8579.000320,2399.690416,hintandextended,nbiot,180 +on4,0,0,25,1,0,2070,4619.000000,125,2,50794.000320,2348.100208,hintandextended,nbiot,180 +on7,0,0,24,1,0,385,4492.000000,125,2,8733.600960,1953.645416,hintandextended,nbiot,180 +on8,0,0,24,1,0,192,4320.000000,125,0,6476.000320,1837.200000,hintandextended,nbiot,180 +on3,0,0,25,1,0,752,4500.000000,125,1,15758.000960,2113.299792,hintandextended,nbiot,180 +on9,0,0,25,1,0,653,4500.000000,125,1,15718.000320,2112.910000,hintandextended,nbiot,180 +on5,0,0,25,1,0,474,4500.000000,125,1,11297.000320,1974.850208,hintandextended,nbiot,180 +on10,0,0,25,1,0,0,4500.000000,125,1,3405.600640,2010.015624,hintandextended,nbiot,180 +on11,0,0,26,1,0,332,4680.000000,125,3,8693.000320,2388.620416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4357.201600,125,0,-1.000000,2054.888336,hintandextended,nbiot,180 +on12,0,0,24,1,0,95,4320.000000,125,0,3243.000320,1802.360416,hintandextended,nbiot,180 +on6,0,0,24,1,0,3109,4320.000000,125,0,62880.000320,1929.500000,hintandextended,nbiot,180 +on5,0,0,27,1,0,964,4860.000000,126,3,21079.000320,2358.049376,hintandextended,nbiot,180 +on4,0,0,24,1,0,447,4320.000000,126,0,8381.000320,1869.310416,hintandextended,nbiot,180 +on6,0,0,26,1,0,915,4775.000000,126,3,20996.600960,2465.100000,hintandextended,nbiot,180 +on9,0,0,26,1,0,661,4680.000000,126,2,13617.000960,2402.204584,hintandextended,nbiot,180 +on7,0,0,24,1,0,267,4320.000000,126,0,4089.000320,1870.350832,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4344.600960,126,0,-1.000000,2049.848288,hintandextended,nbiot,180 +on2,0,0,24,1,0,911,4320.000000,126,0,20955.000320,1996.710000,hintandextended,nbiot,180 +on1,0,0,25,1,0,925,4500.000000,126,2,21119.600960,1942.545624,hintandextended,nbiot,180 +on11,0,0,26,1,0,804,4680.000000,126,2,17545.000320,2173.145000,hintandextended,nbiot,180 +on8,0,0,25,1,0,655,4500.000000,126,1,13577.000320,1936.760208,hintandextended,nbiot,180 +on10,0,0,24,1,0,3777,4357.000320,126,0,73189.000320,1768.800336,hintandextended,nbiot,180 +on12,0,0,24,1,0,2351,4320.000000,126,0,47634.000320,1837.850000,hintandextended,nbiot,180 +on3,0,0,27,1,0,400,4860.000000,126,6,13657.601600,2547.070832,hintandextended,nbiot,180 +on6,0,0,25,1,0,362,4500.000000,127,1,7732.600960,2146.710000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4329.600640,127,0,-1.000000,2043.844832,hintandextended,nbiot,180 +on4,0,0,25,1,0,540,4500.000000,127,1,11393.600640,1937.344792,hintandextended,nbiot,180 +on3,0,0,25,1,0,225,4500.000000,127,1,4416.000320,1907.900416,hintandextended,nbiot,180 +on7,0,0,26,1,0,769,4680.000000,127,2,19864.000320,2189.199792,hintandextended,nbiot,180 +on10,0,0,24,1,0,881,4341.000320,127,0,15167.000320,1762.400336,hintandextended,nbiot,180 +on2,0,0,24,1,0,468,4320.000000,127,0,7691.000320,1773.759792,hintandextended,nbiot,180 +on5,0,0,26,1,0,514,4680.000000,127,2,11285.600960,1898.000416,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,127,0,1216.000320,1868.270208,hintandextended,nbiot,180 +on8,0,0,25,1,0,692,4500.000000,127,1,15207.000960,2012.809584,hintandextended,nbiot,180 +on9,0,0,27,1,0,486,4860.000000,127,4,11244.000320,2357.854376,hintandextended,nbiot,180 +on12,0,0,27,1,0,733,4860.000000,127,4,23005.000320,2595.819584,hintandextended,nbiot,180 +on11,0,0,24,1,0,87,4320.000000,127,0,1102.000320,1754.000208,hintandextended,nbiot,180 +on0,1,10,24,0,0,0,4332.000320,128,0,-1.000000,1992.805744,hintandextended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,128,0,15606.000320,1784.810416,hintandextended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,128,0,9896.000320,1782.860624,hintandextended,nbiot,180 +on2,0,0,25,1,0,2220,4500.000000,128,1,48141.000320,2122.400416,hintandextended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,128,0,9971.000320,1865.150000,hintandextended,nbiot,180 +on7,0,0,24,1,0,1029,4320.000000,128,0,18930.000320,1952.120416,hintandextended,nbiot,180 +on6,0,0,24,1,0,2524,4408.000000,128,1,50892.000320,2001.750416,hintandextended,nbiot,180 +on11,0,0,26,1,0,874,4680.000000,128,2,18971.600960,2249.001040,hintandextended,nbiot,180 +on5,0,0,24,1,0,2095,4320.000000,128,0,41324.000320,1886.600416,hintandextended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,128,0,24727.000320,1840.450416,hintandextended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on9,0,0,25,1,0,586,4500.000000,128,1,12088.000320,1826.000208,hintandextended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on11,0,0,26,1,0,388,4680.000000,129,2,7034.000960,2240.420000,hintandextended,nbiot,180 +on9,0,0,26,1,0,396,4680.000000,129,2,7074.001600,2105.350000,hintandextended,nbiot,180 +on1,0,0,26,1,0,410,4680.000000,129,3,7941.000320,2223.389584,hintandextended,nbiot,180 +on7,0,0,25,1,0,473,4500.000000,129,1,11486.000320,1950.409792,hintandextended,nbiot,180 +on10,0,0,24,1,0,580,4336.000000,129,1,17497.000320,2053.160000,hintandextended,nbiot,180 +on6,0,0,27,1,0,673,4860.000000,129,3,19882.000320,2470.824584,hintandextended,nbiot,180 +on8,0,0,24,1,0,319,4320.000000,129,0,6994.000320,1788.450208,hintandextended,nbiot,180 +on2,0,0,25,1,0,1165,4500.000000,129,1,22244.000320,2081.450000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,129,0,-1.000000,2040.004992,hintandextended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,129,0,8039.000320,1785.850208,hintandextended,nbiot,180 +on12,0,0,26,1,0,895,4680.000000,129,2,17537.000960,2123.549792,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,129,0,2590.000320,1868.660416,hintandextended,nbiot,180 +on3,0,0,25,1,0,426,4516.000000,129,2,11527.600960,2054.830416,hintandextended,nbiot,180 +on2,0,0,25,1,0,201,4500.000000,130,1,5222.001600,2086.258752,hintandextended,nbiot,180 +on8,0,0,26,1,0,197,4680.000000,130,3,5262.602240,2275.649168,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,130,0,3258.000320,1853.059376,hintandextended,nbiot,180 +on10,0,0,25,1,0,1571,4500.000000,130,1,32233.000320,2033.350000,hintandextended,nbiot,180 +on4,0,0,27,1,0,489,4860.000000,130,3,11910.000320,2243.194584,hintandextended,nbiot,180 +on3,0,0,26,1,0,416,4680.000000,130,2,11950.000960,2247.959168,hintandextended,nbiot,180 +on7,0,0,24,1,0,853,4320.000000,130,0,16465.000320,1754.000208,hintandextended,nbiot,180 +on1,0,0,25,1,0,31,4500.000000,130,1,5142.000320,2124.805208,hintandextended,nbiot,180 +on5,0,0,26,1,0,258,4680.000000,130,3,8485.000320,2197.064584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4358.603200,130,0,-1.000000,2055.446272,hintandextended,nbiot,180 +on11,0,0,25,1,0,333,4500.000000,130,1,5182.000960,1890.999584,hintandextended,nbiot,180 +on6,0,0,25,1,0,217,4500.000000,130,1,5302.602880,2004.750416,hintandextended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,130,0,16603.000320,1754.000208,hintandextended,nbiot,180 +on1,0,0,24,1,0,1544,4320.000000,131,0,29626.000320,1777.400000,hintandextended,nbiot,180 +on6,0,0,25,1,0,2520,4500.000000,131,1,51535.000320,1826.000208,hintandextended,nbiot,180 +on9,0,0,24,1,0,2753,4320.000000,131,0,56068.000320,1810.550000,hintandextended,nbiot,180 +on3,0,0,25,1,0,473,4500.000000,131,1,12903.000320,2072.610000,hintandextended,nbiot,180 +on5,0,0,24,1,0,158,4338.000320,131,0,1801.000320,1761.200336,hintandextended,nbiot,180 +on4,0,0,27,1,0,396,4860.000000,131,3,12944.600960,2592.569584,hintandextended,nbiot,180 +on10,0,0,25,1,0,180,4500.000000,131,2,4625.600640,1958.015416,hintandextended,nbiot,180 +on8,0,0,25,1,0,48,4500.000000,131,1,1841.600960,2207.225416,hintandextended,nbiot,180 +on12,0,0,24,1,0,392,4479.000000,131,1,8552.000320,1907.950000,hintandextended,nbiot,180 +on11,0,0,25,1,0,653,4500.000000,131,1,14693.000320,2033.350000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4352.000320,131,0,-1.000000,2052.805744,hintandextended,nbiot,180 +on7,0,0,25,1,0,540,4500.000000,131,1,13000.000320,1985.510208,hintandextended,nbiot,180 +on2,0,0,26,1,0,254,4680.000000,131,2,8592.000960,2400.838752,hintandextended,nbiot,180 +on10,0,0,25,1,0,209,4500.000000,132,1,10067.000320,2013.849792,hintandextended,nbiot,180 +on9,0,0,24,1,0,69,4320.000000,132,0,899.000320,1806.780208,hintandextended,nbiot,180 +on5,0,0,27,1,0,469,4860.000000,132,3,10147.001600,2223.760208,hintandextended,nbiot,180 +on11,0,0,26,1,0,539,4680.000000,132,3,11880.000320,2169.699376,hintandextended,nbiot,180 +on6,0,0,25,1,0,224,4500.000000,132,1,4423.000960,2004.489584,hintandextended,nbiot,180 +on7,0,0,28,1,0,618,5184.000000,132,5,20827.000320,2763.444168,hintandextended,nbiot,180 +on12,0,0,28,1,0,596,5040.000000,132,4,16067.000320,2685.304168,hintandextended,nbiot,180 +on8,0,0,25,1,0,1,4500.000000,132,1,996.600320,2085.090208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,132,0,-1.000000,2040.004160,hintandextended,nbiot,180 +on2,0,0,28,1,0,768,5040.000000,132,4,16108.600960,2381.819792,hintandextended,nbiot,180 +on3,0,0,25,1,0,413,4500.000000,132,1,10107.000960,1994.869584,hintandextended,nbiot,180 +on4,0,0,25,1,0,142,4500.000000,132,2,4383.000320,2056.749792,hintandextended,nbiot,180 +on1,0,0,27,1,0,463,4860.000000,132,3,11920.000960,2331.399168,hintandextended,nbiot,180 +on1,0,0,24,1,0,130,4320.000000,133,0,2771.000320,1769.600416,hintandextended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,133,0,45571.000320,1754.000208,hintandextended,nbiot,180 +on2,0,0,24,1,0,223,4320.000000,133,0,4682.000320,1990.859792,hintandextended,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,133,0,54253.000320,1961.350000,hintandextended,nbiot,180 +on10,0,0,25,1,0,333,4500.000000,133,1,4722.000960,2011.250208,hintandextended,nbiot,180 +on7,0,0,26,1,0,539,4680.000000,133,2,9823.001600,2211.560624,hintandextended,nbiot,180 +on11,0,0,24,1,0,311,4401.000000,133,2,9783.000960,2061.544584,hintandextended,nbiot,180 +on4,0,0,24,1,0,2064,4320.000000,133,0,41620.000320,1774.800000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,133,0,-1.000000,2040.006240,hintandextended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,133,0,14850.000320,1780.650208,hintandextended,nbiot,180 +on3,0,0,25,1,0,355,4500.000000,133,1,9743.000320,2007.999584,hintandextended,nbiot,180 +on6,0,0,25,1,0,427,4500.000000,133,1,10999.000320,2106.800000,hintandextended,nbiot,180 +on12,0,0,26,1,0,197,4680.000000,133,3,4762.001600,2067.844584,hintandextended,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,134,0,27300.000320,1961.350208,hintandextended,nbiot,180 +on2,0,0,26,1,0,1082,4680.000000,134,2,27203.000960,2321.799376,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4359.001280,134,0,-1.000000,2029.608000,hintandextended,nbiot,180 +on11,0,0,24,1,0,613,4320.000000,134,0,11640.000320,1791.960832,hintandextended,nbiot,180 +on1,0,0,24,1,0,1284,4320.000000,134,1,27163.000320,1976.950416,hintandextended,nbiot,180 +on12,0,0,25,1,0,766,4500.000000,134,1,17095.000320,1917.000000,hintandextended,nbiot,180 +on9,0,0,24,1,0,361,4320.000000,134,0,9301.000320,1919.750208,hintandextended,nbiot,180 +on6,0,0,25,1,0,1054,4510.000000,134,2,23920.000960,2062.049792,hintandextended,nbiot,180 +on7,0,0,26,1,0,986,4680.000000,134,4,23880.000320,2388.750000,hintandextended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on10,0,0,25,1,0,900,4500.000000,134,1,18644.001280,1939.621040,hintandextended,nbiot,180 +on4,0,0,25,1,0,745,4500.000000,134,1,18465.000320,2061.300000,hintandextended,nbiot,180 +on3,0,0,25,1,0,541,4500.000000,134,1,11688.600320,1936.500832,hintandextended,nbiot,180 +on9,0,0,25,1,0,873,4500.000000,135,1,17190.000960,1890.999584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4345.600640,135,0,-1.000000,2050.244208,hintandextended,nbiot,180 +on4,0,0,26,1,0,936,4878.000000,135,4,23539.600960,2299.729168,hintandextended,nbiot,180 +on6,0,0,27,1,0,735,4860.000000,135,3,18184.000320,2415.769376,hintandextended,nbiot,180 +on12,0,0,25,1,0,473,4500.000000,135,1,12918.000320,2031.465000,hintandextended,nbiot,180 +on8,0,0,27,1,0,719,4860.000000,135,3,18225.600960,2532.574792,hintandextended,nbiot,180 +on7,0,0,25,1,0,879,4500.000000,135,1,17150.000320,1916.350000,hintandextended,nbiot,180 +on3,0,0,24,1,0,412,4320.000000,135,0,7799.000320,1754.000208,hintandextended,nbiot,180 +on5,0,0,25,1,0,360,4500.000000,135,1,7964.600640,1971.275624,hintandextended,nbiot,180 +on1,0,0,26,1,0,626,4680.000000,135,2,12958.000960,2080.194792,hintandextended,nbiot,180 +on2,0,0,24,1,0,276,4320.000000,135,0,4562.000320,1754.000208,hintandextended,nbiot,180 +on10,0,0,25,1,0,1013,4500.000000,135,1,23498.000320,2148.659792,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,135,0,2635.000320,1754.000208,hintandextended,nbiot,180 +on8,0,0,24,1,0,366,4320.000000,136,0,8267.000320,1754.000208,hintandextended,nbiot,180 +on3,0,0,26,1,0,654,4680.000000,136,2,15203.000960,2187.510624,hintandextended,nbiot,180 +on11,0,0,27,1,0,1448,4860.000000,136,3,29186.000320,2240.008960,hintandextended,nbiot,180 +on2,0,0,28,1,0,1319,5040.000000,136,4,29227.600960,2401.709168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,136,0,-1.000000,2040.004992,hintandextended,nbiot,180 +on10,0,0,27,1,0,1045,4980.000000,136,4,26636.000320,2532.604376,hintandextended,nbiot,180 +on6,0,0,24,1,0,915,4320.000000,136,0,20857.000320,1949.910000,hintandextended,nbiot,180 +on12,0,0,25,1,0,1193,4500.000000,136,1,24255.000320,2013.849584,hintandextended,nbiot,180 +on1,0,0,25,1,0,392,4500.000000,136,2,12593.000320,2028.670000,hintandextended,nbiot,180 +on5,0,0,26,1,0,1174,4680.000000,136,2,24295.000960,2264.079376,hintandextended,nbiot,180 +on9,0,0,28,1,0,1249,5040.000000,136,5,26677.001280,2516.433960,hintandextended,nbiot,180 +on7,0,0,25,1,0,900,4500.000000,136,1,20908.000640,1942.350416,hintandextended,nbiot,180 +on4,0,0,24,1,0,809,4320.000000,136,0,15163.000320,1811.590000,hintandextended,nbiot,180 +on12,0,0,25,1,0,200,4500.000000,137,1,6307.400640,1999.161040,hintandextended,nbiot,180 +on1,0,0,25,1,0,747,4500.000000,137,1,13212.000960,1890.999584,hintandextended,nbiot,180 +on6,0,0,24,1,0,222,4320.000000,137,0,6156.000320,1764.010000,hintandextended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,137,0,6267.000320,1844.740208,hintandextended,nbiot,180 +on5,0,0,26,1,0,892,4680.000000,137,2,16544.000960,2169.309376,hintandextended,nbiot,180 +on11,0,0,24,1,0,741,4320.000000,137,1,16504.000320,1822.900000,hintandextended,nbiot,180 +on10,0,0,26,1,0,1087,4680.000000,137,2,22312.600960,2078.309584,hintandextended,nbiot,180 +on2,0,0,25,1,0,529,4500.000000,137,1,13172.000320,2033.350000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4342.400960,137,0,-1.000000,2048.964752,hintandextended,nbiot,180 +on9,0,0,28,1,0,941,5040.000000,137,4,18286.600960,2613.153960,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,137,0,394.000320,1754.000416,hintandextended,nbiot,180 +on4,0,0,24,1,0,994,4320.000000,137,0,18245.000320,1782.859792,hintandextended,nbiot,180 +on3,0,0,25,1,0,1048,4500.000000,137,1,22271.000320,1915.959792,hintandextended,nbiot,180 +on9,0,0,25,1,0,2998,4500.000000,138,1,59809.000320,1917.000000,hintandextended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,138,0,24335.000320,1765.050000,hintandextended,nbiot,180 +on6,0,0,24,1,0,104,4320.000000,138,0,1639.000320,1888.810000,hintandextended,nbiot,180 +on3,0,0,24,1,0,802,4320.000000,138,0,15378.000320,1908.050416,hintandextended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,138,0,20502.000320,1843.960000,hintandextended,nbiot,180 +on4,0,0,24,1,0,1154,4320.000000,138,1,24230.000320,1984.360416,hintandextended,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,138,0,39105.000320,1830.700000,hintandextended,nbiot,180 +on12,0,0,25,1,0,540,4500.000000,138,1,13174.600640,1942.545624,hintandextended,nbiot,180 +on2,0,0,26,1,0,1576,4680.000000,138,3,34848.000320,2175.550000,hintandextended,nbiot,180 +on5,0,0,26,1,0,1347,4680.000000,138,3,32102.000320,2106.195000,hintandextended,nbiot,180 +on1,0,0,26,1,0,1166,4680.000000,138,3,26457.000320,2388.295000,hintandextended,nbiot,180 +on7,0,0,24,1,0,695,4335.000320,138,0,12996.000320,1760.000544,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4358.600640,138,0,-1.000000,2055.445872,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4353.201600,139,0,-1.000000,2053.286048,hintandextended,nbiot,180 +on5,0,0,24,1,0,490,4320.000000,139,1,10087.000320,1757.445208,hintandextended,nbiot,180 +on10,0,0,24,1,0,181,4338.000000,139,1,4094.600320,1935.659584,hintandextended,nbiot,180 +on8,0,0,25,1,0,720,4500.000000,139,1,16564.000320,1942.350208,hintandextended,nbiot,180 +on9,0,0,25,1,0,514,4622.000000,139,2,14060.000320,2232.494584,hintandextended,nbiot,180 +on6,0,0,25,1,0,180,4500.000000,139,2,3942.600640,2121.814376,hintandextended,nbiot,180 +on11,0,0,26,1,0,513,4680.000000,139,2,10190.000320,2143.698960,hintandextended,nbiot,180 +on12,0,0,26,1,0,689,4680.000000,139,3,14101.001280,2035.994584,hintandextended,nbiot,180 +on1,0,0,26,1,0,701,4680.000000,139,2,16413.000320,2145.909584,hintandextended,nbiot,180 +on3,0,0,25,1,0,385,4500.000000,139,2,10230.600960,2032.895000,hintandextended,nbiot,180 +on4,0,0,25,1,0,201,4500.000000,139,2,3983.201280,2097.505624,hintandextended,nbiot,180 +on2,0,0,24,1,0,4,4320.000000,139,0,3386.000320,1848.770000,hintandextended,nbiot,180 +on7,0,0,27,1,0,817,4860.000000,139,3,16454.600960,2110.659584,hintandextended,nbiot,180 +on10,0,0,24,1,0,335,4335.000320,140,0,5076.000320,1873.620336,hintandextended,nbiot,180 +on8,0,0,27,1,0,488,4861.000320,140,4,11337.000320,2199.264920,hintandextended,nbiot,180 +on3,0,0,26,1,0,425,4680.000000,140,2,10028.001600,2144.480000,hintandextended,nbiot,180 +on11,0,0,25,1,0,690,4500.000000,140,1,15523.000320,2168.549792,hintandextended,nbiot,180 +on7,0,0,27,1,0,1113,4860.000000,140,3,24916.000960,2269.584376,hintandextended,nbiot,180 +on2,0,0,27,1,0,1055,4860.000000,140,3,24876.000320,2260.549584,hintandextended,nbiot,180 +on12,0,0,25,1,0,513,4500.000000,140,1,9988.000960,1890.999792,hintandextended,nbiot,180 +on5,0,0,27,1,0,1037,4860.000000,140,4,27760.000320,2534.719376,hintandextended,nbiot,180 +on6,0,0,28,1,0,685,5040.000000,140,5,15564.001280,2407.299168,hintandextended,nbiot,180 +on1,0,0,25,1,0,505,4500.000000,140,1,9948.000320,1924.670000,hintandextended,nbiot,180 +on9,0,0,26,1,0,827,4680.000000,140,2,20361.000320,2291.834376,hintandextended,nbiot,180 +on4,0,0,24,1,0,615,4320.000000,140,0,11196.000320,1795.600000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4321.000320,140,0,-1.000000,2040.405328,hintandextended,nbiot,180 +on5,0,0,26,1,0,514,4680.000000,141,2,12134.000320,2193.359168,hintandextended,nbiot,180 +on11,0,0,26,1,0,596,4680.000000,141,2,15591.600960,2333.760416,hintandextended,nbiot,180 +on10,0,0,24,1,0,2418,4350.000320,141,1,47921.000320,1791.350336,hintandextended,nbiot,180 +on2,0,0,27,1,0,547,4930.000000,141,4,12175.600960,2417.509584,hintandextended,nbiot,180 +on6,0,0,25,1,0,882,4500.000000,141,1,18977.000320,2215.350208,hintandextended,nbiot,180 +on4,0,0,25,1,0,653,4500.000000,141,1,15550.000320,2032.309792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,141,0,-1.000000,2040.006032,hintandextended,nbiot,180 +on1,0,0,24,1,0,41,4320.000000,141,0,661.000320,1995.670624,hintandextended,nbiot,180 +on9,0,0,26,1,0,193,4680.000000,141,4,5531.601600,2165.800832,hintandextended,nbiot,180 +on7,0,0,25,1,0,504,4500.000000,141,1,9126.000320,1916.350000,hintandextended,nbiot,180 +on12,0,0,26,1,0,448,4680.000000,141,2,9167.001280,2120.949584,hintandextended,nbiot,180 +on8,0,0,25,1,0,348,4500.000000,141,1,5451.000320,1916.350208,hintandextended,nbiot,180 +on3,0,0,26,1,0,389,4680.000000,141,2,5491.000960,2060.694168,hintandextended,nbiot,180 +on8,0,0,25,1,0,693,4500.000000,142,1,14003.000960,2007.349584,hintandextended,nbiot,180 +on2,0,0,28,1,0,919,5040.000000,142,4,21460.000960,2374.278544,hintandextended,nbiot,180 +on9,0,0,27,1,0,762,4860.000000,142,4,14083.602240,2181.185416,hintandextended,nbiot,180 +on3,0,0,25,1,0,180,4500.000000,142,1,6331.600640,2056.165624,hintandextended,nbiot,180 +on5,0,0,24,1,0,536,4356.000320,142,0,8261.000320,1768.400336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,142,0,-1.000000,2040.005408,hintandextended,nbiot,180 +on4,0,0,28,1,0,899,5040.000000,142,4,22007.000320,2752.449168,hintandextended,nbiot,180 +on7,0,0,26,1,0,664,4680.000000,142,2,14043.001600,2046.783544,hintandextended,nbiot,180 +on10,0,0,25,1,0,0,4500.000000,142,1,2046.600640,2026.265416,hintandextended,nbiot,180 +on1,0,0,26,1,0,426,4680.000000,142,2,15638.000320,2459.599376,hintandextended,nbiot,180 +on11,0,0,26,1,0,907,4838.000000,142,4,21420.000320,2234.394376,hintandextended,nbiot,180 +on6,0,0,28,1,0,936,5040.000000,142,5,21500.601600,2340.740000,hintandextended,nbiot,180 +on12,0,0,24,1,0,536,4462.000000,142,1,13963.000320,1992.800000,hintandextended,nbiot,180 +on12,0,0,24,1,0,506,4363.000000,143,1,11515.000320,1889.500000,hintandextended,nbiot,180 +on10,0,0,25,1,0,300,4500.000000,143,1,5972.000320,1950.670000,hintandextended,nbiot,180 +on6,0,0,27,1,0,345,4860.000000,143,3,7668.000960,2343.099792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4351.000320,143,0,-1.000000,2052.405952,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,143,0,2659.000320,1925.990208,hintandextended,nbiot,180 +on7,0,0,26,1,0,357,4680.000000,143,3,7628.000320,2285.854584,hintandextended,nbiot,180 +on1,0,0,26,1,0,359,4680.000000,143,2,6052.001600,2117.308752,hintandextended,nbiot,180 +on5,0,0,25,1,0,1883,4500.000000,143,1,41368.000320,2064.420000,hintandextended,nbiot,180 +on4,0,0,26,1,0,639,4680.000000,143,2,15059.000320,2191.280000,hintandextended,nbiot,180 +on3,0,0,24,1,0,198,4329.000000,143,1,6092.002240,1848.600208,hintandextended,nbiot,180 +on9,0,0,25,1,0,266,4500.000000,143,1,6012.000960,1891.844792,hintandextended,nbiot,180 +on11,0,0,26,1,0,532,4680.000000,143,2,11555.000960,2178.994584,hintandextended,nbiot,180 +on8,0,0,25,1,0,1390,4500.000000,143,1,26402.000320,1826.000208,hintandextended,nbiot,180 +on4,0,0,25,1,0,616,4500.000000,144,1,12709.000320,2177.910208,hintandextended,nbiot,180 +on11,0,0,26,1,0,1219,4680.000000,144,2,28057.000320,2284.099168,hintandextended,nbiot,180 +on6,0,0,24,1,0,539,4359.000320,144,0,9355.000320,1973.700544,hintandextended,nbiot,180 +on5,0,0,28,1,0,1089,5040.000000,144,4,24653.001280,2729.049168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,144,0,-1.000000,2040.005408,hintandextended,nbiot,180 +on2,0,0,27,1,0,1025,4863.000000,144,6,24612.000320,2310.888752,hintandextended,nbiot,180 +on3,0,0,26,1,0,709,4711.000000,144,3,20027.000960,2294.289168,hintandextended,nbiot,180 +on9,0,0,26,1,0,717,4680.000000,144,2,12789.001600,1967.355416,hintandextended,nbiot,180 +on1,0,0,24,1,0,1001,4320.000000,144,0,19987.000320,1820.300000,hintandextended,nbiot,180 +on8,0,0,25,1,0,693,4500.000000,144,1,12749.000960,2092.500208,hintandextended,nbiot,180 +on7,0,0,24,1,0,810,4320.000000,144,0,16861.000320,1798.849584,hintandextended,nbiot,180 +on10,0,0,28,1,0,1253,5040.000000,144,4,28098.600960,2401.058960,hintandextended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,144,0,9439.000320,1764.010000,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,145,0,2338.000320,1956.020208,hintandextended,nbiot,180 +on2,0,0,25,1,0,192,4500.000000,145,1,6390.600960,2109.919376,hintandextended,nbiot,180 +on7,0,0,26,1,0,713,4680.000000,145,2,16885.000320,2079.349792,hintandextended,nbiot,180 +on11,0,0,25,1,0,976,4623.000000,145,2,22003.000320,2264.549792,hintandextended,nbiot,180 +on8,0,0,25,1,0,724,4583.000000,145,2,13825.000960,1970.545000,hintandextended,nbiot,180 +on9,0,0,26,1,0,433,4680.000000,145,2,9149.000960,2203.110000,hintandextended,nbiot,180 +on4,0,0,24,1,0,2189,4320.000000,145,0,44780.000320,1825.500000,hintandextended,nbiot,180 +on10,0,0,25,1,0,192,4500.000000,145,1,6349.000320,2160.360208,hintandextended,nbiot,180 +on12,0,0,26,1,0,446,4680.000000,145,2,9109.000320,2195.050208,hintandextended,nbiot,180 +on6,0,0,26,1,0,513,4680.000000,145,2,13785.000320,2130.309792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,145,0,-1.000000,2040.006240,hintandextended,nbiot,180 +on5,0,0,25,1,0,2290,4500.000000,145,1,44820.000960,1832.499584,hintandextended,nbiot,180 +on1,0,0,25,1,0,777,4558.000000,145,2,21322.000320,2099.059792,hintandextended,nbiot,180 +on10,0,0,26,1,0,1708,4680.000000,146,2,33334.600960,2164.954792,hintandextended,nbiot,180 +on1,0,0,26,1,0,752,4680.000000,146,2,11608.000960,2079.349584,hintandextended,nbiot,180 +on6,0,0,25,1,0,21,4500.000000,146,1,1525.601600,2068.318960,hintandextended,nbiot,180 +on11,0,0,24,1,0,165,4404.000000,146,1,4541.000320,1993.910000,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,146,0,1403.000320,1842.010208,hintandextended,nbiot,180 +on7,0,0,24,1,0,1780,4340.000320,146,0,33294.000320,1762.000336,hintandextended,nbiot,180 +on12,0,0,26,1,0,477,4680.000000,146,3,8877.601600,2027.741040,hintandextended,nbiot,180 +on2,0,0,25,1,0,24,4500.000000,146,2,1485.600960,2046.155208,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,146,0,1445.000320,1843.960000,hintandextended,nbiot,180 +on4,0,0,26,1,0,573,4680.000000,146,2,8837.000960,2225.599584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,146,0,-1.000000,2040.006032,hintandextended,nbiot,180 +on3,0,0,25,1,0,218,4500.000000,146,1,8797.000320,2109.530416,hintandextended,nbiot,180 +on8,0,0,25,1,0,404,4520.000000,146,2,11568.000320,2089.644792,hintandextended,nbiot,180 +on8,0,0,27,1,0,1102,4860.000000,147,3,22438.600960,2104.550000,hintandextended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,147,0,7351.000320,1754.000208,hintandextended,nbiot,180 +on6,0,0,24,1,0,329,4329.000320,147,0,6689.000320,1757.600336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4342.000320,147,0,-1.000000,2048.803664,hintandextended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,147,0,13927.000320,1757.510208,hintandextended,nbiot,180 +on11,0,0,24,1,0,772,4320.000000,147,0,17239.000320,1772.850208,hintandextended,nbiot,180 +on4,0,0,25,1,0,720,4500.000000,147,1,17371.600640,2091.264584,hintandextended,nbiot,180 +on9,0,0,25,1,0,1042,4500.000000,147,1,21030.000320,1941.050000,hintandextended,nbiot,180 +on1,0,0,24,1,0,697,4337.000320,147,0,13765.000320,1760.800336,hintandextended,nbiot,180 +on7,0,0,27,1,0,737,4860.000000,147,4,21071.001280,2492.860208,hintandextended,nbiot,180 +on10,0,0,25,1,0,1277,4500.000000,147,1,26679.000320,2133.060000,hintandextended,nbiot,180 +on2,0,0,26,1,0,1063,4680.000000,147,2,22397.000320,2194.009168,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,147,0,2997.000320,1754.000208,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,148,0,-1.000000,2014.008112,hintandextended,nbiot,180 +on7,0,0,25,1,0,1255,4605.000000,148,2,27231.000960,2245.130208,hintandextended,nbiot,180 +on2,0,0,24,1,0,607,4320.000000,148,0,12702.000320,1754.000416,hintandextended,nbiot,180 +on11,0,0,26,1,0,1314,4680.000000,148,3,27271.001600,2173.598960,hintandextended,nbiot,180 +on1,0,0,27,1,0,1140,4860.000000,148,3,24481.000320,2319.050000,hintandextended,nbiot,180 +on5,0,0,26,1,0,639,4680.000000,148,3,15853.600960,2290.599792,hintandextended,nbiot,180 +on3,0,0,25,1,0,878,4500.000000,148,1,15812.000320,1959.314584,hintandextended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on12,0,0,24,1,0,1552,4358.600320,148,1,30700.600320,2148.391376,hintandextended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,148,0,9424.000320,1960.570832,hintandextended,nbiot,180 +on9,0,0,24,1,0,985,4320.000000,148,0,20799.000320,1995.409792,hintandextended,nbiot,180 +on6,0,0,26,1,0,1243,4680.000000,148,2,27191.000320,2306.720000,hintandextended,nbiot,180 +on10,0,0,26,1,0,1051,4680.000000,148,2,20840.001280,1965.600000,hintandextended,nbiot,180 +on7,0,0,25,1,0,1081,4500.000000,149,1,23599.600320,2311.420416,hintandextended,nbiot,180 +on6,0,0,26,1,0,505,4680.000000,149,2,9520.000960,2143.049792,hintandextended,nbiot,180 +on9,0,0,25,1,0,122,4500.000000,149,1,6225.000320,2162.830416,hintandextended,nbiot,180 +on5,0,0,24,1,0,1,4458.000000,149,1,3258.600320,2078.820000,hintandextended,nbiot,180 +on1,0,0,26,1,0,576,4680.000000,149,2,12563.000320,2159.950208,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,149,0,3180.000320,1819.260208,hintandextended,nbiot,180 +on4,0,0,25,1,0,1560,4500.000000,149,1,31583.000320,2152.300416,hintandextended,nbiot,180 +on3,0,0,26,1,0,57,4680.000000,149,2,6266.600960,2146.560208,hintandextended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,149,0,23539.000320,1895.960000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4347.200640,149,0,-1.000000,2050.886912,hintandextended,nbiot,180 +on12,0,0,25,1,0,3821,4500.000000,149,2,78031.000320,2097.959792,hintandextended,nbiot,180 +on2,0,0,24,1,0,3729,4320.000000,149,0,74262.000320,1754.000208,hintandextended,nbiot,180 +on8,0,0,25,1,0,336,4500.000000,149,1,9480.000320,1989.800416,hintandextended,nbiot,180 +on8,0,0,26,1,0,694,4680.000000,150,2,14823.000320,2078.699376,hintandextended,nbiot,180 +on4,0,0,28,1,0,879,5040.000000,150,5,24798.000320,2760.898960,hintandextended,nbiot,180 +on11,0,0,24,1,0,631,4320.000000,150,0,13689.000320,1825.500000,hintandextended,nbiot,180 +on2,0,0,26,1,0,630,4680.000000,150,2,13730.001280,2149.744584,hintandextended,nbiot,180 +on9,0,0,24,1,0,407,4320.000000,150,0,8913.000320,1813.409792,hintandextended,nbiot,180 +on1,0,0,24,1,0,1380,4320.000000,150,0,28535.000320,1999.700208,hintandextended,nbiot,180 +on3,0,0,25,1,0,1013,4500.000000,150,1,20874.000320,1881.900416,hintandextended,nbiot,180 +on12,0,0,25,1,0,360,4500.000000,150,1,9082.600640,2179.925416,hintandextended,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,150,0,38936.000320,1953.550000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4349.600640,150,0,-1.000000,2051.846080,hintandextended,nbiot,180 +on10,0,0,25,1,0,524,4524.600960,150,1,8954.600960,2294.610800,hintandextended,nbiot,180 +on6,0,0,25,1,0,541,4500.000000,150,1,13778.600320,2031.009584,hintandextended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,150,0,28615.000320,1841.750208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,151,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on8,0,0,25,1,0,195,4500.000000,151,2,8603.000320,2067.019376,hintandextended,nbiot,180 +on7,0,0,24,1,0,571,4495.000000,151,1,13654.600960,1955.300416,hintandextended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,151,0,342.000320,1984.620416,hintandextended,nbiot,180 +on12,0,0,26,1,0,389,4680.000000,151,2,5536.600960,2049.905208,hintandextended,nbiot,180 +on4,0,0,25,1,0,634,4500.000000,151,1,13613.000320,2051.290000,hintandextended,nbiot,180 +on2,0,0,26,1,0,514,4680.000000,151,2,8644.600960,2098.460000,hintandextended,nbiot,180 +on9,0,0,25,1,0,1076,4500.000000,151,1,20123.000320,1917.000000,hintandextended,nbiot,180 +on6,0,0,26,1,0,1593,4680.000000,151,3,33673.000320,2196.349792,hintandextended,nbiot,180 +on1,0,0,25,1,0,1405,4500.000000,151,1,28528.000320,1903.610208,hintandextended,nbiot,180 +on3,0,0,24,1,0,351,4351.000320,151,0,5496.000320,1766.400544,hintandextended,nbiot,180 +on11,0,0,24,1,0,766,4320.000000,151,0,15211.000320,1815.100000,hintandextended,nbiot,180 +on5,0,0,25,1,0,1517,4500.000000,151,1,31734.000320,1863.700208,hintandextended,nbiot,180 +on7,0,0,24,1,0,227,4320.000000,152,0,4463.000320,1869.310416,hintandextended,nbiot,180 +on3,0,0,25,1,0,653,4500.000000,152,1,15079.000320,2033.350000,hintandextended,nbiot,180 +on5,0,0,25,1,0,910,4500.000000,152,1,20715.601600,2018.659168,hintandextended,nbiot,180 +on10,0,0,26,1,0,747,4680.000000,152,2,14127.000960,2240.873752,hintandextended,nbiot,180 +on12,0,0,24,1,0,976,4320.000000,152,1,20634.000320,1764.659792,hintandextended,nbiot,180 +on11,0,0,26,1,0,604,4694.000320,152,2,14241.000320,2133.698880,hintandextended,nbiot,180 +on9,0,0,25,1,0,941,4500.000000,152,1,15120.001280,1890.999376,hintandextended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,152,0,9994.000320,1868.660208,hintandextended,nbiot,180 +on4,0,0,27,1,0,914,4860.000000,152,3,20675.600960,2262.629376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4334.000320,152,0,-1.000000,2045.604704,hintandextended,nbiot,180 +on2,0,0,24,1,0,635,4320.000000,152,0,14087.000320,1876.459376,hintandextended,nbiot,180 +on1,0,0,26,1,0,1031,4680.000000,152,4,20756.202240,2132.649584,hintandextended,nbiot,180 +on6,0,0,26,1,0,623,4680.000000,152,3,14167.601600,2299.440208,hintandextended,nbiot,180 +on12,0,0,27,1,0,2343,4860.000000,153,4,46319.600960,2332.050416,hintandextended,nbiot,180 +on5,0,0,25,1,0,2160,4500.000000,153,1,42458.000320,2070.660208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,153,0,-1.000000,2040.006032,hintandextended,nbiot,180 +on6,0,0,25,1,0,4087,4500.000000,153,1,81336.000320,1934.550000,hintandextended,nbiot,180 +on7,0,0,24,1,0,3592,4352.000320,153,0,69239.000320,1861.700336,hintandextended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,153,0,17008.000320,1868.660624,hintandextended,nbiot,180 +on4,0,0,24,1,0,2289,4320.000000,153,0,46278.000320,1821.860000,hintandextended,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,153,0,26091.000320,1754.000208,hintandextended,nbiot,180 +on3,0,0,24,1,0,751,4320.000000,153,0,16954.000320,1754.000416,hintandextended,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,153,0,18447.000320,1986.050416,hintandextended,nbiot,180 +on8,0,0,24,1,0,400,4320.000000,153,0,9422.000320,1920.400624,hintandextended,nbiot,180 +on2,0,0,24,1,0,241,4320.000000,153,0,5480.000320,1846.950624,hintandextended,nbiot,180 +on10,0,0,26,1,0,2220,4680.000000,153,2,47962.000320,2416.700000,hintandextended,nbiot,180 +on11,0,0,24,1,0,113,4329.000000,154,1,5614.000320,1853.800000,hintandextended,nbiot,180 +on5,0,0,25,1,0,0,4500.000000,154,1,3294.600640,1914.465832,hintandextended,nbiot,180 +on2,0,0,25,1,0,385,4500.000000,154,2,8947.600960,2047.845624,hintandextended,nbiot,180 +on12,0,0,25,1,0,738,4500.000000,154,1,16513.000320,2022.300000,hintandextended,nbiot,180 +on6,0,0,27,1,0,527,4860.000000,154,3,8854.001600,2377.939792,hintandextended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,154,0,13631.000320,1845.000208,hintandextended,nbiot,180 +on7,0,0,25,1,0,337,4592.000000,154,2,8814.000960,2127.220000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4378.201920,154,0,-1.000000,2063.286592,hintandextended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,154,0,34445.000320,1754.000208,hintandextended,nbiot,180 +on1,0,0,25,1,0,516,4500.000000,154,1,8774.000320,2242.650416,hintandextended,nbiot,180 +on8,0,0,26,1,0,200,4794.000000,154,3,8907.000320,2444.489792,hintandextended,nbiot,180 +on3,0,0,25,1,0,333,4500.000000,154,1,5654.000960,1890.999584,hintandextended,nbiot,180 +on4,0,0,24,1,0,35,4320.000000,154,0,3145.000320,1754.000624,hintandextended,nbiot,180 +on1,0,0,25,1,0,984,4500.000000,155,1,20294.000960,1963.019584,hintandextended,nbiot,180 +on3,0,0,26,1,0,1408,4680.000000,155,2,31033.000320,2132.259584,hintandextended,nbiot,180 +on5,0,0,24,1,0,965,4320.000000,155,0,20254.000320,1801.450000,hintandextended,nbiot,180 +on6,0,0,25,1,0,540,4500.000000,155,1,13955.600640,2140.015416,hintandextended,nbiot,180 +on7,0,0,26,1,0,1041,4680.000000,155,2,21866.000320,2092.739792,hintandextended,nbiot,180 +on8,0,0,27,1,0,1459,4860.000000,155,3,31074.600960,2236.758960,hintandextended,nbiot,180 +on2,0,0,25,1,0,720,4500.000000,155,1,15762.600640,1897.435208,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,155,0,2698.000320,1754.000208,hintandextended,nbiot,180 +on11,0,0,26,1,0,1368,4680.000000,155,2,27128.001280,2081.364584,hintandextended,nbiot,180 +on4,0,0,27,1,0,1238,4860.000000,155,3,27087.000320,2295.844376,hintandextended,nbiot,180 +on10,0,0,27,1,0,1118,4860.000000,155,4,21946.601600,2153.040000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,155,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on12,0,0,27,1,0,1027,4860.000000,155,3,21906.000960,2238.969584,hintandextended,nbiot,180 +on2,0,0,29,1,0,1267,5220.000000,156,5,28555.600960,2680.540000,hintandextended,nbiot,180 +on11,0,0,25,1,0,1053,4500.000000,156,1,20900.000960,1947.549792,hintandextended,nbiot,180 +on1,0,0,25,1,0,710,4500.000000,156,1,11755.000320,1870.070208,hintandextended,nbiot,180 +on10,0,0,24,1,0,624,4433.000000,156,1,15037.000320,1992.380208,hintandextended,nbiot,180 +on3,0,0,24,1,0,2959,4320.000000,156,1,62126.000320,2015.690000,hintandextended,nbiot,180 +on7,0,0,26,1,0,1011,4680.000000,156,2,22099.000320,2310.814792,hintandextended,nbiot,180 +on9,0,0,26,1,0,535,4693.000320,156,4,11908.000320,2313.154712,hintandextended,nbiot,180 +on8,0,0,24,1,0,435,4320.000000,156,0,9816.000320,1754.000208,hintandextended,nbiot,180 +on12,0,0,25,1,0,1327,4500.000000,156,1,28514.000320,1956.259792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4333.000320,156,0,-1.000000,2045.205744,hintandextended,nbiot,180 +on5,0,0,27,1,0,1126,4860.000000,156,3,22140.600960,2266.659792,hintandextended,nbiot,180 +on4,0,0,26,1,0,693,4680.000000,156,2,15077.000960,1963.844792,hintandextended,nbiot,180 +on6,0,0,24,1,0,919,4320.000000,156,0,20860.000320,1832.000208,hintandextended,nbiot,180 +on5,0,0,25,1,0,660,4500.000000,157,1,12652.000320,2037.640000,hintandextended,nbiot,180 +on6,0,0,26,1,0,644,4680.000000,157,2,12692.000960,2252.054168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4332.600320,157,0,-1.000000,2045.045120,hintandextended,nbiot,180 +on7,0,0,24,1,0,164,4344.000320,157,0,1874.000320,1763.600336,hintandextended,nbiot,180 +on10,0,0,26,1,0,640,4680.000000,157,3,12732.601600,2160.209792,hintandextended,nbiot,180 +on3,0,0,27,1,0,956,4860.000000,157,3,21433.000960,2200.359376,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,157,0,6093.000320,1889.850000,hintandextended,nbiot,180 +on1,0,0,25,1,0,84,4500.000000,157,1,1914.600960,2082.945832,hintandextended,nbiot,180 +on9,0,0,26,1,0,1022,4680.000000,157,2,21393.000320,2078.699792,hintandextended,nbiot,180 +on8,0,0,26,1,0,618,4680.000000,157,2,16267.000320,2157.349584,hintandextended,nbiot,180 +on4,0,0,25,1,0,133,4500.000000,157,2,6049.000320,2019.569376,hintandextended,nbiot,180 +on12,0,0,25,1,0,181,4500.000000,157,1,6201.600320,2098.870208,hintandextended,nbiot,180 +on11,0,0,26,1,0,873,4680.000000,157,2,16308.001280,2029.949376,hintandextended,nbiot,180 +on12,0,0,25,1,0,482,4500.000000,158,1,10368.000960,1936.369584,hintandextended,nbiot,180 +on8,0,0,28,1,0,809,5040.000000,158,5,15949.600960,2352.699792,hintandextended,nbiot,180 +on7,0,0,26,1,0,153,4680.000000,158,2,5270.000960,1989.259792,hintandextended,nbiot,180 +on10,0,0,25,1,0,0,4500.000000,158,1,2238.600640,2081.903960,hintandextended,nbiot,180 +on4,0,0,26,1,0,669,4680.000000,158,2,11638.000960,2052.049376,hintandextended,nbiot,180 +on9,0,0,26,1,0,447,4680.000000,158,2,11598.000320,2078.049792,hintandextended,nbiot,180 +on6,0,0,24,1,0,238,4320.000000,158,0,5230.000320,1920.920000,hintandextended,nbiot,180 +on2,0,0,27,1,0,728,4868.000000,158,4,21310.000320,2449.649376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4342.601280,158,0,-1.000000,2049.045504,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4383.000000,158,1,2346.600640,1930.065624,hintandextended,nbiot,180 +on3,0,0,25,1,0,360,4500.000000,158,1,10474.000640,1845.760000,hintandextended,nbiot,180 +on11,0,0,25,1,0,406,4500.000000,158,1,10328.000320,1916.545000,hintandextended,nbiot,180 +on5,0,0,25,1,0,655,4656.000000,158,2,15908.000320,2183.239584,hintandextended,nbiot,180 +on10,0,0,27,1,0,847,4860.000000,159,4,23741.000320,2270.949584,hintandextended,nbiot,180 +on8,0,0,25,1,0,180,4500.000000,159,1,4578.600640,2032.506248,hintandextended,nbiot,180 +on12,0,0,26,1,0,816,4849.000000,159,4,20358.000960,2522.648960,hintandextended,nbiot,180 +on2,0,0,27,1,0,667,4860.000000,159,3,15772.000320,2358.699584,hintandextended,nbiot,180 +on11,0,0,25,1,0,0,4500.000000,159,1,746.600640,2013.395832,hintandextended,nbiot,180 +on6,0,0,25,1,0,0,4500.000000,159,1,893.600640,2138.065416,hintandextended,nbiot,180 +on3,0,0,24,1,0,417,4320.000000,159,0,10159.000320,1807.300000,hintandextended,nbiot,180 +on5,0,0,25,1,0,541,4500.000000,159,1,11872.600320,2178.170416,hintandextended,nbiot,180 +on1,0,0,27,1,0,815,4860.000000,159,3,20318.000320,2242.349584,hintandextended,nbiot,180 +on7,0,0,26,1,0,370,4680.000000,159,2,10199.000960,2219.359792,hintandextended,nbiot,180 +on4,0,0,25,1,0,1580,4500.000000,159,1,31788.000320,2033.350000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4339.201280,159,0,-1.000000,2047.687376,hintandextended,nbiot,180 +on9,0,0,24,1,0,638,4320.000000,159,0,11828.000320,2009.060208,hintandextended,nbiot,180 +on11,0,0,27,1,0,1038,4860.000000,160,3,23496.000320,2311.704584,hintandextended,nbiot,180 +on6,0,0,26,1,0,874,4680.000000,160,2,18854.000320,2092.999584,hintandextended,nbiot,180 +on7,0,0,27,1,0,658,4860.000000,160,5,11382.000320,2282.844168,hintandextended,nbiot,180 +on9,0,0,26,1,0,1123,4680.000000,160,2,18934.001600,1983.150624,hintandextended,nbiot,180 +on8,0,0,25,1,0,541,4500.000000,160,1,16926.000320,2032.700000,hintandextended,nbiot,180 +on4,0,0,25,1,0,1119,4500.000000,160,1,25306.000320,2110.960000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,160,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,160,0,2762.000320,1985.010416,hintandextended,nbiot,180 +on1,0,0,25,1,0,742,4500.000000,160,1,11422.000960,1890.999584,hintandextended,nbiot,180 +on5,0,0,25,1,0,356,4500.000000,160,1,7026.000320,1826.000208,hintandextended,nbiot,180 +on12,0,0,25,1,0,737,4654.000000,160,3,18894.000960,2243.865208,hintandextended,nbiot,180 +on10,0,0,24,1,0,369,4320.000000,160,0,7918.000320,1754.000208,hintandextended,nbiot,180 +on2,0,0,25,1,0,610,4500.000000,160,1,16966.000960,2041.150000,hintandextended,nbiot,180 +on2,0,0,24,1,0,1,4320.000000,161,0,1807.000320,1907.400416,hintandextended,nbiot,180 +on10,0,0,24,1,0,3436,4320.000000,161,0,68949.000320,1834.600000,hintandextended,nbiot,180 +on3,0,0,26,1,0,891,4680.000000,161,2,19242.000320,2273.569792,hintandextended,nbiot,180 +on1,0,0,25,1,0,653,4500.000000,161,1,12855.000320,1978.100416,hintandextended,nbiot,180 +on5,0,0,25,1,0,1078,4500.000000,161,1,24323.000320,2083.335624,hintandextended,nbiot,180 +on7,0,0,24,1,0,525,4345.000320,161,0,9627.000320,2121.760960,hintandextended,nbiot,180 +on4,0,0,26,1,0,1233,4680.000000,161,2,25345.000320,2196.350208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,161,0,-1.000000,2040.007488,hintandextended,nbiot,180 +on11,0,0,25,1,0,1340,4500.000000,161,1,29000.000320,2007.870000,hintandextended,nbiot,180 +on8,0,0,25,1,0,1286,4500.000000,161,1,24363.000960,1890.999584,hintandextended,nbiot,180 +on9,0,0,24,1,0,828,4320.000000,161,0,17713.000320,1917.410208,hintandextended,nbiot,180 +on6,0,0,26,1,0,917,4680.000000,161,2,17754.600960,2248.155416,hintandextended,nbiot,180 +on12,0,0,25,1,0,1132,4650.000000,161,3,24403.601600,1949.506040,hintandextended,nbiot,180 +on11,0,0,24,1,0,655,4373.000000,162,1,14510.000320,1839.745000,hintandextended,nbiot,180 +on12,0,0,26,1,0,1178,4680.000000,162,2,25019.600960,1968.200416,hintandextended,nbiot,180 +on6,0,0,26,1,0,371,4680.000000,162,2,6513.600960,1989.000416,hintandextended,nbiot,180 +on1,0,0,26,1,0,514,4680.000000,162,2,8097.600960,1931.150416,hintandextended,nbiot,180 +on2,0,0,26,1,0,379,4680.000000,162,2,8056.000320,2080.649584,hintandextended,nbiot,180 +on10,0,0,25,1,0,782,4500.000000,162,3,19022.000320,2008.910208,hintandextended,nbiot,180 +on3,0,0,24,1,0,719,4359.000320,162,0,11035.000320,2002.301168,hintandextended,nbiot,180 +on7,0,0,24,1,0,209,4320.000000,162,0,6472.000320,1825.110000,hintandextended,nbiot,180 +on5,0,0,24,1,0,3763,4343.000320,162,0,73492.000320,1763.200336,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,162,0,393.000320,1952.510000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,162,0,-1.000000,2040.005824,hintandextended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,162,0,37833.000320,1794.300208,hintandextended,nbiot,180 +on8,0,0,24,1,0,1139,4320.000000,162,0,24978.000320,1805.609792,hintandextended,nbiot,180 +on5,0,0,25,1,0,1080,4500.000000,163,1,23533.600640,1915.765208,hintandextended,nbiot,180 +on8,0,0,25,1,0,833,4500.000000,163,1,17792.000320,2076.900208,hintandextended,nbiot,180 +on3,0,0,24,1,0,533,4353.000320,163,0,9848.000320,1767.200336,hintandextended,nbiot,180 +on1,0,0,25,1,0,1159,4500.000000,163,1,25584.000320,2068.189376,hintandextended,nbiot,180 +on2,0,0,26,1,0,785,4680.000000,163,2,17832.000960,2078.699792,hintandextended,nbiot,180 +on10,0,0,24,1,0,345,4345.000320,163,0,4652.000320,1908.560128,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,163,0,-1.000000,2040.005200,hintandextended,nbiot,180 +on7,0,0,24,1,0,620,4320.000000,163,1,13143.000320,1862.419792,hintandextended,nbiot,180 +on9,0,0,24,1,0,207,4466.000000,163,1,4692.600960,1812.595624,hintandextended,nbiot,180 +on6,0,0,27,1,0,763,4860.000000,163,3,18362.000320,2297.599376,hintandextended,nbiot,180 +on12,0,0,24,1,0,1247,4347.000320,163,0,23485.000320,1764.800336,hintandextended,nbiot,180 +on4,0,0,24,1,0,1680,4320.000000,163,0,35252.000320,1891.150000,hintandextended,nbiot,180 +on11,0,0,26,1,0,477,4843.000000,163,4,13184.600960,2286.704376,hintandextended,nbiot,180 +on8,0,0,25,1,0,180,4500.000000,164,1,6913.600640,2057.205624,hintandextended,nbiot,180 +on12,0,0,25,1,0,758,4500.000000,164,1,13614.000960,2007.349584,hintandextended,nbiot,180 +on4,0,0,24,1,0,368,4320.000000,164,0,10153.000960,1955.109584,hintandextended,nbiot,180 +on11,0,0,26,1,0,474,4680.000000,164,3,13574.000320,2178.409376,hintandextended,nbiot,180 +on9,0,0,26,1,0,1054,4680.000000,164,2,22775.000320,2102.099792,hintandextended,nbiot,180 +on7,0,0,25,1,0,731,4500.000000,164,1,16189.600960,1943.909792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4348.600960,164,0,-1.000000,2051.445584,hintandextended,nbiot,180 +on2,0,0,26,1,0,925,4680.000000,164,3,16101.601600,2050.490832,hintandextended,nbiot,180 +on6,0,0,24,1,0,521,4341.000320,164,0,10113.000320,1877.710544,hintandextended,nbiot,180 +on10,0,0,27,1,0,883,4860.000000,164,4,21234.000320,2358.244376,hintandextended,nbiot,180 +on3,0,0,25,1,0,721,4500.000000,164,1,16149.600320,2005.659376,hintandextended,nbiot,180 +on1,0,0,27,1,0,743,4860.000000,164,3,16061.000960,2216.999168,hintandextended,nbiot,180 +on5,0,0,27,1,0,678,4860.000000,164,3,16021.000320,2340.109376,hintandextended,nbiot,180 +on5,0,0,26,1,0,344,4680.000000,165,3,9781.000320,2301.389584,hintandextended,nbiot,180 +on7,0,0,26,1,0,676,4680.000000,165,2,14895.000960,2103.140000,hintandextended,nbiot,180 +on10,0,0,24,1,0,2068,4320.000000,165,1,44677.000320,1849.550208,hintandextended,nbiot,180 +on3,0,0,24,1,0,3325,4320.000000,165,0,65155.000320,1906.100000,hintandextended,nbiot,180 +on8,0,0,24,1,0,479,4320.000000,165,0,9724.000320,1819.000832,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4356.000320,165,0,-1.000000,2054.407200,hintandextended,nbiot,180 +on4,0,0,24,1,0,1193,4386.000000,165,1,27701.000320,1916.900000,hintandextended,nbiot,180 +on12,0,0,25,1,0,683,4500.000000,165,1,14855.000320,2167.250000,hintandextended,nbiot,180 +on11,0,0,24,1,0,585,4320.000000,165,0,12406.000320,1824.200208,hintandextended,nbiot,180 +on2,0,0,27,1,0,821,4860.000000,165,3,20551.000320,2512.164584,hintandextended,nbiot,180 +on9,0,0,26,1,0,576,4680.000000,165,2,12447.001280,2310.945208,hintandextended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,165,0,5220.000320,1981.760208,hintandextended,nbiot,180 +on1,0,0,25,1,0,385,4500.000000,165,2,9821.600960,1942.545624,hintandextended,nbiot,180 +on5,0,0,28,1,0,601,5040.000000,166,4,12628.001600,2352.438544,hintandextended,nbiot,180 +on3,0,0,24,1,0,289,4407.000000,166,2,12548.000320,2085.849168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,166,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on2,0,0,26,1,0,475,4680.000000,166,2,15729.000320,2356.509376,hintandextended,nbiot,180 +on9,0,0,25,1,0,147,4500.000000,166,1,6263.000320,2068.710000,hintandextended,nbiot,180 +on4,0,0,24,1,0,141,4321.000320,166,0,1110.000320,1870.750336,hintandextended,nbiot,180 +on1,0,0,25,1,0,24,4500.000000,166,1,1150.600960,1833.605624,hintandextended,nbiot,180 +on6,0,0,27,1,0,822,4860.000000,166,4,15770.600960,2216.803960,hintandextended,nbiot,180 +on7,0,0,27,1,0,542,4860.000000,166,3,12588.000960,2342.319168,hintandextended,nbiot,180 +on11,0,0,25,1,0,332,4500.000000,166,1,6303.000960,1890.999584,hintandextended,nbiot,180 +on10,0,0,26,1,0,158,4680.000000,166,2,8368.000320,2355.600000,hintandextended,nbiot,180 +on12,0,0,25,1,0,335,4500.000000,166,1,8408.000960,2006.698960,hintandextended,nbiot,180 +on8,0,0,26,1,0,237,4680.000000,166,2,6343.001600,1994.525000,hintandextended,nbiot,180 +on9,0,0,26,1,0,398,4680.000000,167,2,5933.000960,2027.998960,hintandextended,nbiot,180 +on1,0,0,24,1,0,287,4320.000000,167,0,5893.000320,1774.800000,hintandextended,nbiot,180 +on10,0,0,24,1,0,1114,4320.000000,167,0,24428.000320,1939.250208,hintandextended,nbiot,180 +on11,0,0,25,1,0,675,4500.000000,167,1,15213.000320,2032.700208,hintandextended,nbiot,180 +on4,0,0,24,1,0,51,4320.000000,167,0,2252.000320,1869.310416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,167,0,-1.000000,2040.006656,hintandextended,nbiot,180 +on2,0,0,24,1,0,1635,4320.000000,167,0,32900.000320,1870.350208,hintandextended,nbiot,180 +on5,0,0,25,1,0,223,4566.000000,167,4,5973.601600,2033.035416,hintandextended,nbiot,180 +on12,0,0,25,1,0,383,4500.000000,167,1,8058.000960,2157.110000,hintandextended,nbiot,180 +on8,0,0,25,1,0,2993,4500.000000,167,1,60266.000320,1917.000000,hintandextended,nbiot,180 +on7,0,0,25,1,0,2012,4500.000000,167,1,42452.000320,2038.550208,hintandextended,nbiot,180 +on3,0,0,25,1,0,393,4500.000000,167,1,8098.001600,2201.960624,hintandextended,nbiot,180 +on6,0,0,26,1,0,334,4680.000000,167,2,8018.000320,2254.850416,hintandextended,nbiot,180 +on11,0,0,24,1,0,1608,4348.000320,168,0,29475.000320,1765.200336,hintandextended,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,168,0,29583.000320,1823.550000,hintandextended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,168,0,21162.000320,1754.000416,hintandextended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,168,0,8781.000320,1902.850416,hintandextended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,168,0,11125.000320,1984.100000,hintandextended,nbiot,180 +on1,0,0,24,1,0,639,4320.000000,168,0,10978.000320,1754.000416,hintandextended,nbiot,180 +on9,0,0,25,1,0,301,4500.000000,168,2,8610.000320,1937.800208,hintandextended,nbiot,180 +on10,0,0,24,1,0,1688,4320.000000,168,0,33044.000320,1777.400000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4358.000640,168,0,-1.000000,2055.204000,hintandextended,nbiot,180 +on7,0,0,24,1,0,1946,4326.000320,168,0,37026.000320,1857.150336,hintandextended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,168,0,37131.000320,1845.000000,hintandextended,nbiot,180 +on3,0,0,25,1,0,346,4500.000000,168,1,5365.000320,1826.000208,hintandextended,nbiot,180 +on8,0,0,24,1,0,154,4334.000320,168,0,439.000320,1874.910336,hintandextended,nbiot,180 +on4,0,0,27,1,0,780,4860.000000,169,4,17671.000320,2241.699376,hintandextended,nbiot,180 +on6,0,0,24,1,0,2036,4320.000000,169,0,40603.000320,1870.350208,hintandextended,nbiot,180 +on11,0,0,25,1,0,2514,4500.000000,169,1,48230.000320,1917.000000,hintandextended,nbiot,180 +on12,0,0,27,1,0,889,4860.000000,169,3,17711.000960,2362.404584,hintandextended,nbiot,180 +on7,0,0,24,1,0,173,4353.000320,169,0,1577.000320,1806.850544,hintandextended,nbiot,180 +on1,0,0,24,1,0,268,4320.000000,169,0,4486.000320,1850.720624,hintandextended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,169,0,20540.000320,1844.350000,hintandextended,nbiot,180 +on9,0,0,26,1,0,986,4680.000000,169,2,20432.000320,2079.999792,hintandextended,nbiot,180 +on2,0,0,24,1,0,366,4484.000000,169,1,9335.601600,2244.700624,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,169,0,-1.000000,2040.006448,hintandextended,nbiot,180 +on3,0,0,24,1,0,696,4336.000320,169,0,13386.000320,1760.400336,hintandextended,nbiot,180 +on10,0,0,26,1,0,412,4680.000000,169,2,9295.600960,2274.220000,hintandextended,nbiot,180 +on8,0,0,25,1,0,463,4500.000000,169,1,9254.000320,1931.105000,hintandextended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,170,0,32753.000320,1845.000000,hintandextended,nbiot,180 +on10,0,0,25,1,0,307,4500.000000,170,1,4734.000320,1933.250416,hintandextended,nbiot,180 +on5,0,0,26,1,0,446,4680.000000,170,2,9755.000320,2079.349792,hintandextended,nbiot,180 +on1,0,0,25,1,0,557,4500.000000,170,1,17815.000320,2224.709792,hintandextended,nbiot,180 +on8,0,0,25,1,0,0,4500.000000,170,1,701.001280,1991.360416,hintandextended,nbiot,180 +on12,0,0,27,1,0,578,4860.000000,170,3,11114.001600,2152.000000,hintandextended,nbiot,180 +on7,0,0,24,1,0,558,4320.000000,170,0,11034.000320,1857.350000,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,170,0,579.000320,1822.250000,hintandextended,nbiot,180 +on4,0,0,26,1,0,556,4680.000000,170,2,11074.000960,2343.769376,hintandextended,nbiot,180 +on3,0,0,25,1,0,513,4500.000000,170,1,9795.000960,1890.999584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4328.001280,170,0,-1.000000,2043.206336,hintandextended,nbiot,180 +on6,0,0,28,1,0,604,5040.000000,170,5,17856.600960,2717.089584,hintandextended,nbiot,180 +on2,0,0,26,1,0,163,4680.000000,170,4,4774.000960,2190.109584,hintandextended,nbiot,180 +on4,0,0,29,1,0,878,5220.000000,171,5,22501.600960,2600.718960,hintandextended,nbiot,180 +on6,0,0,25,1,0,0,4500.000000,171,1,1700.600640,2035.755000,hintandextended,nbiot,180 +on3,0,0,26,1,0,746,4680.000000,171,2,17101.000320,2195.699792,hintandextended,nbiot,180 +on5,0,0,25,1,0,473,4500.000000,171,1,13186.000320,1915.310000,hintandextended,nbiot,180 +on7,0,0,24,1,0,237,4320.000000,171,0,4708.000320,1807.950208,hintandextended,nbiot,180 +on11,0,0,25,1,0,347,4500.000000,171,1,7659.000320,1940.660208,hintandextended,nbiot,180 +on8,0,0,25,1,0,888,4671.000000,171,2,18736.600960,2251.639376,hintandextended,nbiot,180 +on9,0,0,25,1,0,521,4500.000000,171,2,13226.000960,2235.499376,hintandextended,nbiot,180 +on2,0,0,25,1,0,546,4500.000000,171,1,13306.401280,2079.499168,hintandextended,nbiot,180 +on10,0,0,26,1,0,553,4680.000000,171,2,13266.400640,2154.360000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,171,0,-1.000000,2040.005408,hintandextended,nbiot,180 +on1,0,0,24,1,0,1135,4423.000000,171,1,22460.000320,2001.509792,hintandextended,nbiot,180 +on12,0,0,27,1,0,910,4860.000000,171,4,18695.000320,2357.854376,hintandextended,nbiot,180 +on10,0,0,24,1,0,639,4320.000000,172,0,11819.000320,1946.010208,hintandextended,nbiot,180 +on5,0,0,25,1,0,833,4500.000000,172,1,17473.000320,1900.360208,hintandextended,nbiot,180 +on12,0,0,25,1,0,1448,4526.000000,172,2,30218.600960,2040.045624,hintandextended,nbiot,180 +on2,0,0,24,1,0,1447,4320.000000,172,1,30177.000320,1836.159792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4351.000320,172,0,-1.000000,2052.404912,hintandextended,nbiot,180 +on8,0,0,25,1,0,2994,4500.000000,172,1,64502.000320,2033.350000,hintandextended,nbiot,180 +on11,0,0,24,1,0,1244,4344.000320,172,0,24518.000320,1763.600336,hintandextended,nbiot,180 +on7,0,0,27,1,0,1282,4860.000000,172,4,32590.000320,2651.849584,hintandextended,nbiot,180 +on4,0,0,25,1,0,1014,4500.000000,172,1,21332.000320,1986.810416,hintandextended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,172,0,4918.000320,1754.000208,hintandextended,nbiot,180 +on1,0,0,24,1,0,114,4320.000000,172,0,912.000320,1834.600208,hintandextended,nbiot,180 +on3,0,0,25,1,0,901,4500.000000,172,1,21443.600320,1863.310624,hintandextended,nbiot,180 +on6,0,0,26,1,0,1234,4680.000000,172,2,26084.000320,2103.659792,hintandextended,nbiot,180 +on9,0,0,25,1,0,2094,4500.000000,173,1,46648.000320,2033.350000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,173,0,-1.000000,2040.006032,hintandextended,nbiot,180 +on11,0,0,25,1,0,339,4500.000000,173,1,9169.000320,1916.545000,hintandextended,nbiot,180 +on7,0,0,25,1,0,693,4500.000000,173,1,12682.000960,2007.090000,hintandextended,nbiot,180 +on1,0,0,27,1,0,532,4860.000000,173,3,17022.000320,2326.720000,hintandextended,nbiot,180 +on8,0,0,25,1,0,1071,4500.000000,173,1,21064.000320,1916.350000,hintandextended,nbiot,180 +on3,0,0,25,1,0,379,4500.000000,173,1,9209.000960,1960.549792,hintandextended,nbiot,180 +on10,0,0,25,1,0,0,4500.000000,173,1,1738.600640,2213.465624,hintandextended,nbiot,180 +on6,0,0,26,1,0,625,4797.000000,173,3,12722.400640,2162.810208,hintandextended,nbiot,180 +on12,0,0,25,1,0,541,4577.000000,173,2,12642.000320,2157.424792,hintandextended,nbiot,180 +on5,0,0,25,1,0,33,4500.000000,173,2,3768.000320,2198.319584,hintandextended,nbiot,180 +on2,0,0,28,1,0,823,5040.000000,173,4,17062.000960,2402.944584,hintandextended,nbiot,180 +on4,0,0,29,1,0,796,5220.000000,173,5,21104.000960,2567.504168,hintandextended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1426,4500.000000,174,1,27969.000320,2033.480208,hintandextended,nbiot,180 +on6,0,0,24,1,0,2891,4320.000000,174,0,60958.000320,1870.350208,hintandextended,nbiot,180 +on1,0,0,24,1,0,444,4320.000000,174,0,7677.000320,1754.000416,hintandextended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,174,0,19897.000320,2025.700208,hintandextended,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,174,0,24106.000320,1754.000416,hintandextended,nbiot,180 +on4,0,0,25,1,0,1800,4500.000000,174,2,37151.600640,2302.645832,hintandextended,nbiot,180 +on8,0,0,25,1,0,687,4500.000000,174,2,15293.000320,1963.800416,hintandextended,nbiot,180 +on10,0,0,25,1,0,1258,4500.000000,174,1,23980.000320,2058.960832,hintandextended,nbiot,180 +on11,0,0,24,1,0,627,4320.000000,174,0,12137.000320,1791.700000,hintandextended,nbiot,180 +on9,0,0,24,1,0,164,4344.000320,174,0,439.000320,1859.800960,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4323.000320,174,0,-1.000000,2015.206784,hintandextended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,174,0,28112.000320,1754.000208,hintandextended,nbiot,180 +on10,0,0,26,1,0,194,4680.000000,175,4,10425.000320,2488.393336,hintandextended,nbiot,180 +on8,0,0,26,1,0,252,4680.000000,175,2,6548.001600,2121.728960,hintandextended,nbiot,180 +on6,0,0,25,1,0,368,4500.000000,175,1,10505.001600,1921.809376,hintandextended,nbiot,180 +on5,0,0,24,1,0,207,4320.000000,175,0,6468.000320,2019.200208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,175,0,-1.000000,2040.006032,hintandextended,nbiot,180 +on12,0,0,28,1,0,805,5040.000000,175,4,18858.600960,2568.109168,hintandextended,nbiot,180 +on2,0,0,24,1,0,653,4476.000000,175,1,17350.000320,2150.499792,hintandextended,nbiot,180 +on7,0,0,24,1,0,659,4320.000000,175,0,13546.000320,1767.000000,hintandextended,nbiot,180 +on3,0,0,26,1,0,538,4680.000000,175,3,10545.602240,2068.690416,hintandextended,nbiot,180 +on11,0,0,25,1,0,332,4500.000000,175,1,6508.000960,1890.999792,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,175,0,3307.000320,1999.309792,hintandextended,nbiot,180 +on4,0,0,27,1,0,511,4860.000000,175,3,10465.000960,2272.443960,hintandextended,nbiot,180 +on9,0,0,27,1,0,880,4860.000000,175,3,18817.000320,2357.009376,hintandextended,nbiot,180 +on5,0,0,26,1,0,252,4680.000000,176,2,5761.001600,2233.530416,hintandextended,nbiot,180 +on3,0,0,25,1,0,332,4500.000000,176,1,5721.000960,2006.309584,hintandextended,nbiot,180 +on12,0,0,24,1,0,132,4320.000000,176,0,524.000320,1867.230208,hintandextended,nbiot,180 +on7,0,0,26,1,0,546,4680.000000,176,2,8875.000960,2284.099376,hintandextended,nbiot,180 +on6,0,0,24,1,0,615,4320.000000,176,0,12841.000320,1909.869792,hintandextended,nbiot,180 +on11,0,0,26,1,0,267,4680.000000,176,2,8835.000320,2096.444792,hintandextended,nbiot,180 +on9,0,0,26,1,0,787,4680.000000,176,2,17874.000960,2062.449584,hintandextended,nbiot,180 +on10,0,0,25,1,0,894,4500.000000,176,1,17834.000320,1916.350000,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,176,0,694.000320,1758.160000,hintandextended,nbiot,180 +on2,0,0,25,1,0,334,4500.000000,176,1,5681.000320,1944.950000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4350.000320,176,0,-1.000000,2052.004080,hintandextended,nbiot,180 +on1,0,0,28,1,0,607,5040.000000,176,5,12882.600960,2265.014584,hintandextended,nbiot,180 +on4,0,0,25,1,0,901,4595.000000,176,2,20736.000320,2148.439792,hintandextended,nbiot,180 +on10,0,0,24,1,0,95,4320.000000,177,0,309.000320,1869.310416,hintandextended,nbiot,180 +on2,0,0,26,1,0,1167,4680.000000,177,3,26776.000640,2126.409584,hintandextended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,177,0,5806.000320,1754.000416,hintandextended,nbiot,180 +on7,0,0,24,1,0,1173,4320.000000,177,0,23414.000320,1874.899792,hintandextended,nbiot,180 +on8,0,0,26,1,0,1386,4857.000000,177,3,34286.000320,2594.229584,hintandextended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,177,0,7698.000320,1847.860208,hintandextended,nbiot,180 +on4,0,0,24,1,0,273,4320.000000,177,1,5693.000320,1915.850624,hintandextended,nbiot,180 +on9,0,0,26,1,0,1414,4680.000000,177,2,30508.000960,2278.899376,hintandextended,nbiot,180 +on5,0,0,26,1,0,1836,4680.000000,177,2,34327.600960,1961.959584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,177,0,-1.000000,2040.004576,hintandextended,nbiot,180 +on1,0,0,26,1,0,1382,4680.000000,177,2,30468.000320,2259.659792,hintandextended,nbiot,180 +on11,0,0,25,1,0,653,4500.000000,177,1,14081.000320,1887.750416,hintandextended,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,177,0,16517.000320,2000.869792,hintandextended,nbiot,180 +on10,0,0,26,1,0,673,4680.000000,178,2,14783.000640,2135.249584,hintandextended,nbiot,180 +on1,0,0,24,1,0,287,4320.000000,178,0,4637.000320,2038.568960,hintandextended,nbiot,180 +on3,0,0,25,1,0,1727,4500.000000,178,1,33905.000320,1923.500000,hintandextended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,178,0,4723.000320,1761.150208,hintandextended,nbiot,180 +on2,0,0,25,1,0,1231,4500.000000,178,1,25291.000320,1969.000000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,178,0,-1.000000,2040.005824,hintandextended,nbiot,180 +on7,0,0,26,1,0,1056,4680.000000,178,2,20431.000960,2052.698960,hintandextended,nbiot,180 +on5,0,0,28,1,0,949,5040.000000,178,4,22342.000320,2562.714376,hintandextended,nbiot,180 +on6,0,0,26,1,0,626,4680.000000,178,3,13156.000320,2166.255208,hintandextended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,178,0,13236.000320,1838.500000,hintandextended,nbiot,180 +on8,0,0,24,1,0,387,4320.000000,178,0,10205.000320,1791.049792,hintandextended,nbiot,180 +on11,0,0,26,1,0,737,4695.000000,178,4,20391.000320,2285.094584,hintandextended,nbiot,180 +on4,0,0,27,1,0,1008,4860.000000,178,4,20471.601600,2127.495624,hintandextended,nbiot,180 +on3,0,0,25,1,0,873,4500.000000,179,1,17319.000960,1890.999792,hintandextended,nbiot,180 +on12,0,0,27,1,0,709,4914.000000,179,4,18776.600960,2405.845208,hintandextended,nbiot,180 +on4,0,0,25,1,0,360,4500.000000,179,1,8490.000320,1928.310208,hintandextended,nbiot,180 +on5,0,0,26,1,0,221,4680.000000,179,3,8401.600960,2378.220208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,179,0,-1.000000,2040.007488,hintandextended,nbiot,180 +on9,0,0,24,1,0,22,4320.000000,179,0,3290.000320,2049.360624,hintandextended,nbiot,180 +on1,0,0,25,1,0,332,4500.000000,179,1,5856.000320,1917.650416,hintandextended,nbiot,180 +on8,0,0,25,1,0,498,4500.000000,179,1,12317.000320,2149.050000,hintandextended,nbiot,180 +on2,0,0,26,1,0,662,4680.000000,179,3,18735.000320,2350.204168,hintandextended,nbiot,180 +on11,0,0,25,1,0,896,4500.000000,179,1,17279.000320,1916.350208,hintandextended,nbiot,180 +on7,0,0,26,1,0,720,4680.000000,179,2,17359.001600,2312.830416,hintandextended,nbiot,180 +on10,0,0,24,1,0,401,4320.000000,179,0,8360.000320,1927.810416,hintandextended,nbiot,180 +on6,0,0,24,1,0,3649,4320.000000,179,0,74230.000320,1813.150000,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,180,0,3441.000320,1754.000416,hintandextended,nbiot,180 +on4,0,0,24,1,0,630,4320.000000,180,1,13057.000320,1788.450000,hintandextended,nbiot,180 +on2,0,0,26,1,0,893,4680.000000,180,2,19249.600960,2078.309584,hintandextended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,180,0,5595.000320,1781.560208,hintandextended,nbiot,180 +on3,0,0,27,1,0,581,4978.000000,180,5,16992.601600,2620.595000,hintandextended,nbiot,180 +on7,0,0,24,1,0,125,4320.000000,180,0,3263.000320,1867.750000,hintandextended,nbiot,180 +on10,0,0,25,1,0,896,4500.000000,180,1,19208.000320,1916.804792,hintandextended,nbiot,180 +on8,0,0,24,1,0,423,4320.000000,180,0,9799.000320,1803.400000,hintandextended,nbiot,180 +on6,0,0,26,1,0,693,4680.000000,180,2,16912.000320,2194.659792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4358.000320,180,0,-1.000000,2055.204704,hintandextended,nbiot,180 +on9,0,0,25,1,0,805,4500.000000,180,1,16952.000960,1961.979584,hintandextended,nbiot,180 +on12,0,0,26,1,0,513,4680.000000,180,2,9839.000960,2200.313960,hintandextended,nbiot,180 +on11,0,0,24,1,0,351,4351.000320,180,0,5549.000320,1889.510960,hintandextended,nbiot,180 +on12,0,0,24,1,0,115,4320.000000,181,0,2694.000320,1870.350000,hintandextended,nbiot,180 +on5,0,0,25,1,0,900,4500.000000,181,1,16960.000320,1915.960000,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,181,0,2774.000320,1975.650624,hintandextended,nbiot,180 +on4,0,0,25,1,0,540,4500.000000,181,1,11400.600640,1970.755416,hintandextended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,181,0,19143.000320,1870.350416,hintandextended,nbiot,180 +on10,0,0,24,1,0,4285,4325.000000,181,0,84827.000000,1756.000000,hintandextended,nbiot,180 +on11,0,0,26,1,0,1180,4680.000000,181,2,24122.600960,1976.650416,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4328.000640,181,0,-1.000000,2017.206288,hintandextended,nbiot,180 +on9,0,0,24,1,0,1355,4320.000000,181,0,27554.000320,1969.150416,hintandextended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on7,0,0,24,1,0,1151,4320.000000,181,0,24081.000320,1886.859792,hintandextended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,181,0,7910.000320,1978.250000,hintandextended,nbiot,180 +on6,0,0,26,1,0,875,4680.000000,181,2,17001.600960,2298.400624,hintandextended,nbiot,180 +on8,0,0,25,1,0,1440,4500.000000,182,2,32904.000320,2058.700000,hintandextended,nbiot,180 +on5,0,0,24,1,0,635,4320.000000,182,0,13934.000320,1785.850624,hintandextended,nbiot,180 +on6,0,0,24,1,0,1143,4320.000000,182,0,23420.000320,1804.050000,hintandextended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,182,0,14048.000320,1804.960000,hintandextended,nbiot,180 +on7,0,0,25,1,0,1954,4500.000000,182,1,39329.000320,1918.300000,hintandextended,nbiot,180 +on4,0,0,25,1,0,2526,4500.000000,182,1,53164.000320,2028.150000,hintandextended,nbiot,180 +on1,0,0,25,1,0,833,4500.000000,182,1,19131.000320,1826.000208,hintandextended,nbiot,180 +on12,0,0,25,1,0,1486,4500.000000,182,1,31684.000320,1826.000208,hintandextended,nbiot,180 +on9,0,0,24,1,0,62,4320.000000,182,0,3101.000320,1949.260624,hintandextended,nbiot,180 +on11,0,0,25,1,0,653,4500.000000,182,1,14446.000320,1976.800208,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,182,0,6422.000320,2081.470208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4323.000320,182,0,-1.000000,2041.205328,hintandextended,nbiot,180 +on10,0,0,25,1,0,1800,4500.000000,182,1,39419.600640,1994.545416,hintandextended,nbiot,180 +on12,0,0,24,1,0,1037,4320.000000,183,0,21246.000320,1754.000208,hintandextended,nbiot,180 +on9,0,0,24,1,0,559,4320.000000,183,1,11742.000320,1881.010416,hintandextended,nbiot,180 +on7,0,0,26,1,0,2066,4680.000000,183,3,42408.000320,2118.349792,hintandextended,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,183,0,42524.000320,1907.660000,hintandextended,nbiot,180 +on5,0,0,25,1,0,2173,4500.000000,183,1,46323.000320,1976.279792,hintandextended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,183,0,11918.000320,2047.020208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4356.000320,183,0,-1.000000,2054.404704,hintandextended,nbiot,180 +on3,0,0,25,1,0,766,4500.000000,183,1,17146.000320,2057.660416,hintandextended,nbiot,180 +on10,0,0,24,1,0,2160,4320.000000,183,0,46447.000320,1845.000000,hintandextended,nbiot,180 +on1,0,0,24,1,0,370,4320.000000,183,0,7601.000320,1820.950208,hintandextended,nbiot,180 +on2,0,0,24,1,0,258,4320.000000,183,0,5280.000320,1808.860624,hintandextended,nbiot,180 +on11,0,0,25,1,0,1834,4500.000000,183,1,39016.000320,1948.330208,hintandextended,nbiot,180 +on4,0,0,26,1,0,1040,4680.000000,183,3,22887.000320,2211.820208,hintandextended,nbiot,180 +on9,0,0,27,1,0,1094,4860.000000,184,4,22494.000960,2126.844584,hintandextended,nbiot,180 +on2,0,0,24,1,0,1935,4320.000000,184,0,36542.000320,1757.250000,hintandextended,nbiot,180 +on7,0,0,25,1,0,900,4500.000000,184,1,19629.601600,1914.010416,hintandextended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,184,0,17521.000320,1868.660208,hintandextended,nbiot,180 +on3,0,0,24,1,0,1367,4320.000000,184,0,26447.000320,1774.800000,hintandextended,nbiot,180 +on1,0,0,24,1,0,189,4320.000000,184,0,6234.000320,1754.000208,hintandextended,nbiot,180 +on10,0,0,25,1,0,1044,4500.000000,184,1,19503.000320,1915.959792,hintandextended,nbiot,180 +on6,0,0,26,1,0,1348,4680.000000,184,2,29423.000320,2196.154584,hintandextended,nbiot,180 +on4,0,0,27,1,0,1617,4860.000000,184,3,34682.000320,2358.699584,hintandextended,nbiot,180 +on12,0,0,27,1,0,1187,4860.000000,184,4,29464.600960,2501.570000,hintandextended,nbiot,180 +on11,0,0,26,1,0,1057,4680.000000,184,2,19544.600960,2249.519376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,184,0,-1.000000,2040.004368,hintandextended,nbiot,180 +on8,0,0,24,1,0,1085,4320.000000,184,0,22454.000320,1957.450000,hintandextended,nbiot,180 +on10,0,0,25,1,0,932,4500.000000,185,1,24141.000320,2118.890000,hintandextended,nbiot,180 +on2,0,0,24,1,0,24,4320.000000,185,0,1938.000320,1869.310624,hintandextended,nbiot,180 +on3,0,0,26,1,0,690,4680.000000,185,3,16220.000320,2171.389376,hintandextended,nbiot,180 +on4,0,0,24,1,0,268,4321.000320,185,1,5706.000320,1754.400336,hintandextended,nbiot,180 +on9,0,0,25,1,0,1904,4500.000000,185,1,38192.000320,2070.270000,hintandextended,nbiot,180 +on11,0,0,26,1,0,153,4680.000000,185,3,5746.600960,2247.700624,hintandextended,nbiot,180 +on8,0,0,26,1,0,888,4680.000000,185,2,16260.000960,2228.849376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,185,0,-1.000000,2040.006240,hintandextended,nbiot,180 +on12,0,0,24,1,0,705,4345.000320,185,0,14086.000320,1764.000544,hintandextended,nbiot,180 +on5,0,0,25,1,0,550,4500.000000,185,1,14166.001600,2056.099584,hintandextended,nbiot,180 +on7,0,0,26,1,0,720,4680.000000,185,2,14126.000960,2107.300000,hintandextended,nbiot,180 +on6,0,0,25,1,0,722,4500.000000,185,1,16300.001600,2091.458752,hintandextended,nbiot,180 +on1,0,0,25,1,0,720,4500.000000,185,1,16358.002240,2058.700208,hintandextended,nbiot,180 +on3,0,0,25,1,0,419,4637.000000,186,2,9918.000960,2135.600416,hintandextended,nbiot,180 +on9,0,0,24,1,0,213,4320.000000,186,0,5565.000320,1929.370208,hintandextended,nbiot,180 +on12,0,0,25,1,0,823,4500.000000,186,1,17834.000320,2116.550416,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,186,0,-1.000000,2014.009360,hintandextended,nbiot,180 +on6,0,0,26,1,0,806,4680.000000,186,3,18848.000320,2105.350208,hintandextended,nbiot,180 +on2,0,0,25,1,0,259,4500.000000,186,1,5606.600960,1891.000000,hintandextended,nbiot,180 +on5,0,0,24,1,0,94,4320.000000,186,0,2319.000320,1949.910416,hintandextended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,186,0,12208.000320,2305.461456,hintandextended,nbiot,180 +on1,0,0,25,1,0,415,4500.000000,186,1,9958.001600,2050.251040,hintandextended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on11,0,0,25,1,0,473,4500.000000,186,1,9878.000320,1889.049792,hintandextended,nbiot,180 +on4,0,0,26,1,0,514,4680.000000,186,2,12108.000320,2197.195416,hintandextended,nbiot,180 +on10,0,0,24,1,0,2453,4393.000000,186,1,52193.000320,2009.400416,hintandextended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on8,0,0,26,1,0,366,4783.000000,187,3,10623.000960,2415.454584,hintandextended,nbiot,180 +on10,0,0,24,1,0,309,4320.000000,187,0,6904.000320,1759.460208,hintandextended,nbiot,180 +on12,0,0,25,1,0,1553,4500.000000,187,2,35596.000320,2208.850208,hintandextended,nbiot,180 +on9,0,0,26,1,0,156,4680.000000,187,3,10583.000320,2392.650416,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,187,0,-1.000000,2014.008112,hintandextended,nbiot,180 +on3,0,0,24,1,0,4140,4320.000000,187,0,84969.000000,1754.000000,hintandextended,nbiot,180 +on4,0,0,26,1,0,359,4680.000000,187,2,6984.400640,2037.750000,hintandextended,nbiot,180 +on11,0,0,25,1,0,684,4500.000000,187,1,11812.000320,2254.610000,hintandextended,nbiot,180 +on2,0,0,28,1,0,428,5040.000000,187,4,11853.600960,2643.185208,hintandextended,nbiot,180 +on7,0,0,25,1,0,231,4500.000000,187,1,6944.000960,1996.950416,hintandextended,nbiot,180 +on6,0,0,24,1,0,136,4320.000000,187,0,1995.000320,1795.210416,hintandextended,nbiot,180 +on5,0,0,24,1,0,1446,4320.000000,187,0,30304.000320,1754.000416,hintandextended,nbiot,180 +on5,0,0,27,1,0,632,4860.000000,188,3,16992.000320,2367.865000,hintandextended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,188,0,40103.000320,1809.900000,hintandextended,nbiot,180 +on3,0,0,26,1,0,394,4680.000000,188,2,9900.400640,2335.255000,hintandextended,nbiot,180 +on1,0,0,25,1,0,513,4500.000000,188,1,9860.000960,1955.090208,hintandextended,nbiot,180 +on9,0,0,24,1,0,2874,4354.000320,188,0,55802.000320,1883.950336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4353.600320,188,0,-1.000000,2053.447824,hintandextended,nbiot,180 +on11,0,0,25,1,0,0,4500.000000,188,1,2427.600640,2007.025416,hintandextended,nbiot,180 +on10,0,0,25,1,0,745,4500.000000,188,2,17116.600960,2132.345416,hintandextended,nbiot,180 +on12,0,0,27,1,0,503,5022.000000,188,5,17076.000320,2830.790000,hintandextended,nbiot,180 +on6,0,0,26,1,0,576,4680.000000,188,3,13959.000320,2181.724584,hintandextended,nbiot,180 +on2,0,0,25,1,0,1,4500.000000,188,1,2517.600320,2039.199792,hintandextended,nbiot,180 +on7,0,0,24,1,0,464,4320.000000,188,0,9820.000320,1820.560208,hintandextended,nbiot,180 +on4,0,0,26,1,0,564,4680.000000,188,2,9940.401280,2014.350416,hintandextended,nbiot,180 +on2,0,0,26,1,0,628,4680.000000,189,2,16455.000320,2388.359792,hintandextended,nbiot,180 +on11,0,0,24,1,0,1462,4320.000000,189,0,31372.000320,1886.600000,hintandextended,nbiot,180 +on7,0,0,25,1,0,579,4500.000000,189,1,12517.000960,2002.409376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4324.000320,189,0,-1.000000,2041.605328,hintandextended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,189,0,12621.000320,1897.000000,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,189,0,2870.000320,1754.260416,hintandextended,nbiot,180 +on5,0,0,27,1,0,213,4860.000000,189,4,7751.600960,2310.860208,hintandextended,nbiot,180 +on10,0,0,26,1,0,358,4680.000000,189,3,7710.000320,2182.699376,hintandextended,nbiot,180 +on3,0,0,26,1,0,358,4680.000000,189,2,6625.001600,2105.155208,hintandextended,nbiot,180 +on4,0,0,24,1,0,198,4320.000000,189,0,6545.000320,1832.650000,hintandextended,nbiot,180 +on9,0,0,26,1,0,816,4680.000000,189,2,16496.600960,2192.190208,hintandextended,nbiot,180 +on12,0,0,25,1,0,333,4500.000000,189,1,6585.000960,1890.999584,hintandextended,nbiot,180 +on8,0,0,25,1,0,508,4500.000000,189,1,12477.000320,2032.700000,hintandextended,nbiot,180 +on11,0,0,25,1,0,485,4500.000000,190,1,11232.000320,2030.749792,hintandextended,nbiot,180 +on8,0,0,25,1,0,997,4500.000000,190,1,18662.000320,2049.600000,hintandextended,nbiot,180 +on10,0,0,24,1,0,1540,4320.000000,190,0,32057.000320,1882.310000,hintandextended,nbiot,180 +on7,0,0,25,1,0,180,4500.000000,190,1,5120.600640,2067.475416,hintandextended,nbiot,180 +on3,0,0,25,1,0,202,4500.000000,190,1,7476.000320,2135.659792,hintandextended,nbiot,180 +on12,0,0,25,1,0,1661,4500.000000,190,2,33319.000320,2110.050000,hintandextended,nbiot,180 +on9,0,0,25,1,0,207,4500.000000,190,1,5162.201280,2073.260208,hintandextended,nbiot,180 +on4,0,0,25,1,0,720,4500.000000,190,2,16279.201600,2047.714168,hintandextended,nbiot,180 +on2,0,0,25,1,0,540,4500.000000,190,1,11393.000640,2208.069376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4346.202240,190,0,-1.000000,2050.486512,hintandextended,nbiot,180 +on1,0,0,27,1,0,804,4860.000000,190,5,16175.600960,2084.009584,hintandextended,nbiot,180 +on6,0,0,25,1,0,642,4500.000000,190,1,16134.000320,1931.169376,hintandextended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,190,0,18801.000320,1897.650416,hintandextended,nbiot,180 +on7,0,0,25,1,0,527,4500.000000,191,1,8629.000320,2007.610208,hintandextended,nbiot,180 +on11,0,0,25,1,0,659,4500.000000,191,1,12813.000320,2097.049792,hintandextended,nbiot,180 +on8,0,0,25,1,0,954,4628.000000,191,2,19066.000320,2278.509792,hintandextended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on4,0,0,25,1,0,2093,4500.000000,191,1,40793.000320,1917.000208,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,191,0,-1.000000,2014.008736,hintandextended,nbiot,180 +on5,0,0,24,1,0,312,4320.000000,191,0,3786.000320,1869.310624,hintandextended,nbiot,180 +on10,0,0,24,1,0,2550,4320.000000,191,0,52119.000320,1825.500000,hintandextended,nbiot,180 +on2,0,0,26,1,0,528,4680.000000,191,3,12854.600960,2260.570832,hintandextended,nbiot,180 +on9,0,0,24,1,0,832,4320.000000,191,0,17612.000320,1932.100416,hintandextended,nbiot,180 +on12,0,0,27,1,0,953,5002.000000,191,4,23919.000320,2915.350000,hintandextended,nbiot,180 +on3,0,0,24,1,0,728,4320.000000,191,0,17652.000960,1839.799792,hintandextended,nbiot,180 +on1,0,0,27,1,0,855,4860.000000,191,3,19107.600960,2224.800416,hintandextended,nbiot,180 +on7,0,0,28,1,0,1391,5040.000000,192,5,35627.000320,2629.729376,hintandextended,nbiot,180 +on12,0,0,24,1,0,220,4320.000000,192,1,5732.200320,1811.330208,hintandextended,nbiot,180 +on9,0,0,26,1,0,1464,4680.000000,192,2,27958.001600,1979.445832,hintandextended,nbiot,180 +on8,0,0,24,1,0,4087,4320.000000,192,0,81525.000320,1839.800000,hintandextended,nbiot,180 +on6,0,0,24,1,0,104,4320.000000,192,0,967.000320,2005.550000,hintandextended,nbiot,180 +on4,0,0,25,1,0,1492,4668.000000,192,3,31029.000320,2275.594376,hintandextended,nbiot,180 +on5,0,0,25,1,0,1401,4500.000000,192,1,27878.000320,2035.950624,hintandextended,nbiot,180 +on2,0,0,25,1,0,1621,4500.000000,192,1,35710.600320,2029.710208,hintandextended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,192,0,19896.000320,1959.920000,hintandextended,nbiot,180 +on3,0,0,25,1,0,915,4500.000000,192,1,22248.000320,1975.891040,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4343.000320,192,0,-1.000000,2049.208656,hintandextended,nbiot,180 +on11,0,0,25,1,0,348,4538.800960,192,2,5773.800960,1919.066008,hintandextended,nbiot,180 +on1,0,0,25,1,0,1235,4500.000000,192,1,27918.000960,2162.049792,hintandextended,nbiot,180 +on9,0,0,26,1,0,1209,4680.000000,193,2,28551.000320,2251.990000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4346.000320,193,0,-1.000000,2050.407408,hintandextended,nbiot,180 +on8,0,0,25,1,0,1142,4500.000000,193,1,25057.000320,2105.500416,hintandextended,nbiot,180 +on6,0,0,27,1,0,689,4860.000000,193,3,18713.000320,2631.699792,hintandextended,nbiot,180 +on12,0,0,24,1,0,698,4338.000320,193,0,13335.000320,1877.550752,hintandextended,nbiot,180 +on10,0,0,25,1,0,533,4500.000000,193,1,9666.000320,2174.270208,hintandextended,nbiot,180 +on3,0,0,25,1,0,305,4500.000000,193,1,4347.000320,1826.845208,hintandextended,nbiot,180 +on7,0,0,25,1,0,388,4500.000000,193,1,9707.600960,2057.660832,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,193,0,2392.000320,1871.000416,hintandextended,nbiot,180 +on4,0,0,25,1,0,2843,4500.000000,193,1,56650.000320,1917.000000,hintandextended,nbiot,180 +on1,0,0,26,1,0,1265,4717.000000,193,4,28591.000960,2318.595000,hintandextended,nbiot,180 +on5,0,0,32,1,0,1125,5760.000000,193,10,30034.000320,3298.888336,hintandextended,nbiot,180 +on2,0,0,25,1,0,693,4500.000000,193,1,13375.000960,1890.999792,hintandextended,nbiot,180 +on12,0,0,27,1,0,841,4860.000000,194,3,20833.600960,2249.435000,hintandextended,nbiot,180 +on11,0,0,26,1,0,500,4680.000000,194,2,10926.000320,2207.789584,hintandextended,nbiot,180 +on4,0,0,26,1,0,266,4681.000320,194,3,4749.000320,2014.880336,hintandextended,nbiot,180 +on10,0,0,25,1,0,513,4500.000000,194,1,10242.000960,1890.999584,hintandextended,nbiot,180 +on8,0,0,27,1,0,606,4860.000000,194,3,16901.000320,2423.894584,hintandextended,nbiot,180 +on6,0,0,25,1,0,406,4500.000000,194,1,10202.000320,1916.350000,hintandextended,nbiot,180 +on1,0,0,24,1,0,48,4320.000000,194,0,2243.000320,1835.250208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4353.000640,194,0,-1.000000,2053.204416,hintandextended,nbiot,180 +on2,0,0,27,1,0,1065,4860.000000,194,4,23121.000320,2318.659376,hintandextended,nbiot,180 +on3,0,0,26,1,0,770,4680.000000,194,2,20792.000320,2272.529584,hintandextended,nbiot,180 +on7,0,0,25,1,0,226,4500.000000,194,1,4608.000320,1883.655208,hintandextended,nbiot,180 +on9,0,0,27,1,0,458,4860.000000,194,3,10967.600960,2395.425208,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,194,0,2415.000320,1759.460208,hintandextended,nbiot,180 +on9,0,0,26,1,0,2097,4680.000000,195,3,45732.000320,2219.490416,hintandextended,nbiot,180 +on10,0,0,24,1,0,436,4320.000000,195,0,8135.000320,1975.910624,hintandextended,nbiot,180 +on5,0,0,26,1,0,868,4680.000000,195,4,20776.000320,2317.964376,hintandextended,nbiot,180 +on1,0,0,25,1,0,873,4500.000000,195,1,17709.000960,1890.999792,hintandextended,nbiot,180 +on7,0,0,24,1,0,370,4445.000000,195,2,11902.000320,2259.650000,hintandextended,nbiot,180 +on12,0,0,24,1,0,4137,4357.000320,195,0,79740.000320,1768.800336,hintandextended,nbiot,180 +on11,0,0,25,1,0,842,4500.000000,195,1,17669.000320,2091.850208,hintandextended,nbiot,180 +on3,0,0,26,1,0,804,4680.000000,195,2,17749.001600,2136.160208,hintandextended,nbiot,180 +on8,0,0,26,1,0,796,4680.000000,195,2,20817.600960,2388.100624,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,195,0,-1.000000,2040.008736,hintandextended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,195,1,20877.600640,1924.105416,hintandextended,nbiot,180 +on6,0,0,25,1,0,1987,4500.000000,195,1,42997.000320,1963.800416,hintandextended,nbiot,180 +on4,0,0,24,1,0,1234,4334.000320,195,0,22202.000320,1875.950544,hintandextended,nbiot,180 +on3,0,0,24,1,0,209,4320.000000,196,0,4212.000320,1941.850208,hintandextended,nbiot,180 +on10,0,0,25,1,0,348,4500.000000,196,1,7901.000320,1980.115000,hintandextended,nbiot,180 +on9,0,0,25,1,0,355,4535.000960,196,1,4252.000960,1930.610176,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4339.000320,196,0,-1.000000,2047.605536,hintandextended,nbiot,180 +on12,0,0,25,1,0,474,4500.000000,196,1,11421.000320,2128.639584,hintandextended,nbiot,180 +on4,0,0,26,1,0,476,4680.000000,196,2,11462.001280,2295.150000,hintandextended,nbiot,180 +on11,0,0,25,1,0,697,4500.000000,196,1,16989.000960,2163.999584,hintandextended,nbiot,180 +on2,0,0,26,1,0,262,4680.000000,196,2,7942.600960,2327.258752,hintandextended,nbiot,180 +on7,0,0,27,1,0,620,4986.000000,196,4,24205.000320,2786.294168,hintandextended,nbiot,180 +on8,0,0,25,1,0,379,4500.000000,196,2,7983.201600,1832.305832,hintandextended,nbiot,180 +on5,0,0,27,1,0,1242,4937.000000,196,5,34941.000320,2493.499584,hintandextended,nbiot,180 +on6,0,0,27,1,0,737,4860.000000,196,3,20281.000320,2472.449168,hintandextended,nbiot,180 +on1,0,0,24,1,0,630,4371.000000,196,1,16949.000320,1943.920208,hintandextended,nbiot,180 +on6,0,0,25,1,0,2574,4500.000000,197,1,53419.000320,1915.700208,hintandextended,nbiot,180 +on10,0,0,25,1,0,680,4500.000000,197,1,12325.000320,2033.350624,hintandextended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on11,0,0,24,1,0,938,4320.000000,197,0,18641.000320,1986.700208,hintandextended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,197,0,18793.000320,1827.450000,hintandextended,nbiot,180 +on1,0,0,25,1,0,1080,4500.000000,197,1,22397.600640,1839.195832,hintandextended,nbiot,180 +on4,0,0,24,1,0,1671,4320.000000,197,0,32913.000320,1767.650416,hintandextended,nbiot,180 +on3,0,0,25,1,0,376,4500.000000,197,1,10290.600320,1826.000624,hintandextended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,197,0,12496.000320,2128.010416,hintandextended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,197,0,10250.000320,1906.360416,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4380.601280,197,0,-1.000000,2038.246960,hintandextended,nbiot,180 +on5,0,0,25,1,0,180,4500.000000,197,1,6251.600640,2001.305832,hintandextended,nbiot,180 +on12,0,0,24,1,0,36,4320.000000,197,0,1853.000320,1792.350416,hintandextended,nbiot,180 +on2,0,0,27,1,0,602,4860.000000,198,3,14904.000320,2241.049376,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,198,0,3039.000320,1788.059792,hintandextended,nbiot,180 +on9,0,0,28,1,0,527,5040.000000,198,4,11980.000960,2497.193752,hintandextended,nbiot,180 +on4,0,0,25,1,0,215,4500.000000,198,1,4549.401280,1890.999584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,198,0,-1.000000,2040.004784,hintandextended,nbiot,180 +on3,0,0,25,1,0,114,4500.000000,198,1,4429.000320,2134.814792,hintandextended,nbiot,180 +on11,0,0,24,1,0,842,4483.000000,198,1,19080.200320,2014.069792,hintandextended,nbiot,180 +on7,0,0,25,1,0,154,4500.000000,198,1,4469.000960,2123.440000,hintandextended,nbiot,180 +on6,0,0,27,1,0,639,4860.000000,198,4,12020.601600,2119.890624,hintandextended,nbiot,180 +on12,0,0,26,1,0,425,4680.000000,198,2,4509.400640,1936.740000,hintandextended,nbiot,180 +on10,0,0,25,1,0,402,4500.000000,198,1,9597.000960,2006.699584,hintandextended,nbiot,180 +on8,0,0,27,1,0,423,4860.000000,198,3,11940.000320,2241.244584,hintandextended,nbiot,180 +on1,0,0,24,1,0,98,4483.000000,198,4,9557.000320,2278.490000,hintandextended,nbiot,180 +on9,0,0,25,1,0,634,4500.000000,199,1,11762.600960,2093.995416,hintandextended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,199,0,6466.000320,1979.160416,hintandextended,nbiot,180 +on8,0,0,25,1,0,1118,4500.000000,199,1,22289.000960,1933.900416,hintandextended,nbiot,180 +on12,0,0,25,1,0,720,4500.000000,199,1,15640.000320,2021.000000,hintandextended,nbiot,180 +on6,0,0,25,1,0,539,4500.000000,199,1,10590.000320,1942.350208,hintandextended,nbiot,180 +on10,0,0,25,1,0,2520,4500.000000,199,1,49551.000320,1917.000000,hintandextended,nbiot,180 +on11,0,0,25,1,0,803,4500.000000,199,1,15578.600960,2113.560208,hintandextended,nbiot,180 +on1,0,0,24,1,0,1080,4320.000000,199,0,22249.000320,1904.800208,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,199,0,3195.000320,1869.700832,hintandextended,nbiot,180 +on4,0,0,24,1,0,680,4320.000320,199,0,11722.000320,1821.600544,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4323.000320,199,0,-1.000000,2041.206784,hintandextended,nbiot,180 +on7,0,0,24,1,0,793,4320.000000,199,0,15537.000320,1851.760208,hintandextended,nbiot,180 +on3,0,0,25,1,0,1037,4500.000000,199,1,21264.000320,1917.000000,hintandextended,nbiot,180 +on6,0,0,25,1,0,1074,4500.000000,200,1,20226.000320,1851.999792,hintandextended,nbiot,180 +on4,0,0,26,1,0,375,4680.000000,200,2,11775.000320,2196.544792,hintandextended,nbiot,180 +on9,0,0,25,1,0,2761,4500.000000,200,1,58628.000320,2041.799584,hintandextended,nbiot,180 +on1,0,0,25,1,0,834,4500.000000,200,1,16001.000320,1941.310416,hintandextended,nbiot,180 +on8,0,0,25,1,0,13,4500.000000,200,2,4576.000320,2050.250416,hintandextended,nbiot,180 +on11,0,0,24,1,0,377,4320.000000,200,0,8518.000320,2000.610208,hintandextended,nbiot,180 +on10,0,0,25,1,0,368,4615.000000,200,2,8559.600960,2234.700416,hintandextended,nbiot,180 +on2,0,0,24,1,0,2700,4320.000000,200,0,55798.000320,2072.110416,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,200,0,-1.000000,2014.006448,hintandextended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,24,1,0,3310,4320.000000,200,0,66154.000320,1754.000208,hintandextended,nbiot,180 +on12,0,0,25,1,0,900,4500.000000,200,2,22026.000320,2124.350208,hintandextended,nbiot,180 +on3,0,0,24,1,0,111,4320.000000,200,0,3372.000320,2131.520208,hintandextended,nbiot,180 diff --git a/simulations/results/scenarios/baseline.json b/simulations/results/scenarios/baseline.json new file mode 100644 index 0000000..603509a --- /dev/null +++ b/simulations/results/scenarios/baseline.json @@ -0,0 +1,58 @@ +{ + "seed": 200, + "bitrate": "0.5MBps", + "latency": 0.01, + "extended": false, + "hint_size": 8, + "nodes": { + "on0": { + "use_hint": false, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": true, + "data_size": 1000000, + "wake_ts": [ + 5, + 50 + ], + "wake_duration": [ + 10, + 10 + ] + }, + "on1": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": false, + "data_size": 1000000, + "wake_ts": [ + 0, + 20 + ], + "wake_duration": [ + 10, + 10 + ] + }, + "on2": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": false, + "data_size": 1000000, + "wake_ts": [ + 25 + ], + "wake_duration": [ + 10 + ] + } + } +} \ No newline at end of file diff --git a/simulations/results/scenarios/extended.json b/simulations/results/scenarios/extended.json new file mode 100644 index 0000000..6408ef7 --- /dev/null +++ b/simulations/results/scenarios/extended.json @@ -0,0 +1,58 @@ +{ + "seed": 200, + "bitrate": "0.2MBps", + "latency": 0.01, + "extended": true, + "hint_size": 8, + "nodes": { + "on0": { + "use_hint": false, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": true, + "data_size": 1000000, + "wake_ts": [ + 5, + 50 + ], + "wake_duration": [ + 10, + 10 + ] + }, + "on1": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": false, + "data_size": 1000000, + "wake_ts": [ + 0, + 20 + ], + "wake_duration": [ + 10, + 10 + ] + }, + "on2": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": false, + "data_size": 1000000, + "wake_ts": [ + 25 + ], + "wake_duration": [ + 10 + ] + } + } +} \ No newline at end of file diff --git a/simulations/results/scenarios/hint.json b/simulations/results/scenarios/hint.json new file mode 100644 index 0000000..7dbd826 --- /dev/null +++ b/simulations/results/scenarios/hint.json @@ -0,0 +1,58 @@ +{ + "seed": 200, + "bitrate": "0.5MBps", + "latency": 0.01, + "extended": false, + "hint_size": 8, + "nodes": { + "on0": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": true, + "data_size": 1000000, + "wake_ts": [ + 5, + 50 + ], + "wake_duration": [ + 10, + 10 + ] + }, + "on1": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": false, + "data_size": 1000000, + "wake_ts": [ + 0, + 20 + ], + "wake_duration": [ + 10, + 10 + ] + }, + "on2": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": false, + "data_size": 1000000, + "wake_ts": [ + 25 + ], + "wake_duration": [ + 10 + ] + } + } +} \ No newline at end of file diff --git a/simulations/results/scenarios/hint_extended.json b/simulations/results/scenarios/hint_extended.json new file mode 100644 index 0000000..931b617 --- /dev/null +++ b/simulations/results/scenarios/hint_extended.json @@ -0,0 +1,58 @@ +{ + "seed": 200, + "bitrate": "0.2MBps", + "latency": 0.01, + "extended": true, + "hint_size": 8, + "nodes": { + "on0": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": true, + "data_size": 1000000, + "wake_ts": [ + 5, + 50 + ], + "wake_duration": [ + 10, + 10 + ] + }, + "on1": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": false, + "data_size": 1000000, + "wake_ts": [ + 0, + 20 + ], + "wake_duration": [ + 10, + 10 + ] + }, + "on2": { + "use_hint": true, + "power_off": 0.0, + "power_on": 0.4, + "power_rx": 0.65, + "power_tx": 0.65, + "is_sender": false, + "data_size": 1000000, + "wake_ts": [ + 25 + ], + "wake_duration": [ + 10 + ] + } + } +} \ No newline at end of file diff --git a/simulations/results/scenarios/scenario.sh b/simulations/results/scenarios/scenario.sh new file mode 100755 index 0000000..2b009d3 --- /dev/null +++ b/simulations/results/scenarios/scenario.sh @@ -0,0 +1,52 @@ +#!/usr/bin/env bash + +set -e + +wai=$(dirname $(readlink -f "$0")) +inputs="${wai}/../../inputs.json" +simulator="make -C ${wai}/../../ run" + +run-simulation () { + # Run simulations + $simulator 2>&1 +} + + +echo "Which scenario to run:" +echo "(a) Baseline" +echo "(b) Extended" +echo "(c) Hint" +echo "(d) Hint+Extended" + +read -p "> " -n 1 -r +echo + +case $REPLY in + a) + echo "Run baseline scenarios (a)" + cp ${wai}/baseline.json $inputs + run-simulation + ;; + b) + echo "Run extended scenarios (b)" + cp ${wai}/extended.json $inputs + run-simulation + ;; + c) + echo "Run hint scenarios (c)" + cp ${wai}/hint.json $inputs + run-simulation + ;; + d) + echo "Run hint+extended scenarios (d)" + cp ${wai}/hint_extended.json $inputs + run-simulation + ;; + *) + echo "Unknown choice" + exit 1 + ;; +esac + + + diff --git a/simulations/results/scheduler/a.png b/simulations/results/scheduler/a.png new file mode 100644 index 0000000..c357bce Binary files /dev/null and b/simulations/results/scheduler/a.png differ diff --git a/simulations/results/scheduler/analysis.sh b/simulations/results/scheduler/analysis.sh new file mode 100755 index 0000000..43f804d --- /dev/null +++ b/simulations/results/scheduler/analysis.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +wai=$(dirname $(readlink -f "$0")) # Current script directory + +log=$1 +out=$2 + +# Generate csv +cat $log | $wai/wakeup.awk > $wai/wakeup.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 + +cd $wai +Rscript ./wakeup.R &> /dev/null || { echo "Schduler data analysis failed"; exit 1; } +cd - > /dev/null + +mv $wai/schedule.png $out \ No newline at end of file diff --git a/simulations/results/scheduler/data.awk b/simulations/results/scheduler/data.awk new file mode 100755 index 0000000..6049301 --- /dev/null +++ b/simulations/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/simulations/results/scheduler/data.csv b/simulations/results/scheduler/data.csv new file mode 100644 index 0000000..631d9d7 --- /dev/null +++ b/simulations/results/scheduler/data.csv @@ -0,0 +1,13 @@ +node,ts +on8,4398.000320 +on10,8258.000320 +on6,8299.600960 +on4,11766.000320 +on5,16301.000640 +on1,18165.000320 +on2,18205.000960 +on12,18289.600640 +on11,18340.600640 +on7,22575.000320 +on9,25587.000320 +on3,29232.000320 diff --git a/simulations/results/scheduler/hint.awk b/simulations/results/scheduler/hint.awk new file mode 100755 index 0000000..2f996fc --- /dev/null +++ b/simulations/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/simulations/results/scheduler/hint.csv b/simulations/results/scheduler/hint.csv new file mode 100644 index 0000000..3f6d029 --- /dev/null +++ b/simulations/results/scheduler/hint.csv @@ -0,0 +1,18 @@ +node,wakets,duration,rcvat +on4,8218.000000,180.000000,4398.000320 +on4,8218.000000,180.000000,4398.000640 +on6,11726.000000,180.000000,8258.000320 +on4,11726.000000,180.000000,8258.000640 +on2,16260.000000,180.000000,11906.000640 +on7,16260.000000,180.000000,12051.000640 +on5,16260.000000,180.000000,12200.800640 +on1,16260.000000,180.000000,16208.200000 +on2,18125.000000,180.000000,16261.000320 +on1,18125.000000,180.000000,16301.000960 +on7,18125.000000,180.000000,16301.000960 +on2,22535.000000,180.000000,18165.000320 +on7,22535.000000,180.000000,18165.000640 +on12,22535.000000,180.000000,18249.000320 +on11,22535.000000,180.000000,18300.000320 +on9,25547.000000,180.000000,24298.000000 +on3,34755.000000,180.000000,29192.000000 diff --git a/simulations/results/scheduler/hint_fw.awk b/simulations/results/scheduler/hint_fw.awk new file mode 100755 index 0000000..594df94 --- /dev/null +++ b/simulations/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/simulations/results/scheduler/hint_fw.csv b/simulations/results/scheduler/hint_fw.csv new file mode 100644 index 0000000..833b19b --- /dev/null +++ b/simulations/results/scheduler/hint_fw.csv @@ -0,0 +1,12 @@ +node,ts +on8,4398.000320 +on10,8258.000320 +on6,11906.000640 +on2,12051.000640 +on7,12200.800640 +on2,16208.200000 +on1,16261.000320 +on2,16301.000960 +on1,18165.000320 +on2,24298.000000 +on12,29192.000000 diff --git a/simulations/results/scheduler/j b/simulations/results/scheduler/j new file mode 100644 index 0000000..97de903 --- /dev/null +++ b/simulations/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/simulations/results/scheduler/j2 b/simulations/results/scheduler/j2 new file mode 100644 index 0000000..db9fffb --- /dev/null +++ b/simulations/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/simulations/results/scheduler/log.txt b/simulations/results/scheduler/log.txt new file mode 100644 index 0000000..42b3bce --- /dev/null +++ b/simulations/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/simulations/results/scheduler/wakeup.R b/simulations/results/scheduler/wakeup.R new file mode 100644 index 0000000..d11d0c2 --- /dev/null +++ b/simulations/results/scheduler/wakeup.R @@ -0,0 +1,65 @@ +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) +if(NROW(hint)!=0){ + p1=p1+geom_vline(data=hint,aes(xintercept=wakets,color="Hint slots"),show.legend = FALSE,linetype="longdash",size=0.3) +} +p1=p1+geom_linerange(aes(xmin=wakets,xmax=sleepts),size=10) +if(NROW(hint)!=0){ + p1=p1+geom_linerange(data=hint,aes(xmin=wakets,xmax=wakets+duration,color="Hint slots"),size=10) +} +if(NROW(data_rcv)!=0){ + p1=p1+geom_point(data=data_rcv,aes(x=ts,color="Data received"),shape=18,size=4) +} +if(NROW(hint)!=0){ + p1=p1+geom_point(data=hint,aes(x=rcvat,color="Hint received"),shape=18,size=3) +} +if(NROW(hint_fw)!=0){ + p1=p1+geom_point(data=hint_fw,aes(x=ts,color="Hint Forwarded"),shape=18,size=2) +} +p1=p1+ + xlab("Time (hours)")+ylab("Node")+ + scale_x_continuous(breaks = ts_range, labels=ts_labels,expand = c(0, 0))+ + 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(nwakeup=n-24) + +p2=ggplot(stats,aes(x=node,y=nwakeup))+ + geom_bar(stat="identity")+xlab("Node")+ylab("Extra wake up count")+ylim(0,10)+ + scale_y_continuous(breaks = seq(0,10)) + +stats2=tibble( + metric=c("Hint Received","Hint Forwarded","Data Received"), + count=c(NROW(hint),NROW(hint_fw),NROW(data_rcv)) +) + +p3=ggplot(stats2,aes(x=metric,y=count))+ + geom_bar(stat="identity")+xlab("Metric")+ylab("Count")+ylim(0,20) + + +p=grid.arrange(p1,p2,p3,heights=c(10,5,5)) +ggsave(plot=p,"schedule.png",dpi=300,width = 10,height=10) diff --git a/simulations/results/scheduler/wakeup.awk b/simulations/results/scheduler/wakeup.awk new file mode 100755 index 0000000..1bc8934 --- /dev/null +++ b/simulations/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/simulations/results/scheduler/wakeup.csv b/simulations/results/scheduler/wakeup.csv new file mode 100644 index 0000000..18a4d21 --- /dev/null +++ b/simulations/results/scheduler/wakeup.csv @@ -0,0 +1,326 @@ +node,wakets,sleepts,duration +on2,2988.000000,3168.000000,180 +on2,5124.000000,5304.000000,180 +on2,7307.000000,7487.000000,180 +on2,11906.000000,12086.000000,180 +on2,16052.000000,16232.000000,180 +on2,16260.000000,16440.000000,180 +on2,18125.000000,18305.000000,180 +on2,18629.000000,18809.000000,180 +on2,22535.000000,22715.000000,180 +on2,24126.000000,24306.000000,180 +on2,27021.000000,27201.000000,180 +on2,30940.000000,31120.000000,180 +on2,33021.000000,33201.000000,180 +on2,38381.000000,38561.000000,180 +on2,41334.000000,41514.000000,180 +on2,46009.000000,46189.000000,180 +on2,49004.000000,49184.000000,180 +on2,50976.000000,51156.000000,180 +on2,56335.000000,56515.000000,180 +on2,59641.000000,59821.000000,180 +on2,63959.000000,64139.000000,180 +on2,67516.000000,67696.000000,180 +on2,69194.000000,69374.000000,180 +on2,74457.000000,74637.000000,180 +on2,75623.000000,75803.000000,180 +on2,80256.000000,80436.000000,180 +on2,85098.000000,85278.000000,180 +on10,1202.000000,1382.000000,180 +on10,3963.000000,4143.000000,180 +on10,8211.000000,8391.000000,180 +on10,12692.000000,12872.000000,180 +on10,16304.000000,16484.000000,180 +on10,20652.000000,20832.000000,180 +on10,22800.000000,22980.000000,180 +on10,28551.000000,28731.000000,180 +on10,29999.000000,30179.000000,180 +on10,35257.000000,35437.000000,180 +on10,39292.000000,39472.000000,180 +on10,41152.000000,41332.000000,180 +on10,43224.000000,43404.000000,180 +on10,47156.000000,47336.000000,180 +on10,51981.000000,52161.000000,180 +on10,55236.000000,55416.000000,180 +on10,60536.000000,60716.000000,180 +on10,62364.000000,62544.000000,180 +on10,66865.000000,67045.000000,180 +on10,68970.000000,69150.000000,180 +on10,74632.000000,74812.000000,180 +on10,75899.000000,76079.000000,180 +on10,79855.000000,80035.000000,180 +on10,85242.000000,85422.000000,180 +on3,2462.000000,2642.000000,180 +on3,3879.000000,4059.000000,180 +on3,8872.000000,9052.000000,180 +on3,12460.000000,12640.000000,180 +on3,14753.000000,14933.000000,180 +on3,19080.000000,19260.000000,180 +on3,23366.000000,23546.000000,180 +on3,28542.000000,28722.000000,180 +on3,29192.000000,29372.000000,180 +on3,34755.000000,34935.000000,180 +on3,35481.000000,35661.000000,180 +on3,37027.000000,37207.000000,180 +on3,41644.000000,41824.000000,180 +on3,43489.000000,43669.000000,180 +on3,48140.000000,48320.000000,180 +on3,52052.000000,52232.000000,180 +on3,56430.000000,56610.000000,180 +on3,59561.000000,59741.000000,180 +on3,61812.000000,61992.000000,180 +on3,65543.000000,65723.000000,180 +on3,69750.000000,69930.000000,180 +on3,72603.000000,72783.000000,180 +on3,78127.000000,78307.000000,180 +on3,80672.000000,80852.000000,180 +on3,85444.000000,85624.000000,180 +on11,610.000000,790.000000,180 +on11,3701.000000,3881.000000,180 +on11,7941.000000,8121.000000,180 +on11,11372.000000,11552.000000,180 +on11,14657.000000,14837.000000,180 +on11,18300.000000,18480.000000,180 +on11,22535.000000,22715.000000,180 +on11,23929.000000,24109.000000,180 +on11,27867.000000,28047.000000,180 +on11,29463.000000,29643.000000,180 +on11,35740.000000,35920.000000,180 +on11,37138.000000,37318.000000,180 +on11,39954.000000,40134.000000,180 +on11,45772.000000,45952.000000,180 +on11,46925.000000,47105.000000,180 +on11,50685.000000,50865.000000,180 +on11,55558.000000,55738.000000,180 +on11,60582.000000,60762.000000,180 +on11,62564.000000,62744.000000,180 +on11,67911.000000,68091.000000,180 +on11,69193.000000,69373.000000,180 +on11,73720.000000,73900.000000,180 +on11,78079.000000,78259.000000,180 +on11,81229.000000,81409.000000,180 +on11,84036.000000,84216.000000,180 +on4,3074.000000,3254.000000,180 +on4,4368.000000,4548.000000,180 +on4,8218.000000,8398.000000,180 +on4,8426.000000,8606.000000,180 +on4,11726.000000,11906.000000,180 +on4,12910.000000,13090.000000,180 +on4,16399.000000,16579.000000,180 +on4,18069.000000,18249.000000,180 +on4,22587.000000,22767.000000,180 +on4,26241.000000,26421.000000,180 +on4,30356.000000,30536.000000,180 +on4,32847.000000,33027.000000,180 +on4,36488.000000,36668.000000,180 +on4,41510.000000,41690.000000,180 +on4,45935.000000,46115.000000,180 +on4,46841.000000,47021.000000,180 +on4,52231.000000,52411.000000,180 +on4,54914.000000,55094.000000,180 +on4,60723.000000,60903.000000,180 +on4,61845.000000,62025.000000,180 +on4,65545.000000,65725.000000,180 +on4,69599.000000,69779.000000,180 +on4,73986.000000,74166.000000,180 +on4,77997.000000,78177.000000,180 +on4,80616.000000,80796.000000,180 +on4,83326.000000,83506.000000,180 +on12,222.000000,402.000000,180 +on12,5482.000000,5662.000000,180 +on12,10214.000000,10394.000000,180 +on12,11441.000000,11621.000000,180 +on12,17789.000000,17969.000000,180 +on12,18249.000000,18429.000000,180 +on12,22535.000000,22715.000000,180 +on12,24684.000000,24864.000000,180 +on12,25778.000000,25958.000000,180 +on12,29150.000000,29330.000000,180 +on12,34012.000000,34192.000000,180 +on12,38358.000000,38538.000000,180 +on12,41415.000000,41595.000000,180 +on12,45112.000000,45292.000000,180 +on12,48066.000000,48246.000000,180 +on12,51461.000000,51641.000000,180 +on12,56575.000000,56755.000000,180 +on12,59994.000000,60174.000000,180 +on12,64607.000000,64787.000000,180 +on12,65517.000000,65697.000000,180 +on12,71153.000000,71333.000000,180 +on12,72112.000000,72292.000000,180 +on12,76602.000000,76782.000000,180 +on12,80090.000000,80270.000000,180 +on12,83681.000000,83861.000000,180 +on5,796.000000,976.000000,180 +on5,6968.000000,7148.000000,180 +on5,10284.000000,10464.000000,180 +on5,12200.000000,12380.000000,180 +on5,16260.000000,16440.000000,180 +on5,16874.000000,17054.000000,180 +on5,19136.000000,19316.000000,180 +on5,23431.000000,23611.000000,180 +on5,28535.000000,28715.000000,180 +on5,31912.000000,32092.000000,180 +on5,33244.000000,33424.000000,180 +on5,39233.000000,39413.000000,180 +on5,42498.000000,42678.000000,180 +on5,44113.000000,44293.000000,180 +on5,48807.000000,48987.000000,180 +on5,52126.000000,52306.000000,180 +on5,56470.000000,56650.000000,180 +on5,57841.000000,58021.000000,180 +on5,63414.000000,63594.000000,180 +on5,66967.000000,67147.000000,180 +on5,71377.000000,71557.000000,180 +on5,72043.000000,72223.000000,180 +on5,76177.000000,76357.000000,180 +on5,80878.000000,81058.000000,180 +on5,85966.000000,86146.000000,180 +on6,2430.000000,2610.000000,180 +on6,6024.000000,6204.000000,180 +on6,8144.000000,8324.000000,180 +on6,11726.000000,11975.000000,249 +on6,15800.000000,15980.000000,180 +on6,20361.000000,20541.000000,180 +on6,24330.000000,24510.000000,180 +on6,27397.000000,27577.000000,180 +on6,28895.000000,29075.000000,180 +on6,32580.000000,32760.000000,180 +on6,37384.000000,37564.000000,180 +on6,39956.000000,40136.000000,180 +on6,45724.000000,45904.000000,180 +on6,47802.000000,47982.000000,180 +on6,50671.000000,50851.000000,180 +on6,56215.000000,56395.000000,180 +on6,59447.000000,59627.000000,180 +on6,61283.000000,61463.000000,180 +on6,67701.000000,67881.000000,180 +on6,68947.000000,69127.000000,180 +on6,74090.000000,74270.000000,180 +on6,76806.000000,76986.000000,180 +on6,82217.000000,82397.000000,180 +on6,82919.000000,83099.000000,180 +on7,0.000000,180.000000,180 +on7,6571.000000,6751.000000,180 +on7,10296.000000,10476.000000,180 +on7,12051.000000,12231.000000,180 +on7,15735.000000,15915.000000,180 +on7,16260.000000,16440.000000,180 +on7,18125.000000,18305.000000,180 +on7,19353.000000,19533.000000,180 +on7,22535.000000,22776.000000,241 +on7,25545.000000,25725.000000,180 +on7,30364.000000,30544.000000,180 +on7,35548.000000,35728.000000,180 +on7,37340.000000,37520.000000,180 +on7,42565.000000,42745.000000,180 +on7,46496.000000,46676.000000,180 +on7,48657.000000,48837.000000,180 +on7,53349.000000,53529.000000,180 +on7,57391.000000,57571.000000,180 +on7,59638.000000,59818.000000,180 +on7,63320.000000,63500.000000,180 +on7,65127.000000,65307.000000,180 +on7,69541.000000,69721.000000,180 +on7,75122.000000,75302.000000,180 +on7,76198.000000,76378.000000,180 +on7,80344.000000,80524.000000,180 +on7,84348.000000,84528.000000,180 +on8,1889.000000,2069.000000,180 +on8,4224.000000,4404.000000,180 +on8,10504.000000,10684.000000,180 +on8,12566.000000,12746.000000,180 +on8,16230.000000,16410.000000,180 +on8,20900.000000,21080.000000,180 +on8,23485.000000,23665.000000,180 +on8,28238.000000,28418.000000,180 +on8,31251.000000,31431.000000,180 +on8,35168.000000,35348.000000,180 +on8,36868.000000,37048.000000,180 +on8,39965.000000,40145.000000,180 +on8,45109.000000,45289.000000,180 +on8,49872.000000,50052.000000,180 +on8,52318.000000,52498.000000,180 +on8,54052.000000,54232.000000,180 +on8,60400.000000,60580.000000,180 +on8,62246.000000,62426.000000,180 +on8,65604.000000,65784.000000,180 +on8,68862.000000,69042.000000,180 +on8,74903.000000,75083.000000,180 +on8,77140.000000,77320.000000,180 +on8,79633.000000,79813.000000,180 +on8,85528.000000,85708.000000,180 +on9,239.000000,419.000000,180 +on9,5568.000000,5748.000000,180 +on9,8857.000000,9037.000000,180 +on9,14162.000000,14342.000000,180 +on9,14753.000000,14933.000000,180 +on9,20801.000000,20981.000000,180 +on9,24297.000000,24477.000000,180 +on9,25547.000000,25727.000000,180 +on9,27442.000000,27622.000000,180 +on9,30012.000000,30192.000000,180 +on9,34980.000000,35160.000000,180 +on9,37795.000000,37975.000000,180 +on9,40429.000000,40609.000000,180 +on9,46468.000000,46648.000000,180 +on9,48268.000000,48448.000000,180 +on9,50847.000000,51027.000000,180 +on9,54085.000000,54265.000000,180 +on9,59623.000000,59803.000000,180 +on9,63723.000000,63903.000000,180 +on9,66458.000000,66638.000000,180 +on9,70119.000000,70299.000000,180 +on9,75383.000000,75563.000000,180 +on9,75756.000000,75936.000000,180 +on9,80972.000000,81152.000000,180 +on9,83349.000000,83529.000000,180 +on0,2668.000000,2848.000000,180 +on0,4358.000000,4538.000000,180 +on0,8218.000000,8398.000000,180 +on0,11726.000000,11906.000000,180 +on0,16260.000000,16440.000000,180 +on0,18125.000000,18340.600640,215.601 +on0,22535.000000,22715.000000,180 +on0,25547.000000,25727.000000,180 +on0,29100.000000,29280.000000,180 +on0,34755.000000,34935.000000,180 +on0,36503.000000,36683.000000,180 +on0,41983.000000,42163.000000,180 +on0,43942.000000,44122.000000,180 +on0,46979.000000,47159.000000,180 +on0,52255.000000,52435.000000,180 +on0,55038.000000,55218.000000,180 +on0,60722.000000,60902.000000,180 +on0,64114.000000,64294.000000,180 +on0,68124.000000,68304.000000,180 +on0,68400.000000,68580.000000,180 +on0,73539.000000,73719.000000,180 +on0,77940.000000,78120.000000,180 +on0,79722.000000,79902.000000,180 +on0,84219.000000,84399.000000,180 +on1,169.000000,349.000000,180 +on1,3903.000000,4083.000000,180 +on1,7508.000000,7688.000000,180 +on1,11360.000000,11540.000000,180 +on1,16207.000000,16387.000000,180 +on1,18125.000000,18305.000000,180 +on1,20188.000000,20368.000000,180 +on1,24844.000000,25024.000000,180 +on1,27462.000000,27642.000000,180 +on1,31747.000000,31927.000000,180 +on1,34449.000000,34629.000000,180 +on1,36975.000000,37155.000000,180 +on1,42194.000000,42374.000000,180 +on1,45374.000000,45554.000000,180 +on1,48711.000000,48891.000000,180 +on1,51128.000000,51308.000000,180 +on1,56474.000000,56654.000000,180 +on1,59653.000000,59833.000000,180 +on1,62431.000000,62611.000000,180 +on1,67444.000000,67624.000000,180 +on1,71195.000000,71375.000000,180 +on1,74618.000000,74798.000000,180 +on1,77887.000000,78067.000000,180 +on1,80821.000000,81001.000000,180 +on1,85119.000000,85299.000000,180 diff --git a/simulations/results/success-180sec.png b/simulations/results/success-180sec.png new file mode 100644 index 0000000..36ae72f Binary files /dev/null and b/simulations/results/success-180sec.png differ diff --git a/simulations/results/success-60sec.png b/simulations/results/success-60sec.png new file mode 100644 index 0000000..0b534d5 Binary files /dev/null and b/simulations/results/success-60sec.png differ diff --git a/simulations/results/success.png b/simulations/results/success.png new file mode 100644 index 0000000..3602950 Binary files /dev/null and b/simulations/results/success.png differ diff --git a/simulations/results/tables-energy.org b/simulations/results/tables-energy.org new file mode 100644 index 0000000..f5c4e37 --- /dev/null +++ b/simulations/results/tables-energy.org @@ -0,0 +1,33 @@ + +|simkey |wireless | wakeupfor| sd| energy| +|:---------------|:--------|---------:|---------:|--------:| +|baseline |lora | 60| 12.24495| 583.9238| +|extended |lora | 60| 115.45964| 642.2366| +|hint |lora | 60| 20.53987| 589.3509| +|hintandextended |lora | 60| 123.07434| 651.6290| + + +|simkey |wireless | wakeupfor| sd| energy| +|:---------------|:--------|---------:|--------:|--------:| +|baseline |nbiot | 60| 40.62495| 602.8455| +|extended |nbiot | 60| 49.75572| 604.3217| +|hint |nbiot | 60| 69.17474| 626.8900| +|hintandextended |nbiot | 60| 61.78016| 624.0911| + + +|simkey |wireless | wakeupfor| sd| energy| +|:---------------|:--------|---------:|---------:|--------:| +|baseline |lora | 180| 77.41662| 1785.603| +|extended |lora | 180| 119.55052| 1800.430| +|hint |lora | 180| 222.97426| 2078.584| +|hintandextended |lora | 180| 147.42256| 1927.343| + + +|simkey |wireless | wakeupfor| sd| energy| +|:---------------|:--------|---------:|---------:|--------:| +|baseline |nbiot | 180| 81.64431| 1785.846| +|extended |nbiot | 180| 73.56576| 1773.858| +|hint |nbiot | 180| 217.20916| 2067.135| +|hintandextended |nbiot | 180| 206.56366| 2039.936| + + diff --git a/simulations/results/tables-stats.org b/simulations/results/tables-stats.org new file mode 100644 index 0000000..876b761 --- /dev/null +++ b/simulations/results/tables-stats.org @@ -0,0 +1,33 @@ + +|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| senderEnergy_sd| receiverEnergy| receiverEnergy_sd| senderJPS| receiverJPS| 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.3707| 15.40303| 581.1365| 6.459283| Inf| Inf| 1440.000| 1440.000| NA| 1440| 1440| 1| 0.000| 0.00000| 617.3707| 581.1365| 1| 0.00| 0.00| 0.0| 0.0| 619.73| 579.84| 1440.00| 1440.00| 0| 0| 0| 0| 0| 24.00000| 24| +|extended |lora | 60| 1.710035| 6.020| 1004.3600| 124.07447| 612.0597| 36.358622| 166.8372| 101.67104| 2125.620| 1498.043| 38318.86| 1440| 1440| 2| 685.620| 58.04250| 617.3707| 581.1365| 2| 38.53| 5.05| 2.0| 7.7| 1207.61| 627.35| 2564.53| 1523.52| 20| 2| 21| 2| 0| 24.00000| 24| +|hint |lora | 60| 0.000000| 0.000| 628.7368| 21.71158| 586.0687| 16.668949| Inf| Inf| 1440.000| 1451.071| NA| 1440| 1440| 3| 0.000| 11.07083| 617.3707| 581.1365| 3| 1.81| 0.84| 0.0| 0.0| 753.42| 957.64| 1440.00| 2354.94| 20| 63| 0| 62| 0| 24.18167| 24| +|hintandextended |lora | 60| 1.864229| 6.545| 1035.7591| 133.41310| 619.6181| 40.088172| 158.2520| 94.67045| 2170.513| 1511.632| 37908.27| 1440| 1440| 4| 730.513| 71.63233| 617.3707| 581.1365| 4| 40.39| 6.21| 2.2| 9.8| 1397.98| 663.58| 2904.50| 1602.39| 35| 7| 34| 6| 0| 24.15708| 24| + + +|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| senderEnergy_sd| receiverEnergy| receiverEnergy_sd| senderJPS| receiverJPS| 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.430808| 2.445| 714.7880| 49.02168| 593.5170| 21.37475| 292.3468| 242.74722| 1440.000| 1440.000| 42375.37| 1440| 1440| 1| 0.00000| 0.000000| 714.788| 593.517| 1| 0.00| 0.00| 1.12| 1.27| 749.69| 591.07| 1440.00| 1440.00| 5| 0| 0| 0| 0| 24.00000| 24| +|extended |nbiot | 60| 1.855482| 6.380| 760.8320| 55.22064| 591.2792| 14.72265| 119.2527| 92.67699| 1487.380| 1443.640| 37096.61| 1440| 1440| 2| 47.38000| 3.639583| 714.788| 593.517| 2| 6.05| -0.38| 1.80| 7.16| 946.39| 599.13| 1788.32| 1447.54| 24| 1| 20| 0| 0| 24.00000| 24| +|hint |nbiot | 60| 2.942835| 4.805| 771.8607| 91.95847| 614.8091| 50.83790| 160.6370| 127.95194| 1440.000| 1467.255| 41862.09| 1440| 1440| 3| 0.00000| 27.255417| 714.788| 593.517| 3| 7.39| 3.46| 3.45| 9.72| 1007.06| 702.59| 1440.00| 1666.51| 30| 14| 0| 14| 0| 24.44875| 24| +|hintandextended |nbiot | 60| 2.203674| 7.590| 790.8555| 63.04322| 610.1941| 35.96660| 104.1970| 80.39448| 1483.782| 1462.936| 35280.76| 1440| 1440| 4| 43.78212| 22.935581| 714.788| 593.517| 4| 9.62| 2.73| 2.36| 9.41| 1066.66| 623.30| 1901.47| 1492.53| 35| 2| 28| 2| 0| 24.31583| 24| + + +|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| senderEnergy_sd| receiverEnergy| receiverEnergy_sd| senderJPS| receiverJPS| 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.2390627| 2.180| 2032.692| 50.76923| 1765.012| 27.66107| 932.4275| 809.6384| 4320.000| 4320.000| 42419.08| 4320| 4320| 1| 0.0000| 0.00000| 2032.692| 1765.012| 1| 0.00| 0.00| 1.40| 1.91| 2026.23| 1755.92| 4320.00| 4320.00| 0| 1| 0| 0| 0| 24.00000| 24| +|extended |lora | 180| 1.0044999| 10.855| 2201.590| 70.02724| 1767.001| 23.29608| 202.8181| 162.7822| 4809.255| 4359.608| 29587.20| 4320| 4320| 2| 489.2550| 39.60792| 2032.692| 1765.012| 2| 7.67| 0.11| 0.70| 11.45| 2692.46| 1772.35| 6038.78| 4364.27| 22| 0| 26| 0| 0| 24.00000| 24| +|hint |lora | 180| 1.3466411| 11.175| 2131.674| 48.36516| 2074.159| 231.11420| 190.7538| 185.6071| 4320.000| 4948.670| 36906.37| 4320| 4320| 3| 0.0000| 628.66958| 2032.692| 1765.012| 3| 4.64| 14.90| 0.00| 12.00| 2094.09| 2169.50| 4320.00| 5344.86| 2| 5| 0| 8| 0| 27.34250| 24| +|hintandextended |lora | 180| 0.3293056| 11.890| 2259.088| 58.36925| 1899.698| 115.42555| 189.9990| 159.7728| 4886.747| 4603.282| 19470.01| 4320| 4320| 4| 566.7469| 283.28220| 2032.692| 1765.012| 4| 10.02| 7.09| 0.24| 11.94| 2757.79| 1867.34| 6155.50| 4600.09| 22| 2| 26| 0| 0| 25.25167| 24| + + +|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| senderEnergy_sd| receiverEnergy| receiverEnergy_sd| senderJPS| receiverJPS| 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.1911630| 10.365| 2034.667| 34.18321| 1765.111| 39.153314| 196.3017| 170.2953| 4320.000| 4320.000| 30233.28| 4320| 4320| 1| 0.00000| 0.000000| 2034.667| 1765.111| 1| 0.00| 0.00| 1.33| 9.90| 2117.65| 1761.78| 4320.00| 4320.00| 4| 0| 0| 0| 0| 24.00000| 24| +|extended |nbiot | 180| 0.8976659| 11.115| 2026.210| 25.82125| 1752.828| 7.507188| 182.2951| 157.6994| 4343.050| 4321.865| 27060.74| 4320| 4320| 2| 23.05000| 1.864583| 2034.667| 1765.111| 2| -0.42| -0.70| 0.87| 11.23| 2311.52| 1760.92| 4868.78| 4323.71| 14| 0| 12| 0| 0| 24.00000| 24| +|hint |nbiot | 180| 0.3628129| 11.845| 2053.789| 19.20640| 2068.247| 225.978814| 173.3887| 174.6093| 4320.000| 4548.535| 18711.42| 4320| 4320| 3| 0.00000| 228.535000| 2034.667| 1765.111| 3| 0.93| 14.66| 0.37| 11.92| 2180.07| 1868.54| 4320.00| 4576.83| 6| 10| 0| 1| 0| 25.22208| 24| +|hintandextended |nbiot | 180| 0.3263549| 11.905| 2042.550| 10.96412| 2039.718| 214.977097| 171.5708| 171.3329| 4332.536| 4529.625| 17101.38| 4320| 4320| 4| 12.53635| 209.624688| 2034.667| 1765.111| 4| 0.39| 13.46| 0.41| 11.88| 2151.14| 1822.44| 4906.10| 4473.32| 5| 11| 13| 1| 0| 25.11625| 24| + + diff --git a/simulations/scenarios b/simulations/scenarios new file mode 100755 index 0000000..3fc0a57 Binary files /dev/null and b/simulations/scenarios differ diff --git a/simulations/src/Inputs.cc b/simulations/src/Inputs.cc new file mode 100644 index 0000000..8c3ac9c --- /dev/null +++ b/simulations/src/Inputs.cc @@ -0,0 +1,184 @@ +#include "Inputs.hpp" + +#include +#include +#include + +Inputs::Inputs(std::string node_name){ + // Here we do all the boring stuff + FILE* input_file = fopen(INPUTS_FILE, "rb"); + char input_file_buffer[JSON_BUFFER_SIZE]; + rapidjson::FileReadStream is(input_file, input_file_buffer, sizeof(input_file_buffer)); + d.ParseStream(is); + fclose(input_file); + + // Init all variables + is_sender=d["nodes"][node_name.c_str()]["is_sender"].GetBool(); + use_hint=d["nodes"][node_name.c_str()]["use_hint"].GetBool(); + data_size=d["nodes"][node_name.c_str()]["data_size"].GetInt(); + extended=d["extended"].GetBool(); + seed=d["seed"].GetInt(); + hint_size=d["hint_size"].GetInt(); + n_nodes=d["nodes"].MemberCount(); + latency=d["latency"].GetDouble(); + + // Instantiate wake_ts + for(auto& v:d["nodes"][node_name.c_str()]["wake_ts"].GetArray()){ + wake_ts.push_back(v.GetDouble()); + } + + // Instantiate wake_duration + for(auto& v:d["nodes"][node_name.c_str()]["wake_duration"].GetArray()){ + wake_duration.push_back(v.GetDouble()); + } + + // Identity check + if(wake_ts.size()<1){ + std::cerr << "Invalid node configuration: wake_ts.size() == 0" <=next_ts){ + // Create variable for convenience + double start=cur_ts; + double end=std::max(cur_ts+cur_duration,next_ts+next_duration); + wake_duration[i]=end-start; + // Now remove next event + wake_ts.erase(wake_ts.begin() + i + 1); + wake_duration.erase(wake_duration.begin() + i +1); + // This is not optimal. Yet it is simple :D + MergeEvents(); + } + } +} + +double Inputs::GetNextTS(){ + // Ensure that the caller is smart + if(wake_duration.size()<2){ + std::cerr << "You are trying to access to the next timestamp but it does not exists" <=ts){ + wake_ts.insert(it,ts); + break; + } + pos++; + } + + // Ensure that ts and duration should not go to the end + if(pos==wake_ts.size()){ + wake_ts.push_back(ts); + wake_duration.push_back(duration); + } + else { + // Handle durations here + int pos2=0; + for(auto it = std::begin(wake_duration); it != std::end(wake_duration); ++it) { + if(pos==pos2){ + wake_duration.insert(it,duration); + break; + } + else if (it+1==std::end(wake_duration)) { + wake_duration.push_back(duration); + } + pos2++; + } + } + // Don't forget + MergeEvents(); +} + +void Inputs::GeneratePlatform(std::string p){ + + // The boring stuff + FILE* input_file = fopen(INPUTS_FILE, "rb"); + char input_file_buffer[JSON_BUFFER_SIZE]; + rapidjson::FileReadStream is(input_file, input_file_buffer, sizeof(input_file_buffer)); + rapidjson::Document d; + d.ParseStream(is); + fclose(input_file); + + // Write platform file + std::ofstream pf; + pf.open (p); + pf << "\n"; + pf << "\n"; + pf << "\n \n"; + pf << " \n"; + for (Value::ConstMemberIterator itr = d["nodes"].MemberBegin(); itr != d["nodes"].MemberEnd(); ++itr) + { + std::string name=itr->name.GetString(); + double power_off=d["nodes"][itr->name.GetString()]["power_off"].GetDouble(); + double power_on=d["nodes"][itr->name.GetString()]["power_on"].GetDouble(); + double power_rx=power_on+d["nodes"][itr->name.GetString()]["power_rx"].GetDouble(); + double power_tx=power_on+d["nodes"][itr->name.GetString()]["power_tx"].GetDouble(); + + // Create node + pf << " \n"; + pf << " \n"; + pf << " \n \n"; + } + for (Value::ConstMemberIterator src = d["nodes"].MemberBegin(); src != d["nodes"].MemberEnd(); ++src) + { + for (Value::ConstMemberIterator dst = d["nodes"].MemberBegin(); dst != d["nodes"].MemberEnd(); ++dst) + { + if(src->name.GetString() != dst->name.GetString()) + pf << " name.GetString()<<"\" dst=\""<name.GetString()<<"\" symmetrical=\"no\">\n"; + } + } + pf << " \n\n"; + pf.close(); +} \ No newline at end of file diff --git a/simulations/src/Inputs.hpp b/simulations/src/Inputs.hpp new file mode 100644 index 0000000..487686f --- /dev/null +++ b/simulations/src/Inputs.hpp @@ -0,0 +1,84 @@ +#include +#include + +#include +#include +#include +#include + +#define INPUTS_FILE "inputs.json" +/// @brief Pay attention to this strange number, you could tear your hairs out +#define JSON_BUFFER_SIZE 65536 + +using namespace rapidjson; + +class Inputs { + /// @brief RapidJSON + Document d; + /// @brief Current node associated with the Inputs + std::string node_name; + /// @brief Timestamps (at which time the nodes should wake up) + std::vector wake_ts; + /// @brief Wake up time durations + std::vector wake_duration; + /** + * Recursively merge overlapping events + */ + void MergeEvents(); +public: + /** + * Load node_name configuration + */ + Inputs(std::string node_name); + /** + * Generate a SimGrid platform file from the json configuration + */ + static void GeneratePlatform(std::string p); + /** + * Is there any event that remains in the queue ? + */ + bool ShouldContinue(){return wake_ts.size()!=0;} + /** + * Is there another event to process ? + */ + bool HasNext(){return wake_ts.size()>1 ;} + /** + * Get current event timestamp + */ + double GetTS(){return wake_ts.front();} + /** + * Get current event duration + */ + double GetDuration(){return wake_duration.front();} + /** + * Get next event timestamp + */ + double GetNextTS(); + /** + * Get next event duration + */ + double GetNextDuration(); + /** + * Time travel machine (note that this function is following the second principle + * of thermodynamics) + */ + void GotoNextEvent(); + /** + * Allows to add a *FUTURE* event and merge overlapping events + */ + void AddEvent(double ts, double duration); + /** + * This is the timeline + */ + void DumpEvents(); + + /// @brief These are public attributes, please take care they are fragile + bool is_sender; + bool use_hint; + bool extended; + int data_size; + int hint_size; + int seed; + int n_nodes; + double latency; +}; \ No newline at end of file diff --git a/simulations/src/scenarios.cc b/simulations/src/scenarios.cc new file mode 100644 index 0000000..90a7849 --- /dev/null +++ b/simulations/src/scenarios.cc @@ -0,0 +1,100 @@ +#include +#include +#include +#include +#include + +#include +#include +#include +#include + + +#define RAND(min,max) (rand()%((max)-(min)+1)+(min)) + +using namespace std; +using namespace rapidjson; + +int main(int argc, char **argv){ + // Setup seed + if(argc!=16){ + cerr << "Usage: " << argv[0] << + " " << + " " << + endl; + exit(1); + } + + // Init parameters + int seed=atoi(argv[1]); + double simtime=stod(argv[2]); + unsigned int wakeupevery=atoi(argv[3]); + unsigned int wakeupfor=stoi(argv[4]); + unsigned int n_nodes=atoi(argv[5]); + bool extended=!strcmp("true",argv[6]); + bool hint=!strcmp("true",argv[7]); + double poff=stod(argv[8]); + double pon=stod(argv[9]); + double prx=stod(argv[10]); + double ptx=stod(argv[11]); + unsigned int datasize=atoi(argv[12]); + string bitrate(argv[13]); + unsigned int hintsize=atoi(argv[14]); + double latency=stod(argv[15]); + + + // Setup seed + srand(seed); + + // Create document + Document d; + d.SetObject(); + d.AddMember("seed",Value().SetInt(seed),d.GetAllocator()); + Value bitrateValue; + bitrateValue.SetString(bitrate.c_str(),bitrate.size(),d.GetAllocator()); + d.AddMember("bitrate",bitrateValue,d.GetAllocator()); + d.AddMember("latency",latency,d.GetAllocator()); + d.AddMember("extended",extended,d.GetAllocator()); + d.AddMember("hint_size",hintsize,d.GetAllocator()); + + // Create nodes + Value nodes(kObjectType); + for(int i=0;i writer(buffer); + d.Accept(writer); + cout << buffer.GetString(); + + return 0; +} \ No newline at end of file diff --git a/simulations/src/simulator.cc b/simulations/src/simulator.cc new file mode 100644 index 0000000..0215b32 --- /dev/null +++ b/simulations/src/simulator.cc @@ -0,0 +1,354 @@ +#include +#include +#include +#include +#include + +#include +#include + +#include "Inputs.hpp" +#include "simgrid/s4u/Actor.hpp" + + +#define PLATFORM_FILE "platform.xml" +#define MODE_OFF() simgrid::s4u::this_actor::get_host()->set_pstate(0); +#define MODE_ON() simgrid::s4u::this_actor::get_host()->set_pstate(1); +#define MODE_RX() simgrid::s4u::this_actor::get_host()->set_pstate(2); +#define MODE_TX() simgrid::s4u::this_actor::get_host()->set_pstate(3); +#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) \ + { \ + instruction; \ + uptime=upuntil-CLOCK; \ + uptime=uptime > 0 ? uptime : 0; \ + } +/// @brief Note that we need to simulate latency our self since we need to send instantaneous messages +#define SEND(instruction) \ + { \ + TRACK_UPTIME(simgrid::s4u::this_actor::sleep_for(i.latency > uptime ? uptime : i.latency)); \ + instruction; \ + } + +#define FORWARD_HINT(TRY_FORWARD_DURING) \ + { \ + if(hint_forward!=NULL && CLOCKhint){ \ + hint_forward->HisForward=true; \ + hint_forward->DedicatedMailbox="hint_forward"; \ + try { \ + XBT_INFO("%s try to forward a hint",CNAME); \ + TRACK_UPTIME(m->put(hint_forward,0,TRY_FORWARD_DURING)); \ + 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); \ + MODE_ON(); \ + uptime=upuntil-CLOCK; \ + TRACK_UPTIME(simgrid::s4u::this_actor::sleep_for(FOR(TRY_FORWARD_DURING))); \ + } \ + } \ + } + + +/// @brief Required by SimGrid +XBT_LOG_NEW_DEFAULT_CATEGORY(simulator, "[DAO] Loosely Coupled DSS"); + +/// @brief For convenience sake +typedef unsigned int u32; + +/** + * Data that will be exchange between the nodes + */ +class Payload{ +public: + Payload():hint(0),duration(0),HasHint(false),HisForward(false),HasData(false),DataSize(0),Abort(false){} + Payload(Payload &p):hint(p.hint),duration(p.duration),HasHint(p.HasHint),DedicatedMailbox(p.DedicatedMailbox),HisForward(p.HisForward),HasData(p.HasData),DataSize(p.DataSize),Abort(p.Abort){} + double hint; // The timestamp that should be used by the receiver + double duration; // The duration that should be used by the receiver + bool HasHint; + bool HasData; // This way observer could check if they want to receive data (maybe they already received data) + bool HisForward; + bool Abort; // Allow the receiver to abort a communication (if they already received the data for example) and unlock the sender + u32 DataSize; + std::string DedicatedMailbox; // Dedicated mailbox used by the sender/receiver +}; + +/// @brief Observation node code +static void obs_node(std::vector args); + +/** + * No arguments are require (cf inputs.json) + */ +int main(int argc, char **argv) { + + // Build engine + sg_host_energy_plugin_init(); + simgrid::s4u::Engine engine(&argc, argv); + Inputs::GeneratePlatform(PLATFORM_FILE); + engine.load_platform(PLATFORM_FILE); + + // Headline + XBT_INFO("-------------------------------------------------"); + XBT_INFO("Sarting loosely coupled data dissemination experiments"); + XBT_INFO("-------------------------------------------------"); + + // Init all nodes actors + u32 nON=simgrid::s4u::Engine::get_instance()->get_host_count(); + for(u32 i=0;i args; // No args + std::ostringstream ss; + ss<< "on" < args) { + // Init various variables + std::string selfName = simgrid::s4u::this_actor::get_host()->get_name(); + simgrid::s4u::this_actor::get_host()->turn_on(); + Inputs i=(selfName); // Load node input parameters from the json file + simgrid::s4u::Mailbox *m = simgrid::s4u::Mailbox::by_name("medium"); + XBT_INFO("Deploying observation node %s",CNAME); + + // Starting node + u32 nWakeUp=0; + u32 nDataRcv=0; + u32 nSendFail=0; + u32 nRcvFail=0; + u32 nSend=0; + u32 hint_added=0; + double totalUptime=0; + 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); + MODE_OFF(); + simgrid::s4u::this_actor::sleep_until(i.GetTS()); + MODE_ON(); + XBT_INFO("%s wakes up",CNAME); + + // Doing wake up stuff + double uptime=i.GetDuration(); // Store the remaining wake up duration (updated during the node uptime) + double upsince=CLOCK; // Store the time at which the node woke up + double upuntil=i.GetTS()+i.GetDuration(); // Store the time at which the node should sleep + bool forward_mode=false; // Turned on and off every x seconds by the receiver (to switch between forward hint mode and receiving data mode) + bool forward_only=false; // When observer receive a hint it switch to forward only up to the next wake up time + bool sendhint_mode=false; // Turned on and off every x seconds by the sender (to switch between send hint and send data) + while(CLOCK < upuntil) + { + // ---------- SENDER ---------- + if(is_sender){ + // Send hint if send hint mode is enable + if(i.use_hint && sendhint_mode && i.HasNext()){ + Payload *p=new Payload(); + p->DedicatedMailbox="hintmailbox"+selfName; // Use a dedicated mailbox + p->HasHint=true; + p->duration=i.GetNextDuration(); + p->hint=i.GetNextTS(); + p->DataSize=i.hint_size; + try { + TRACK_UPTIME(m->put(p,0,FOR(0.3))); // Init connection with a receiver + 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(...){} + } + // Send data if send hint mode is disable + else{ + Payload *p=new Payload(); + p->DedicatedMailbox="datamailbox"+selfName; + p->HasData=true; + p->HasHint=false; + p->DataSize=i.data_size; + // Add hint to the data if possible + if(i.use_hint && i.HasNext()){ + p->HasHint=true; + p->duration=i.GetNextDuration(); + p->hint=i.GetNextTS(); + p->DataSize+=i.hint_size; // Don't forget!! + } + // Send the data + try { + TRACK_UPTIME(m->put(p,0,FOR(1))); + simgrid::s4u::Mailbox *m_ded= simgrid::s4u::Mailbox::by_name(p->DedicatedMailbox); + Payload *ack=m_ded->get(); + if(!ack->Abort){ + MODE_TX(); + XBT_INFO("%s try a send",CNAME); + if(i.extended){ + SEND(m_ded->put(p,p->DataSize)); + } + else{ + SEND(m_ded->put(p,p->DataSize,uptime)); + } + XBT_INFO("%s sent data successfully",CNAME); + nSend++; + is_sender=(nSend<(i.n_nodes-1)); // Stop sending if all nodes received + isObserver=!is_sender; // Switch to observer mode if all nodes received the data + } + else { + simgrid::s4u::this_actor::sleep_for(FOR(1)); + } + } + catch(...){} + } + sendhint_mode=!sendhint_mode; // Switch back and forth between sending hint and data + MODE_ON(); + } + // ---------- RECEIVER ---------- + else if(!isObserver){ + // Forward hint mode + if(forward_mode){ + if(i.use_hint && hint_forward!=NULL && CLOCK < hint_forward->hint){ + try { + FORWARD_HINT(FOR(0.3)); // Try forward for 0.3 seconds then switch to received mode + } + catch(...){} + } + } + else { // Receiving mode + Payload *p; // Received data + try { + // Get the instantaneous message + do { + TRACK_UPTIME(p=m->get(FOR(1))); + if(p->HisForward){ + if(hint_forward==NULL || (hint_forward !=NULL && p->hint>hint_forward->hint)){ + simgrid::s4u::Mailbox *m_ded=simgrid::s4u::Mailbox::by_name(p->DedicatedMailbox); + MODE_RX(); + TRACK_UPTIME(p=m_ded->get(uptime)); + MODE_ON(); + XBT_INFO("%s received a forwarded hint successfully",CNAME); + if(CLOCK < p->hint){ + ADD_EVENT(p); + hint_forward=new Payload(*p); + hint_added++; + } + } + } + } while(p->HisForward); + simgrid::s4u::Mailbox *m_ded= simgrid::s4u::Mailbox::by_name(p->DedicatedMailbox); + // Start receiving data + MODE_RX(); + if(p->HasHint && !p->HasData){ + TRACK_UPTIME(p=m_ded->get(uptime)); + XBT_INFO("%s received a hint successfully",CNAME); + hint_forward=new Payload(*p); // Enable hint forwarding + if(CLOCK < p->hint){ + ADD_EVENT(p); + hint_forward=new Payload(*p); + hint_added++; + } + } + else { + // Inform the sender that we do not want to abort + Payload *ack=new Payload(); + ack->Abort=false; + m_ded->put(ack,0); // Instantaneous msg + + if(i.extended){ + p=m_ded->get(); // Fetch data until sended + } + else{ + TRACK_UPTIME(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 + } + nDataRcv++; + isObserver=true; + is_sender=false; + } + + }catch(...){ + XBT_INFO("%s could not receive any data",CNAME); + nRcvFail++; + } + } + forward_mode=!forward_mode; // Toggle mode (go back and forth between receiving and forwarding) + } + // ---------- OBSERVER ---------- + else { + XBT_INFO("%s is observing his environment...",CNAME); + MODE_ON(); + // If use hint we should listen for the sender + if(i.use_hint){ + if((forward_mode|forward_only) && hint_forward!=NULL && CLOCK < hint_forward->hint){ + FORWARD_HINT(FOR(1)); + } + else { + Payload *p; + try { + do { + TRACK_UPTIME(p=m->get(FOR(1))); + } while(p->HisForward); // Ignore forwarded hint + simgrid::s4u::Mailbox *m_ded= simgrid::s4u::Mailbox::by_name(p->DedicatedMailbox); + // Start receiving hint from sender + if(p->HasData){ + Payload *ack=new Payload(); + ack->Abort=true; + m_ded->put(ack,0); + simgrid::s4u::this_actor::sleep_for(FOR(1)); + } + else if(p->HasHint){ + MODE_RX(); + TRACK_UPTIME(p=m_ded->get(uptime)); + XBT_INFO("%s received a hint successfully",CNAME); + hint_forward=new Payload(*p); // Enable hint forwarding + forward_only=true; + } + else { + simgrid::s4u::this_actor::sleep_for(FOR(1)); + } + } + catch(...){ + } + + } + forward_mode=!forward_mode; + } + else { + simgrid::s4u::this_actor::sleep_until(upuntil); + } + } + uptime=upuntil-CLOCK; // Note that uptime can be < 0 in extended mode + uptime=uptime > 0 ? uptime : 0; // Just in case + } + // Load next event + i.GotoNextEvent(); + nWakeUp++; // Increase the number of wake up + totalUptime+=CLOCK-upsince; // Synchronize total uptime + } + // 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|timeDataRcv:%f)",CNAME,CNAME,i.is_sender,nSend,nWakeUp,nDataRcv,nSendFail,nRcvFail,totalUptime,i.seed,hint_added,timeDataRcv); +} \ No newline at end of file -- cgit v1.2.3